:root{
  
  --color-white: rgba(255, 255, 255, 1);
  --color-black: rgba(0, 0, 0, 1);
  --color-cream-100: rgba(241, 250, 255, 1);
  --color-cream-50: rgba(232, 246, 251, 1);
  --color-gray-200: rgba(245, 245, 245, 1);
  --color-gray-300: rgba(167, 169, 169, 1);
  --color-gray-400: rgba(119, 124, 124, 1);
  --color-slate-500: rgba(98, 108, 113, 1);
  --color-brown-600: rgba(94, 82, 64, 1);
  --color-charcoal-700: rgba(31, 33, 33, 1);
  --color-charcoal-800: rgba(38, 40, 40, 1);
  --color-slate-900: rgba(19, 52, 59, 1);
  --color-teal-300: rgba(50, 184, 198, 1);
  --color-teal-400: rgba(45, 166, 178, 1);
  --color-teal-500: rgba(33, 128, 141, 1);
  --color-teal-600: rgba(29, 116, 128, 1);
  --color-teal-700: rgba(26, 104, 115, 1);
  --color-teal-800: rgba(41, 150, 161, 1);
  --color-red-400: rgba(255, 84, 89, 1);
  --color-red-500: rgba(192, 21, 47, 1);
  --color-orange-400: rgba(230, 129, 97, 1);
  --color-orange-500: rgba(168, 75, 47, 1);

  
  --color-brown-600-rgb: 94, 82, 64;
  --color-teal-500-rgb: 33, 128, 141;
  --color-slate-900-rgb: 19, 52, 59;
  --color-slate-500-rgb: 98, 108, 113;
  --color-red-500-rgb: 192, 21, 47;
  --color-red-400-rgb: 255, 84, 89;
  --color-orange-500-rgb: 168, 75, 47;
  --color-orange-400-rgb: 230, 129, 97;

  
  --color-bg-1: rgba(59, 130, 246, 0.08); 
  --color-bg-2: rgba(245, 158, 11, 0.08); 
  --color-bg-3: rgba(34, 197, 94, 0.08); 
  --color-bg-4: rgba(239, 68, 68, 0.08); 
  --color-bg-5: rgba(147, 51, 234, 0.08); 
  --color-bg-6: rgba(249, 115, 22, 0.08); 
  --color-bg-7: rgba(236, 72, 153, 0.08); 
  --color-bg-8: rgba(6, 182, 212, 0.08); 

  
  --color-background: var(--color-cream-50);
  --color-surface: var(--color-cream-100);
  --color-text: var(--color-slate-900);
  --color-text-secondary: var(--color-slate-500);
  --color-primary: var(--color-teal-500);
  --color-primary-hover: var(--color-teal-600);
  --color-primary-active: var(--color-teal-700);
  --color-secondary: rgba(var(--color-brown-600-rgb), 0.12);
  --color-secondary-hover: rgba(var(--color-brown-600-rgb), 0.2);
  --color-secondary-active: rgba(var(--color-brown-600-rgb), 0.25);
  --color-border: rgba(var(--color-brown-600-rgb), 0.2);
  --color-btn-primary-text: var(--color-cream-50);
  --color-card-border: rgba(var(--color-brown-600-rgb), 0.12);
  --color-card-border-inner: rgba(var(--color-brown-600-rgb), 0.12);
  --color-error: var(--color-red-500);
  --color-success: var(--color-teal-500);
  --color-warning: var(--color-orange-500);
  --color-info: var(--color-slate-500);
  --color-focus-ring: rgba(var(--color-teal-500-rgb), 0.4);
  --color-select-caret: rgba(var(--color-slate-900-rgb), 0.8);

  
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: 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='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  

  
  --color-success-rgb: 33, 128, 141;
  --color-error-rgb: 192, 21, 47;
  --color-warning-rgb: 168, 75, 47;
  --color-info-rgb: 98, 108, 113;

  
  --font-family-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-family-mono: "Berkeley Mono", ui-monospace, SFMono-Regular, Menlo,
    Monaco, Consolas, monospace;
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-md: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-2xl: 20px;
  --font-size-3xl: 26px;
  --font-size-4xl: 30px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 550;
  --font-weight-bold: 600;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --letter-spacing-tight: -0.01em;

  
  --space-0: 0;
  --space-1: 1px;
  --space-2: 2px;
  --space-4: 4px;
  --space-6: 6px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-14: 14px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;

  
  --radius-sm: 6px;
  --radius-base: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04),
    0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.03);

  
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);

  
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
}
:root{
  
  --color-brown-600-rgb: 94, 82, 64;
  --color-teal-500-rgb: 33, 128, 141;
  --color-slate-900-rgb: 19, 52, 59;

  
  --color-background: var(--color-cream-50);
  --color-surface: var(--color-cream-100);
  --color-text: var(--color-slate-900);
  --color-text-secondary: var(--color-slate-500);
  --color-primary: var(--color-teal-500);
  --color-primary-hover: var(--color-teal-600);
  --color-primary-active: var(--color-teal-700);
  --color-secondary: rgba(var(--color-brown-600-rgb), 0.12);
  --color-secondary-hover: rgba(var(--color-brown-600-rgb), 0.2);
  --color-secondary-active: rgba(var(--color-brown-600-rgb), 0.25);
  --color-border: rgba(var(--color-brown-600-rgb), 0.2);
  --color-btn-primary-text: var(--color-cream-50);
  --color-card-border: rgba(var(--color-brown-600-rgb), 0.12);
  --color-card-border-inner: rgba(var(--color-brown-600-rgb), 0.12);
  --color-error: var(--color-red-500);
  --color-success: var(--color-teal-500);
  --color-warning: var(--color-orange-500);
  --color-info: var(--color-slate-500);
  --color-focus-ring: rgba(var(--color-teal-500-rgb), 0.4);

  
  --color-success-rgb: var(--color-teal-500-rgb);
  --color-error-rgb: var(--color-red-500-rgb);
  --color-warning-rgb: var(--color-orange-500-rgb);
  --color-info-rgb: var(--color-slate-500-rgb);
}
html{
  font-size: var(--font-size-base);
  font-family: var(--font-family-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
body{
  margin: 0;
  padding: 0;
}
*,
*::before,
*::after{
  box-sizing: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6{
  margin: 0;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--color-text);
  letter-spacing: var(--letter-spacing-tight);
}
h1{
  font-size: var(--font-size-4xl);
}
h2{
  font-size: var(--font-size-2xl);
}
h3{
  font-size: var(--font-size-base);
}
h4{
  font-size: var(--font-size-xl);
}
h5{
  font-size: var(--font-size-lg);
}
h6{
  font-size: var(--font-size-md);
}
p{
  margin: 0 0 var(--space-16) 0;
}
a{
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}
a:hover{
  color: var(--color-primary-hover);
}
code,
pre{
  font-family: var(--font-family-mono);
  font-size: calc(var(--font-size-base) * 0.95);
  background-color: var(--color-secondary);
  border-radius: var(--radius-sm);
}
code{
  padding: var(--space-1) var(--space-4);
}
pre{
  padding: var(--space-16);
  margin: var(--space-16) 0;
  overflow: auto;
  border: 1px solid var(--color-border);
}
pre code{
  background: none;
  padding: 0;
}
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-16);
  border-radius: var(--radius-base);
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  border: none;
  text-decoration: none;
  position: relative;
}
.btn:focus-visible{
  outline: none;
  box-shadow: var(--focus-ring);
}
.btn--primary{
  background: var(--color-primary);
  color: var(--color-btn-primary-text);
}
.btn--primary:hover{
  background: var(--color-primary-hover);
}
.btn--primary:active{
  background: var(--color-primary-active);
}
.btn--secondary{
  background: var(--color-secondary);
  color: var(--color-text);
}
.btn--secondary:hover{
  background: var(--color-secondary-hover);
}
.btn--secondary:active{
  background: var(--color-secondary-active);
}
.btn--outline{
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}
.btn--outline:hover{
  background: var(--color-secondary);
}
.btn--sm{
  padding: var(--space-4) var(--space-12);
  font-size: var(--font-size-sm);
  border-radius: var(--radius-sm);
}
.btn--lg{
  padding: var(--space-10) var(--space-20);
  font-size: var(--font-size-lg);
  border-radius: var(--radius-md);
}
.btn--full-width{
  width: 100%;
}
.btn:disabled{
  opacity: 0.5;
  cursor: not-allowed;
}
.form-control{
  display: block;
  width: 100%;
  padding: var(--space-8) var(--space-12);
  font-size: var(--font-size-md);
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-base);
  transition: border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}
textarea.form-control{
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
}
select.form-control{
  padding: var(--space-8) var(--space-12);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: var(--select-caret-light);
  background-repeat: no-repeat;
  background-position: right var(--space-12) center;
  background-size: 16px;
  padding-right: var(--space-32);
}
select.form-control{
  background-image: var(--select-caret-light);
}
.form-control:focus{
  border-color: var(--color-primary);
  outline: var(--focus-outline);
}
.form-label{
  display: block;
  margin-bottom: var(--space-8);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}
.form-group{
  margin-bottom: var(--space-16);
}
.card{
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--duration-normal) var(--ease-standard);
}
.card:hover{
  box-shadow: var(--shadow-md);
}
.card__body{
  padding: var(--space-16);
}
.card__header,
.card__footer{
  padding: var(--space-16);
  border-bottom: 1px solid var(--color-card-border-inner);
}
.status{
  display: inline-flex;
  align-items: center;
  padding: var(--space-6) var(--space-12);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}
.status--success{
  background-color: rgba(
    var(--color-success-rgb, 33, 128, 141),
    var(--status-bg-opacity)
  );
  color: var(--color-success);
  border: 1px solid
    rgba(var(--color-success-rgb, 33, 128, 141), var(--status-border-opacity));
}
.status--error{
  background-color: rgba(
    var(--color-error-rgb, 192, 21, 47),
    var(--status-bg-opacity)
  );
  color: var(--color-error);
  border: 1px solid
    rgba(var(--color-error-rgb, 192, 21, 47), var(--status-border-opacity));
}
.status--warning{
  background-color: rgba(
    var(--color-warning-rgb, 168, 75, 47),
    var(--status-bg-opacity)
  );
  color: var(--color-warning);
  border: 1px solid
    rgba(var(--color-warning-rgb, 168, 75, 47), var(--status-border-opacity));
}
.status--info{
  background-color: rgba(
    var(--color-info-rgb, 98, 108, 113),
    var(--status-bg-opacity)
  );
  color: var(--color-info);
  border: 1px solid
    rgba(var(--color-info-rgb, 98, 108, 113), var(--status-border-opacity));
}
.container{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--space-16);
  padding-left: var(--space-16);
}
@media  (min-width: 640px){
.container{
    max-width: var(--container-sm);
  }
}
@media  (min-width: 768px){
.container{
    max-width: var(--container-md);
  }
}
@media  (min-width: 1024px){
.container{
    max-width: var(--container-lg);
  }
}
@media  (min-width: 1280px){
.container{
    max-width: var(--container-xl);
  }
}
.flex{
  display: flex;
}
.flex-col{
  flex-direction: column;
}
.items-center{
  align-items: center;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.gap-4{
  gap: var(--space-4);
}
.gap-8{
  gap: var(--space-8);
}
.gap-16{
  gap: var(--space-16);
}
.m-0{
  margin: 0;
}
.mt-8{
  margin-top: var(--space-8);
}
.mb-8{
  margin-bottom: var(--space-8);
}
.mx-8{
  margin-left: var(--space-8);
  margin-right: var(--space-8);
}
.my-8{
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
}
.p-0{
  padding: 0;
}
.py-8{
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}
.px-8{
  padding-left: var(--space-8);
  padding-right: var(--space-8);
}
.py-16{
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}
.px-16{
  padding-left: var(--space-16);
  padding-right: var(--space-16);
}
.block{
  display: block;
}
.hidden{
  display: none;
}
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
:focus-visible{
  outline: var(--focus-outline);
  outline-offset: 2px;
}
:root{
  
  --color-white: rgba(255, 255, 255, 1);
  --color-black: rgba(0, 0, 0, 1);
  --color-cream-100: rgba(241, 250, 255, 1);
  --color-cream-50: rgba(232, 246, 251, 1);
  --color-gray-200: rgba(245, 245, 245, 1);
  --color-gray-300: rgba(167, 169, 169, 1);
  --color-gray-400: rgba(119, 124, 124, 1);
  --color-slate-500: rgba(98, 108, 113, 1);
  --color-brown-600: rgba(94, 82, 64, 1);
  --color-charcoal-700: rgba(31, 33, 33, 1);
  --color-charcoal-800: rgba(38, 40, 40, 1);
  --color-slate-900: rgba(19, 52, 59, 1);
  --color-teal-300: rgba(50, 184, 198, 1);
  --color-teal-400: rgba(45, 166, 178, 1);
  --color-teal-500: rgba(33, 128, 141, 1);
  --color-teal-600: rgba(29, 116, 128, 1);
  --color-teal-700: rgba(26, 104, 115, 1);
  --color-teal-800: rgba(41, 150, 161, 1);
  --color-red-400: rgba(255, 84, 89, 1);
  --color-red-500: rgba(192, 21, 47, 1);
  --color-orange-400: rgba(230, 129, 97, 1);
  --color-orange-500: rgba(168, 75, 47, 1);

  
  --color-brown-600-rgb: 94, 82, 64;
  --color-teal-500-rgb: 33, 128, 141;
  --color-slate-900-rgb: 19, 52, 59;
  --color-slate-500-rgb: 98, 108, 113;
  --color-red-500-rgb: 192, 21, 47;
  --color-red-400-rgb: 255, 84, 89;
  --color-orange-500-rgb: 168, 75, 47;
  --color-orange-400-rgb: 230, 129, 97;
  --color-gray-400-rgb: 119, 124, 124;
  --color-teal-300-rgb: 50, 184, 198;
  --color-gray-300-rgb: 167, 169, 169;
  --color-gray-200-rgb: 245, 245, 245;

  
  --color-bg-1: rgba(59, 130, 246, 0.08);
  --color-bg-2: rgba(245, 158, 11, 0.08);
  --color-bg-3: rgba(34, 197, 94, 0.08);
  --color-bg-4: rgba(239, 68, 68, 0.08);
  --color-bg-5: rgba(147, 51, 234, 0.08);
  --color-bg-6: rgba(249, 115, 22, 0.08);
  --color-bg-7: rgba(236, 72, 153, 0.08);
  --color-bg-8: rgba(6, 182, 212, 0.08);

  
  --color-background: var(--color-cream-50);
  --color-surface: var(--color-cream-100);
  --color-text: var(--color-slate-900);
  --color-text-secondary: var(--color-slate-500);
  --color-primary: var(--color-teal-500);
  --color-primary-hover: var(--color-teal-600);
  --color-primary-active: var(--color-teal-700);
  --color-secondary: rgba(var(--color-brown-600-rgb), 0.12);
  --color-secondary-hover: rgba(var(--color-brown-600-rgb), 0.2);
  --color-secondary-active: rgba(var(--color-brown-600-rgb), 0.25);
  --color-border: rgba(var(--color-brown-600-rgb), 0.2);
  --color-btn-primary-text: var(--color-cream-50);
  --color-card-border: rgba(var(--color-brown-600-rgb), 0.12);
  --color-card-border-inner: rgba(var(--color-brown-600-rgb), 0.12);
  --color-error: var(--color-red-500);
  --color-success: var(--color-teal-500);
  --color-warning: var(--color-orange-500);
  --color-info: var(--color-slate-500);
  --color-focus-ring: rgba(var(--color-teal-500-rgb), 0.4);
  --color-select-caret: rgba(var(--color-slate-900-rgb), 0.8);

  
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: 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='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  

  
  --color-success-rgb: 33, 128, 141;
  --color-error-rgb: 192, 21, 47;
  --color-warning-rgb: 168, 75, 47;
  --color-info-rgb: 98, 108, 113;

  
  --font-family-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-family-mono: "Berkeley Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-md: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-2xl: 20px;
  --font-size-3xl: 26px;
  --font-size-4xl: 27px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 550;
  --font-weight-bold: 600;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --letter-spacing-tight: -0.01em;

  
  --space-0: 0;
  --space-1: 1px;
  --space-2: 2px;
  --space-4: 4px;
  --space-6: 6px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-14: 14px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;

  
  --radius-sm: 6px;
  --radius-base: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.03);

  
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);

  
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;

  
  --transition-ui: background-color var(--duration-normal) var(--ease-standard),
    color var(--duration-normal) var(--ease-standard),
    border-color var(--duration-normal) var(--ease-standard);
}
:root{
  --color-bg-1: rgba(59, 130, 246, 0.08);
  --color-bg-2: rgba(245, 158, 11, 0.08);
  --color-bg-3: rgba(34, 197, 94, 0.08);
  --color-bg-4: rgba(239, 68, 68, 0.08);
  --color-bg-5: rgba(147, 51, 234, 0.08);
  --color-bg-6: rgba(249, 115, 22, 0.08);
  --color-bg-7: rgba(236, 72, 153, 0.08);
  --color-bg-8: rgba(6, 182, 212, 0.08);
  --color-background: var(--color-cream-50);
  --color-surface: var(--color-cream-100);
  --color-text: var(--color-slate-900);
  --color-text-secondary: var(--color-slate-500);
  --color-primary: var(--color-teal-500);
  --color-primary-hover: var(--color-teal-600);
  --color-primary-active: var(--color-teal-700);
  --color-secondary: rgba(var(--color-brown-600-rgb), 0.12);
  --color-secondary-hover: rgba(var(--color-brown-600-rgb), 0.2);
  --color-secondary-active: rgba(var(--color-brown-600-rgb), 0.25);
  --color-border: rgba(var(--color-brown-600-rgb), 0.2);
  --color-btn-primary-text: var(--color-cream-50);
  --color-card-border: rgba(var(--color-brown-600-rgb), 0.12);
  --color-card-border-inner: rgba(var(--color-brown-600-rgb), 0.12);
  --color-error: var(--color-red-500);
  --color-success: var(--color-teal-500);
  --color-warning: var(--color-orange-500);
  --color-info: var(--color-slate-500);
  --color-focus-ring: rgba(var(--color-teal-500-rgb), 0.4);
  --color-success-rgb: var(--color-teal-500-rgb);
  --color-error-rgb: var(--color-red-500-rgb);
  --color-warning-rgb: var(--color-orange-500-rgb);
  --color-info-rgb: var(--color-slate-500-rgb);
}
html{
  font-size: var(--font-size-base);
  font-family: var(--font-family-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
body{
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
*,
*::before,
*::after{
  box-sizing: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6{
  margin: 0;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--color-text);
  letter-spacing: var(--letter-spacing-tight);
  transition: color var(--duration-normal) var(--ease-standard);
}
h1{ font-size: var(--font-size-4xl); }
h2{ font-size: var(--font-size-2xl); }
h3{ font-size: var(--font-size-base); }
h4{ font-size: var(--font-size-xl); }
h5{ font-size: var(--font-size-lg); }
h6{ font-size: var(--font-size-md); }
p{
  margin: 0 0 var(--space-16) 0;
}
a{
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}
a:hover{
  color: var(--color-primary-hover);
}
code,
pre{
  font-family: var(--font-family-mono);
  font-size: calc(var(--font-size-base) * 0.95);
  background-color: var(--color-secondary);
  border-radius: var(--radius-sm);
  transition: background-color var(--duration-normal) var(--ease-standard);
}
code{
  padding: var(--space-1) var(--space-4);
}
pre{
  padding: var(--space-16);
  margin: var(--space-16) 0;
  overflow: auto;
  border: 1px solid var(--color-border);
}
pre code{
  background: none;
  padding: 0;
}
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-16);
  border-radius: var(--radius-base);
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  border: none;
  text-decoration: none;
  position: relative;
}
.btn:focus-visible{
  outline: none;
  box-shadow: var(--focus-ring);
}
.btn--primary{
  background: var(--color-primary);
  color: var(--color-btn-primary-text);
}
.btn--primary:hover{
  background: var(--color-primary-hover);
}
.btn--primary:active{
  background: var(--color-primary-active);
}
.btn--secondary{
  background: var(--color-secondary);
  color: var(--color-text);
}
.btn--secondary:hover{
  background: var(--color-secondary-hover);
}
.btn--secondary:active{
  background: var(--color-secondary-active);
}
.btn--outline{
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}
.btn--outline:hover{
  background: var(--color-secondary);
}
.btn--sm{
  padding: var(--space-4) var(--space-12);
  font-size: var(--font-size-sm);
  border-radius: var(--radius-sm);
}
.btn--lg{
  padding: var(--space-10) var(--space-20);
  font-size: var(--font-size-lg);
  border-radius: var(--radius-md);
}
.btn--full-width{
  width: 100%;
}
.btn:disabled{
  opacity: 0.5;
  cursor: not-allowed;
}
.form-control{
  display: block;
  width: 100%;
  padding: var(--space-8) var(--space-12);
  font-size: var(--font-size-md);
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-base);
  transition: border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard),
    background-color var(--duration-normal) var(--ease-standard),
    color var(--duration-normal) var(--ease-standard);
}
textarea.form-control{
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
}
select.form-control{
  padding: var(--space-8) var(--space-12);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: var(--select-caret-light);
  background-repeat: no-repeat;
  background-position: right var(--space-12) center;
  background-size: 16px;
  padding-right: var(--space-32);
}
select.form-control{
  background-image: var(--select-caret-light);
}
.form-control:focus{
  border-color: var(--color-primary);
  outline: var(--focus-outline);
}
.form-label{
  display: block;
  margin-bottom: var(--space-8);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
  transition: color var(--duration-normal) var(--ease-standard);
}
.form-group{
  margin-bottom: var(--space-16);
}
.card{
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--duration-normal) var(--ease-standard),
    background-color var(--duration-normal) var(--ease-standard),
    border-color var(--duration-normal) var(--ease-standard);
}
.card:hover{
  box-shadow: var(--shadow-md);
}
.card__body{
  padding: var(--space-16);
}
.card__header,
.card__footer{
  padding: var(--space-16);
  border-bottom: 1px solid var(--color-card-border-inner);
}
.status{
  display: inline-flex;
  align-items: center;
  padding: var(--space-6) var(--space-12);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
  transition: background-color var(--duration-normal) var(--ease-standard),
    color var(--duration-normal) var(--ease-standard);
}
.status--success{
  background-color: rgba(var(--color-success-rgb), var(--status-bg-opacity));
  color: var(--color-success);
  border: 1px solid rgba(var(--color-success-rgb), var(--status-border-opacity));
}
.status--error{
  background-color: rgba(var(--color-error-rgb), var(--status-bg-opacity));
  color: var(--color-error);
  border: 1px solid rgba(var(--color-error-rgb), var(--status-border-opacity));
}
.status--warning{
  background-color: rgba(var(--color-warning-rgb), var(--status-bg-opacity));
  color: var(--color-warning);
  border: 1px solid rgba(var(--color-warning-rgb), var(--status-border-opacity));
}
.status--info{
  background-color: rgba(var(--color-info-rgb), var(--status-bg-opacity));
  color: var(--color-info);
  border: 1px solid rgba(var(--color-info-rgb), var(--status-border-opacity));
}
.container{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--color-background);
  transition: var(--transition-ui);
}
@media  (min-width: 640px){
.container{
    max-width: 100%;
  }
}
@media  (min-width: 768px){
.container{
    max-width: 100%;
  }
}
@media  (min-width: 1024px){
.container{
    max-width: 100%;
  }
}
@media  (min-width: 1280px){
.container{
    max-width: 100%;
  }
}
.flex{ display: flex; }
.flex-col{ flex-direction: column; }
.items-center{ align-items: center; }
.justify-center{ justify-content: center; }
.justify-between{ justify-content: space-between; }
.gap-4{ gap: var(--space-4); }
.gap-8{ gap: var(--space-8); }
.gap-16{ gap: var(--space-16); }
.m-0{ margin: 0; }
.mt-8{ margin-top: var(--space-8); }
.mb-8{ margin-bottom: var(--space-8); }
.mx-8{ margin-left: var(--space-8); margin-right: var(--space-8); }
.my-8{ margin-top: var(--space-8); margin-bottom: var(--space-8); }
.p-0{ padding: 0; }
.py-8{ padding-top: var(--space-8); padding-bottom: var(--space-8); }
.px-8{ padding-left: var(--space-8); padding-right: var(--space-8); }
.py-16{ padding-top: var(--space-16); padding-bottom: var(--space-16); }
.px-16{ padding-left: var(--space-16); padding-right: var(--space-16); }
.block{ display: block; }
.hidden{ display: none; }
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
:focus-visible{
  outline: var(--focus-outline);
  outline-offset: 2px;
}
.profile-section{
  order: 1;
  background: var(--color-background);
  display: flex;
  flex-direction: column;
  padding: 0 var(--space-16) var(--space-20);
  transition: var(--transition-ui);
}
.profile-header-bg{
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: var(--radius-base)
;}
.header-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-info{
  padding: 0 0 var(--space-16);
  margin-top: -90px;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.profile-pic{
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 3px solid var(--color-background);
  margin-bottom: var(--space-12);
  box-shadow: var(--shadow-md);
}
.business-name{
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  margin: 0 0 var(--space-0) 0;
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
  text-align: center;
}
.phone-number{
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-lg);
  margin: 0 0 var(--space-6) 0;
  transition: color var(--duration-fast) var(--ease-standard);
}
.phone-number:hover{
  color: var(--color-primary-hover);
  text-decoration: none;
}
.phone-number,
.phone-number:hover,
.phone-number a{
    color: #075E54;
  }
.business-category{
  font-size: var(--font-size-lg);
  color: var(--color-warning);
  margin: 0 0 var(--space-16) 0;  
  font-weight: var(--font-weight-semibold);
  background: rgba(255, 140, 66, 0.1);
  border: 1px solid var(--color-warning);
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-12);
  display: inline-block;
}
.status-info{
  display: flex;
  align-items: center;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: #25D366;
  margin: 0 0 var(--space-2) 0;
  transition: var(--transition-ui);
}
.status-info.closed{
  color: var(--color-error);
}
.status-info{
  color: #2B8A45;
}
.whatsapp-btn{
  display: inline-flex;  
  align-items: center;   
  justify-content: center;  
  gap: var(--space-8);  
  background: #075E54;   
  color: white;
  text-decoration: none;
  padding: var(--space-12) var(--space-16);
  border-radius: var(--radius-full);  
  font-weight: var(--font-weight-medium);
  text-align: center;
  margin-top: var(--space-8);
  font-size: var(--font-size-lg);
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 350px;
  transition: background-color var(--duration-normal) var(--ease-standard);
}
.whatsapp-btn:hover,
.whatsapp-btn:active,
.whatsapp-btn:focus{
  background: #075E54;  
  color: white;
  text-decoration: none;
}
.whatsapp-icon{
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.whatsapp-btn:visited{
  background: var(--color-primary);
  color: var(--color-btn-primary-text);
  text-decoration: none;
}
.whatsapp-btn:focus-visible{
  outline: none;
  box-shadow: var(--focus-ring);
}
.catalog-section{
  order: 2;
  padding: var(--space-20) var(--space-16);
  background: var(--color-background);
  border-top: 1px solid var(--color-border);
  transition: var(--transition-ui);
}
.catalog-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-6);
}
.catalog-header h2{
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  margin: 0;
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}
.see-on-holvi{
  color: #ffd700;
  text-decoration: none;
  margin-top: var(--space-14);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-lg);
  transition: color var(--duration-fast) var(--ease-standard);
}
.see-on-holvi:hover{
  color: #ffd700;
  text-decoration: none;
}
.see-on-holvi,
.see-on-holvi:hover{
    color: var(--color-warning);
}
.see-on-whatsapp{
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-lg);
  transition: color var(--duration-fast) var(--ease-standard);
}
.see-on-whatsapp:hover{
  color: var(--color-primary-hover);
  text-decoration: none;
}
.see-on-whatsapp,
.see-on-whatsapp:hover{
    color: #075E54;
}
.catalog-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}
.catalog-item{
  cursor: pointer;
  border-radius: var(--radius-base);
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-standard), box-shadow var(--duration-normal) var(--ease-standard);
  background: var(--color-surface);
  border: 1px solid var(--color-card-border);
}
.catalog-item:hover{
  transform: translateY(0px);
  box-shadow: var(--shadow-md);
}
.catalog-item img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.catalog-item p{
  padding: var(--space-12);
  font-size: var(--font-size-lg);
  color: var(--color-text);
  font-weight: var(--font-weight-semibold);
  margin: 0;
}
.about-section{
  order: 3;
  padding: var(--space-20) var(--space-16);
  background: var(--color-background);
  border-top: 1px solid var(--color-border);
  transition: var(--transition-ui);
}
.about-section h2{
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  margin: 0 0 var(--space-6) 0;
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}
.about-section > p{
  font-size: var(--font-size-lg);
  color: #C0C0C0;
  line-height: var(--line-height-normal);
  margin: 0 0 var(--space-20) 0;
}
.about-section > p{
    color: #555555;
  }
.hours-container{
  margin: var(--space-16) 0;
}
.hours-header{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: var(--space-12) var(--space-16);
  background: var(--color-surface);
  border-radius: var(--radius-base);
  border: 1px solid var(--color-card-border);
  transition: background-color var(--duration-normal) var(--ease-standard);
  user-select: none;
  gap: var(--space-12);
  white-space: nowrap;
}
.hours-header:hover{
  background-color: var(--color-surface);
}
.hours-header:focus-visible{
  outline: var(--focus-outline);
  outline-offset: 2px;
}
.hours-header-left{
  flex: 0 1 auto;
  text-align: left;
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.hours-header-right{
  display: flex;
  align-items: center;
  gap: var(--space-8);
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
}
#today-day{
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: #C0C0C0;
  margin: 0;
  white-space: nowrap;
}
#today-day.today-day-open{
  color: #25D366;
  font-weight: var(--font-weight-semibold) !important;
}
#today-day{ color: #555555; }
#today-day.today-day-open{
    color: #2B8A45;
    font-weight: var(--font-weight-semibold) !important;
  }
.hours-time{
  font-size: var(--font-size-base);
  color: #C0C0C0;
  margin: 0;
  font-weight: var(--font-weight-semibold);
  white-space: nowrap;
}
.hours-time{
    color: #555555;
    }
.hours-toggle{
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  transition: transform var(--duration-normal) var(--ease-standard);
  line-height: 1;
  flex-shrink: 0;
  white-space: nowrap;
}
.hours-toggle.open{
  transform: rotate(180deg);
}
.hours-list{
  background: var(--color-surface);
  border-radius: var(--radius-base);
  overflow: hidden;
  margin-top: var(--space-8);
  border: 1px solid var(--color-card-border);
}
.hours-item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-12) var(--space-16);
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
}
.hours-item:last-child{
  border-bottom: none;
}
.hours-item.today{
  background-color: rgba(var(--color-teal-500-rgb), 0.08);
}
.hours-item.today span:first-child{
  font-weight: var(--font-weight-semibold) !important;
}
.hours-item span:first-child{
  font-weight: var(--font-weight-normal) !important;
  color: var(--color-text-secondary);
  min-width: 80px;
}
.hours-item span:last-child{
  text-align: right;
}
.contact-info{
  margin-top: var(--space-16);
}
.contact-info p{
  font-size: var(--font-size-lg);
  margin: var(--space-4) 0;
  color: var(--color-text-secondary);
}
.contact-info a{
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: color var(--duration-fast) var(--ease-standard);
}
.contact-info a:hover{
  color: var(--color-primary-hover);
  text-decoration: none;
}
.contact-info a,
.contact-info a:hover{
    color: #075E54;
  }
.modal{
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--color-black), 0.5);
  animation: fadeIn var(--duration-normal) var(--ease-standard);
  padding: var(--space-16);
  align-items: flex-end;
  justify-content: center;
}
.modal.show{
  display: flex;
}
@keyframes fadeIn{
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp{
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.modal-content{
  background-color: var(--color-surface);
  width: 100%;
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-base) var(--radius-base) 0 0;
  overflow-y: auto;
  animation: slideUp var(--duration-normal) var(--ease-standard);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-ui);
}
.modal-header{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: var(--space-12) var(--space-16);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-surface);
  flex-shrink: 0;
}
.modal-close{
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: #C0C0C0;
  cursor: pointer;
  padding: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: color var(--duration-fast) var(--ease-standard);
  line-height: 1;
  background: none;
  border: none;
}
.modal-close:hover{
  color: var(--color-text);
}
.modal-close:focus-visible{
  outline: var(--focus-outline);
  outline-offset: 2px;
}
.modal-img{
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.modal-body{
  padding: var(--space-16);
  flex: 1;
  overflow-y: auto;
}
.modal-body h2{
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  margin-bottom: var(--space-8);
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}
.modal-price{
  font-size: var(--font-size-lg);
  color: #C0C0C0;
  margin-bottom: var(--space-12);
}
.modal-description{
  font-size: var(--font-size-lg);
  color: #C0C0C0;
  line-height: var(--line-height-normal);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-16);
}
.footer{
  padding: var(--space-8);
  text-align: center;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
  color: #a3a3a3;
  order: 4;
  font-size: var(--font-size-base);
  transition: var(--transition-ui);
}
.footer{
    color: #555555;
  }
.footer p{
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  margin: var(--space-2) 0;
}
.footer a{
  color: var(--color-primary);
  text-decoration: none;
}
.footer a:hover{
  text-decoration: none;
}
.catalog-title{
  display: flex;
  align-items: center;
  color: var(--color-warning);
  justify-content: space-between;
  width: 100%;
  margin: 0;
}
.catalog-price{
  margin-left: auto;
  color: #ffd700;
  font-weight: var(--font-weight-semibold);
}
.catalog-price{
    color: var(--color-warning);
  }
.name-box{
  display: inline-block;
  position: relative;
  white-space: nowrap;
}
.meta-badge{
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  height: 0.85em;
  width: auto;
  margin-left: 0em;
  pointer-events: none;
}




@media  (max-width: 480px){
.profile-info{
    padding: 0 0 var(--space-20);
  }
h1{ font-size: var(--font-size-3xl); }
.business-name{
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  margin: 0 0 var(--space-0) 0;  
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
  text-align: center;
}
.catalog-section,
.about-section{
    padding: var(--space-20) var(--space-12);
  }
.catalog-grid{
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
.catalog-item img{
    height: 200px;
  }
.whatsapp-btn{
    padding: var(--space-10) var(--space-16);
    font-size: var(--font-size-lg);
    width: 100%;
    max-width: 350px;
  }
.modal{
    padding: var(--space-12);
  }
.modal-content{
    border-radius: var(--radius-base);
    max-height: 85vh;
  }
.modal-img{
    max-height: 250px;
  }
.status-emoji{
    font-size: var(--font-size-3xl);
  }
.hours-header{
    padding: var(--space-10) var(--space-12);
    gap: var(--space-8);
  }
.hours-time{
    font-size: var(--font-size-base);
  }
.hours-item{
    padding: var(--space-10) var(--space-12);
    font-size: var(--font-size-base);
  }
.about-section h2{
    font-size: var(--font-size-2xl);
  }

}
@media  (min-width: 768px){
html,
body{
    overflow: auto;
  }
.container{
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }
.profile-pic{
    width: 160px;
    height: 160px;
  }
.profile-header-bg{
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: var(--radius-base)
;}
.profile-info{
  padding: 0 0 var(--space-16);
  margin-top: -125px;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.profile-section{
    order: 1;
    flex-shrink: 0;
    padding-bottom: var(--space-16);
    padding-left: var(--space-16);
    padding-right: var(--space-16);
    padding-top: 0;
  }
.catalog-section{
    order: 2;
    flex-shrink: 0;
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
    padding-left: var(--space-16);
    padding-right: var(--space-16);
    width: 100%;
  }
.catalog-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
.catalog-item img{
    height: 240px;
  }
.about-section{
    order: 3;
    flex-shrink: 0;
    
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
    padding-left: var(--space-16);
    padding-right: var(--space-16);
    width: 100%;
  }
.footer{
    order: 4;
    flex-shrink: 0;
    width: 100%;
  }
.modal-content{
    max-width: 600px;
    width: 90%;
    border-radius: var(--radius-base);
  }
.whatsapp-btn{
    max-width: 350px;
    padding: var(--space-12) var(--space-20);
  }
}
.language-switch{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-16);
  gap: var(--space-8);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  text-align: center;
  order: 5;
  font-size: var(--font-size-sm);
}
.lang-link{
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--font-weight-normal);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-standard);
  cursor: pointer;
}
.lang-link:hover{
  color: var(--color-primary-hover);
  background-color: var(--color-secondary);
}
.lang-link--active{
  color: var(--color-btn-primary-text);
  background-color: var(--color-primary);
  pointer-events: none;
}
.lang-link--active:hover{
  background-color: var(--color-primary);
  color: var(--color-btn-primary-text);
}
.lang-separator{
  color: #a3a3a3;
  font-weight: var(--font-weight-semibold);
  user-select: none;
}
.lang-separator{
    color: #555555;
  }
@media  (max-width: 480px) and (orientation: portrait){
.profile-section{
    margin-bottom: -8px;
  }
.catalog-section{
    margin-top: -8px;
  }
}
.contact-flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}
@media  (min-width: 768px){
.container{
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto auto auto !important;
    grid-template-areas:
      "profile profile"
      "catalog about"
      "footer footer"
      "language language" !important;
    gap: 0 !important;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
  }
.profile-section{
    grid-area: profile !important;
    order: unset !important;
    border-bottom: 1px solid var(--color-border) !important;
    padding: 0 var(--space-16) var(--space-20) !important;
    overflow: visible !important;
    max-height: none !important;
  }
.catalog-section{
    grid-area: catalog !important;
    order: unset !important;
    border-right: 1px solid var(--color-border) !important;
    border-top: none !important;
    padding: var(--space-20) var(--space-16) !important;
    overflow: visible !important;
    max-height: none !important;
  }
.catalog-grid{
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: var(--space-16) !important;
  }
.about-section{
    grid-area: about !important;
    order: unset !important;
    border-top: none !important;
    padding: var(--space-20) var(--space-16) !important;
    overflow: visible !important;
    max-height: none !important;
  }
.footer{
    grid-area: footer !important;
    order: unset !important;
  }
.language-switch{
    grid-area: language !important;
    order: unset !important;
    border-top: 1px solid var(--color-border) !important;
  }
}
.container,
.catalog-section,
.about-section,
.catalog-grid{
  min-height: 0;
  min-width: 0;
}
@media  (min-width: 768px){
.catalog-item img{
    height: 200px;          
    object-fit: cover;
  }
}
#hoursList.hours-list,
#hoursList .hours-item,
#hoursList .hours-item span{
  font-size: var(--font-size-base) !important;
}
h3.catalog-title{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  color: var(--color-warning);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
  letter-spacing: inherit;
}
.catalog-price{
  margin-left: auto;
  color: #ffd700;
  font-weight: var(--font-weight-semibold);
}
.catalog-price{ color: var(--color-warning); }
.catalog-item h3.catalog-title{
  padding: var(--space-12);
  font-size: var(--font-size-lg);
  color: #ffffff;                 
  font-weight: var(--font-weight-semibold);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  line-height: var(--line-height-normal);
  letter-spacing: inherit;
}
.catalog-price{
  margin-left: auto;
  color: #ffd700;
  font-weight: var(--font-weight-semibold);
}
.catalog-price{ color: var(--color-warning); }
.catalog-item h3.catalog-title{ color: #000000; }
.whatsapp-btn{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;            
  border-radius: 28px;
  font-weight: 550;
  font-size: 16px;
  line-height: 1.1;
  background: #075E54;
  color: #ffffff;                 
  text-decoration: none;
  white-space: nowrap;
  width: auto;                    
  align-self: center;
}
.whatsapp-btn .whatsapp-icon{
  width: 22px;                    
  height: 22px;
  display: block;                 
  flex: 0 0 22px;
  
}
.cta{ display: flex; justify-content: center; }
.hours-item{
    color: var(--color-text-secondary);
  }
.service-cities{
  font-size: var(--font-size-base);
  color: #C0C0C0;
  line-height: var(--line-height-normal);
  margin: 0 0 var(--space-20) 0;
  font-weight: var(--font-weight-normal);
  margin-bottom: var(--space-8);
}
.service-cities{
    color: #555555;
  }
.modal{
  display: none;              
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);

  
  align-items: center;
  justify-content: center;
}
.modal.show{
  display: flex;              
}
@media  (max-width: 646px){
.modal{
    padding: 0;
    align-items: flex-end;
    justify-content: center;
  }
.modal-content{
    width: 100%;
    height: 100%;
    border-radius: 0;
    max-height: 100vh;
    max-height: 100dvh;
  }
}
.modal-content{
  background-color: var(--color-surface);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  overflow: hidden;

  
  animation: none !important;
  transition: none !important;
}
@media  (min-width: 647px) and (max-width: 1024px) and (orientation: portrait){
.modal{
    padding: var(--space-16);
    align-items: center;
    justify-content: center;
  }
.modal-content{
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    border-radius: var(--radius-lg);
  }
}
@media  (min-width: 1025px), (orientation: landscape){
.modal{
    padding: var(--space-16);
    align-items: center;
    justify-content: center;
  }
.modal-content{
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    border-radius: var(--radius-lg);
  }
}
.modal-content{
  background-color: var(--color-surface);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transition: background-color 300ms ease-out;
  overflow: hidden;
}
.modal-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-16);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
  flex-shrink: 0;
  min-height: 60px;
}
.modal-title{
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  color: #C0C0C0;
  margin-top: 8px;
}
.modal-close{
  font-size: 28px;
  color: #C0C0C0;
  cursor: pointer;
  padding: 0;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  transition: color 150ms ease-out;
  line-height: 1;
  border-radius: var(--radius-sm);
  margin-left: auto;
  pointer-events: auto !important;
  touch-action: manipulation !important;
  -webkit-user-select: none;
  user-select: none;
  z-index: 10000;
}
.modal-close:hover{
  color: var(--color-text);
  background: var(--color-secondary);
}
.modal-close:active{
  transform: scale(0.95);
}
.modal-close:focus-visible{
  outline: var(--focus-outline);
  outline-offset: 2px;
}
.modal-body{
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.modal-img{
  width: 100%;
  height: auto;
  max-height: 40%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.modal-info{
  padding: var(--space-16);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.modal-info h2{
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  margin: 0 0 var(--space-8) 0;
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}
.modal-price{
  font-size: var(--font-size-lg);
  color: #ffd700;
  font-weight: var(--font-weight-semibold);
  margin: 0 0 var(--space-12) 0;
}
.modal-description{
  font-size: var(--font-size-lg);
  line-height: var(--line-height-normal);
  color: #C0C0C0;
  margin: 0;
}
.modal-title,
.modal-close,
.modal-description{
    color: #555555;
  }
.modal-price{
    color: var(--color-warning);
  }
.modal-footer{
  padding: var(--space-16);
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
.modal-footer .whatsapp-btn{
  width: 100%;
  max-width: 100%;
  justify-content: center;
  margin: 0;
}
.modal-footer .whatsapp-btn.calculator-cta{
  width: calc(100% - 32px);
  max-width: 520px;
}
body.modal-open{
  
  overflow: hidden !important;
}
.card-image-wrapper{
  position: relative;
  overflow: hidden;           
}
.image-zoom-icon{
  position: absolute;
  top: 5px;
  right: 5px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.60);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.22);
  pointer-events: none;
}
.voucher-icon{
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  background: rgba(0, 0, 0, 0.60);
  color: #ffd700;
  padding: 3px 5px;
  border-radius: 999px;
  text-decoration: none;
  pointer-events: auto;
}
.voucher-icon:hover{
  color: #ffd700;
  text-decoration: none;
}
.cleaning-calculator[hidden]{
  display: none !important;
}
.cleaning-calculator{
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}
.calculator-heading{
  margin-bottom: 16px;
}
.calculator-kicker{
  display: inline-block;
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #ffd700;
}
.calculator-heading h3{
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--color-text);
}
.calculator-heading p{
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #c0c0c0;
}
.calculator-tabs{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin: 0 0 14px;
  padding: 4px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.10);
}
.calculator-tab{
  min-height: 40px;
  border: 0;
  border-radius: 9px;
  padding: 8px 10px;
  background: transparent;
  color: var(--color-text-secondary);
  font: inherit;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 650;
  cursor: pointer;
}
.calculator-tab.is-active{
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.calculator-fields[hidden]{
  display: none !important;
}
.calculator-fields{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 12px;
  margin-bottom: 14px;
}
.calculator-fields--single{
  grid-template-columns: 1fr;
}
.calculator-field{
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.calculator-field > span{
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}
.calculator-input-wrap{
  position: relative;
}
.calculator-input-wrap input,
.calculator-field select{
  width: 100%;
  height: 46px;
  border: 1px solid var(--color-border);
  border-radius: 11px;
  padding: 0 13px;
  background: var(--color-background);
  color: var(--color-text);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.08s ease-out, box-shadow 0.08s ease-out;
}
.calculator-field select{
  cursor: pointer;
}
.calculator-input-wrap input:focus,
.calculator-field select:focus{
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-focus-ring);
}
.calculator-result{
  border-radius: 13px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: rgba(0, 0, 0, 0.08);
}
.calculator-result:empty{
  display: none;
}
.calculator-metrics{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.calculator-metrics--two{
  grid-template-columns: 1fr 1fr;
}
.calculator-metrics--three{
  grid-template-columns: repeat(3, 1fr);
}
.calculator-metric{
  min-width: 0;
  padding: 13px 14px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.calculator-metrics:not(.calculator-metrics--three) .calculator-metric:nth-child(2n){
  border-right: 0;
}
.calculator-metrics:not(.calculator-metrics--three) .calculator-metric:nth-last-child(-n + 2){
  border-bottom: 0;
}
.calculator-metrics--three .calculator-metric{
  border-bottom: 0;
}
.calculator-metrics--three .calculator-metric:last-child{
  border-right: 0;
}
.calculator-metric span{
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  line-height: 1.3;
  color: var(--color-text-secondary);
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.calculator-metric strong{
  display: block;
  font-size: 18px;
  line-height: 1.2;
  color: var(--color-text);
}
.calculator-metric--emphasis strong{
  color: #ffd700;
}
.calculator-tax-note{
  padding: 10px 13px;
  border-top: 1px solid var(--color-border);
  font-size: 11px;
  line-height: 1.4;
  color: var(--color-text-secondary);
}
.calculator-custom{
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 16px;
}
.calculator-custom strong{
  color: #ffd700;
  font-size: 16px;
}
.calculator-custom span{
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 1.45;
}
.calculator-disclaimer{
  margin: 10px 2px 0 !important;
  font-size: 11px !important;
  line-height: 1.45 !important;
  color: var(--color-text-secondary) !important;
}
.cleaning-calculator{
    background: rgba(0, 0, 0, 0.025);
  }
.calculator-heading p{
    color: #555;
  }
.calculator-kicker,
.calculator-metric--emphasis strong,
.calculator-custom strong{
    color: var(--color-warning);
  }
.calculator-tabs{
    background: rgba(0, 0, 0, 0.035);
  }
@media  (max-width: 430px){
.cleaning-calculator{
    margin-top: 18px;
    padding: 14px;
    border-radius: 14px;
  }
.calculator-fields:not(.calculator-fields--compact-pair),
.calculator-fields--single{
    grid-template-columns: 1fr;
    gap: 10px;
  }
.calculator-fields--compact-pair{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
.calculator-fields--compact-pair .calculator-field > span{
    font-size: 12px;
    white-space: nowrap;
  }
.calculator-fields--compact-pair .calculator-field select{
    padding-left: 10px;
    padding-right: 10px;
  }
.calculator-heading h3{
    font-size: 19px;
  }
.calculator-metrics--three{
    grid-template-columns: 1fr;
  }
.calculator-metrics--three .calculator-metric{
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }
.calculator-metrics--three .calculator-metric:last-child{
    border-bottom: 0;
  }
.calculator-metric{
    padding: 12px;
  }
.calculator-metric strong{
    font-size: 17px;
  }
}
body{
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.status-info{
  font-size: 15px;
  line-height: 1.45;
}
.catalog-header h2{
  font-size: 19px;
  line-height: 1.25;
}
.service-cities{
  font-size: 15px;
  line-height: 1.55;
}
.catalog-item h3.catalog-title{
  font-size: 17px;
  line-height: 1.35;
  padding: 13px 14px;
}
.about-section h2{
  font-size: 22px;
  line-height: 1.25;
}
.about-section > p{
  font-size: 16px;
  line-height: 1.58;
}
.whatsapp-btn{
  min-height: 50px;
  padding: 11px 18px;
  gap: 8px;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.whatsapp-btn .whatsapp-icon{
  width: 23px;
  height: 23px;
  flex-basis: 23px;
}
.modal-title{
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
}
.modal-info h2{
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.modal-price{
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 14px;
}
.modal-description{
  font-size: 16px;
  line-height: 1.58;
}
.cleaning-calculator{
  margin-top: 22px;
  padding: 18px;
}
.calculator-kicker{
  font-size: 13px;
  line-height: 1.15;
}
.calculator-heading h3{
  font-size: 21px;
  line-height: 1.28;
}
.calculator-heading p{
  font-size: 15px;
  line-height: 1.55;
}
.calculator-tab{
  min-height: 44px;
  padding: 9px 10px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 600;
}
.calculator-field{
  gap: 8px;
}
.calculator-field > span{
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
}
.calculator-input-wrap input,
.calculator-field select{
  min-height: 50px;
  height: 50px;
  padding: 0 14px;
  font-size: 16px;
  line-height: 1.2;
}
.calculator-metric{
  padding: 14px;
}
.calculator-metric span{
  margin-bottom: 5px;
  font-size: 13px;
  line-height: 1.35;
}
.calculator-metric strong{
  font-size: 19px;
  line-height: 1.2;
}
.calculator-tax-note{
  padding: 11px 14px;
  font-size: 13px;
  line-height: 1.48;
}
.calculator-custom{
  gap: 7px;
  padding: 16px;
}
.calculator-custom strong{
  font-size: 17px;
  line-height: 1.3;
}
.calculator-custom span{
  font-size: 14px;
  line-height: 1.5;
}
.calculator-disclaimer{
  margin: 12px 2px 0 !important;
  font-size: 13px !important;
  line-height: 1.52 !important;
}
.service-cities,
.about-section > p,
.modal-title,
.modal-description,
.calculator-heading p,
.calculator-metric span,
.calculator-tax-note,
.calculator-custom span,
.calculator-disclaimer{
    color: #51585a !important;
  }
@media  (max-width: 430px){
.cleaning-calculator{
    padding: 15px;
  }
.calculator-heading h3{
    font-size: 21px;
  }
.calculator-tab{
    font-size: 14px;
    padding-left: 8px;
    padding-right: 8px;
  }
.calculator-metric{
    padding: 13px;
  }
.calculator-metric strong{
    font-size: 19px;
  }
}
@media  (max-width: 430px){
.business-name{
    font-size: 25px;
  }
.phone-number,
.business-category,
.see-on-whatsapp,
.see-on-holvi,
.contact-info p{
    font-size: 15px;
  }
.status-info{
    font-size: 14px;
  }
.catalog-header h2{
    font-size: 18px;
  }
.service-cities{
    font-size: 14px;
    line-height: 1.5;
  }
.catalog-item h3.catalog-title{
    font-size: 16px;
    line-height: 1.32;
    padding: 12px 14px;
  }
.about-section h2{
    font-size: 21px;
  }
.about-section > p{
    font-size: 15px;
    line-height: 1.56;
  }
.whatsapp-btn{
    min-height: 48px;
    padding: 10px 17px;
    font-size: 15px;
  }
.whatsapp-btn .whatsapp-icon{
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
.modal-title{
    font-size: 15px;
  }
.modal-info h2{
    font-size: 21px;
  }
.modal-price{
    font-size: 16px;
  }
.modal-description{
    font-size: 15px;
    line-height: 1.56;
  }
.cleaning-calculator{
    margin-top: 20px;
    padding: 14px;
  }
.calculator-kicker{
    font-size: 12px;
  }
.calculator-heading h3{
    font-size: 20px;
    line-height: 1.26;
  }
.calculator-heading p{
    font-size: 14px;
    line-height: 1.5;
  }
.calculator-tab{
    min-height: 42px;
    padding: 8px;
    font-size: 13px;
  }
.calculator-field > span{
    font-size: 13px;
  }
.calculator-input-wrap input,
.calculator-field select{
    min-height: 48px;
    height: 48px;
    padding: 0 13px;
    font-size: 16px;
  }
.calculator-metric{
    padding: 12px;
  }
.calculator-metric span{
    font-size: 13px;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    -webkit-hyphens: auto;
    hyphens: auto;
  }
.calculator-metric strong{
    font-size: 18px;
  }
.calculator-tax-note{
    font-size: 13px;
    line-height: 1.48;
  }
.calculator-custom{
    padding: 15px;
  }
.calculator-custom strong{
    font-size: 16px;
  }
.calculator-custom span{
    font-size: 13px;
  }
.calculator-disclaimer{
    font-size: 12px !important;
    line-height: 1.5 !important;
  }
}
.calculator-addons{
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  min-width: 0;
}
.calculator-addons legend{
  margin: 0 0 8px;
  padding: 0;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--color-text);
}
.calculator-addon-list{
  display: grid;
  gap: 8px;
}
.calculator-addon-list--tiles{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.calculator-addon{
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid var(--color-border);
  border-radius: 11px;
  background: var(--color-background);
  color: var(--color-text);
  cursor: pointer;
}
.calculator-addon input{
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--color-primary);
}
.calculator-addon span{
  min-width: 0;
  font-size: 14px;
  line-height: 1.35;
}
.calculator-addon strong{
  margin-left: auto;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 650;
  color: var(--color-text-secondary);
}
.calculator-addon--compact{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 54px;
  padding: 10px 9px;
  text-align: center;
  transition: background-color 0.10s ease, border-color 0.10s ease, box-shadow 0.10s ease;
}
.calculator-addon--compact input[type="checkbox"]{
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}
.calculator-addon--compact span{
  min-width: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
  width: 100%;
  text-align: center;
}
.calculator-addon--compact strong{
  margin-left: auto;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.25;
  white-space: nowrap;
}
@media  (hover: hover) and (pointer: fine){
.calculator-addon--compact:hover{
    border-color: rgba(var(--color-teal-500-rgb), 0.55);
  }
}
.calculator-addon--compact:has(input:checked){
  border-color: var(--color-primary);
  background: rgba(var(--color-teal-500-rgb), 0.20);
  box-shadow: inset 0 0 0 1px rgba(var(--color-teal-500-rgb), 0.10);
}
.calculator-addon--compact:has(input:checked) span{
  color: var(--color-text);
}
.calculator-addon--compact{
  -webkit-tap-highlight-color: transparent;
}
.calculator-addon--compact:has(input:focus-visible){
  outline: none;
}
@media  (hover: hover) and (pointer: fine){
.calculator-addon--compact:has(input:focus-visible){
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }
}
@media  (max-width: 420px){
.calculator-addon--compact span{
    font-size: 13px;
  }
}
.calculator-toggle-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 11px;
  background: var(--color-background);
}
.calculator-toggle-row__label{
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text);
}
.calculator-switch{
  position: relative;
  display: inline-flex;
  width: 42px;
  height: 24px;
  flex: 0 0 auto;
}
.calculator-switch input{
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
}
.calculator-switch__slider{
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.08);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.calculator-switch__slider::after{
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease;
}
.calculator-switch input:checked + .calculator-switch__slider{
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.calculator-switch input:checked + .calculator-switch__slider::after{
  transform: translateX(18px);
}
.calculator-switch input:focus-visible + .calculator-switch__slider{
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
@media  (max-width: 420px){
.calculator-addons legend,
.calculator-toggle-row__label{
    font-size: 13px;
  }
.calculator-addon-list--tiles{
    gap: 6px;
  }
.calculator-addon--compact{
    gap: 4px;
    min-height: 52px;
    padding: 8px 7px;
  }
.calculator-addon--compact span{
    font-size: 13px;
  }
.calculator-addon--compact strong{
    font-size: 11px;
  }
}
@media  (max-width: 430px){
.profile-info .business-name{
    font-size: var(--font-size-3xl);
  }
.profile-info > .phone-number{
    font-size: var(--font-size-lg);
  }
}
.calculator-disclaimer{
  margin-bottom: 16px !important;
}
.gift-card-banner{
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "icon content"
    "icon cta";
  column-gap: var(--space-16);
  row-gap: var(--space-10);
  align-items: center;
  padding: var(--space-20);
  margin-top: var(--space-4);
  border: 1px solid rgba(255, 207, 51, 0.42);
  border-radius: var(--radius-base);
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 215, 64, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(33, 128, 141, 0.16), rgba(255, 207, 51, 0.06)),
    var(--color-surface);
  color: var(--color-text);
  text-decoration: none;
  overflow: hidden;
  transition: border-color var(--duration-fast) var(--ease-standard),
              box-shadow var(--duration-fast) var(--ease-standard);
}
.gift-card-banner:hover{
  border-color: rgba(255, 207, 51, 0.72);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.gift-card-banner:focus-visible{
  outline: var(--focus-outline);
  outline-offset: 2px;
}
.gift-card-icon{
  grid-area: icon;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 207, 51, 0.13);
  border: 1px solid rgba(255, 207, 51, 0.28);
  font-size: 36px;
  line-height: 1;
}
.gift-card-content{
  grid-area: content;
  min-width: 0;
}
.gift-card-label{
  margin-bottom: var(--space-4);
  color: #f4cf32;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
}
.gift-card-content h3{
  margin: 0 0 var(--space-4);
  color: var(--color-text);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
}
.gift-card-content p{
  margin: 0;
  padding: 0;
  color: var(--color-text-secondary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: 1.4;
}
.gift-card-content p strong{
  color: var(--color-text);
  font-weight: var(--font-weight-semibold);
}
.gift-card-cta{
  grid-area: cta;
  width: fit-content;
  color: #f4cf32;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.02em;
}
.gift-card-cta span{
  display: inline-block;
  margin-left: var(--space-4);
  transition: transform var(--duration-fast) var(--ease-standard);
}
.gift-card-banner:hover .gift-card-cta span{
  transform: translateX(3px);
}
.gift-card-banner{
    border-color: rgba(168, 117, 15, 0.28);
    background:
      radial-gradient(circle at 92% 18%, rgba(245, 158, 11, 0.10), transparent 34%),
      linear-gradient(135deg, rgba(33, 128, 141, 0.08), rgba(245, 158, 11, 0.06)),
      var(--color-surface);
  }
.gift-card-label,
.gift-card-cta{
    color: #9a6700;
  }
.gift-card-icon{
    background: rgba(245, 158, 11, 0.10);
    border-color: rgba(168, 117, 15, 0.20);
  }
@media  (max-width: 480px){
.gift-card-banner{
    grid-template-columns: auto minmax(0, 1fr);
    padding: var(--space-16);
    column-gap: var(--space-12);
  }
.gift-card-icon{
    width: 54px;
    height: 54px;
    border-radius: 15px;
    font-size: 31px;
  }
.gift-card-content h3{
    font-size: var(--font-size-lg);
  }
.gift-card-content p,
.gift-card-cta{
    font-size: var(--font-size-sm);
  }
}
.profile-section{
  background:
    radial-gradient(
      ellipse 72% 36% at 50% 31%,
      rgba(33, 128, 141, 0.11) 0%,
      rgba(33, 128, 141, 0.05) 42%,
      transparent 72%
    ),
    var(--color-background);
}
.profile-pic{
  box-shadow:
    var(--shadow-md),
    0 0 0 1px rgba(33, 128, 141, 0.11),
    0 0 34px rgba(33, 128, 141, 0.18);
}
:root{
  --color-background: #e8f6fb;
  --color-surface: #fbfdfe;
  --color-text: #102f37;
  --color-text-secondary: #51666d;
  --color-primary: #126f79;
  --color-primary-hover: #0e626b;
  --color-primary-active: #0a555d;
  --color-warning: #a4512e;
  --color-border: rgba(18, 111, 121, 0.18);
  --color-card-border: rgba(18, 111, 121, 0.20);
  --color-card-border-inner: rgba(18, 111, 121, 0.14);
}
.profile-section{
  background:
    radial-gradient(
      ellipse 76% 38% at 50% 30%,
      rgba(33, 128, 141, 0.16) 0%,
      rgba(50, 184, 198, 0.075) 43%,
      transparent 73%
    ),
    var(--color-background);
}
.profile-pic{
  box-shadow:
    0 5px 14px rgba(19, 52, 59, 0.10),
    0 0 0 1px rgba(18, 111, 121, 0.15),
    0 0 40px rgba(33, 128, 141, 0.22);
}
.catalog-item{
  background: #fbfdfe;
  border-color: rgba(18, 111, 121, 0.20);
  box-shadow: 0 2px 8px rgba(19, 52, 59, 0.075);
}
.catalog-item:hover{
  box-shadow: 0 5px 14px rgba(19, 52, 59, 0.10);
}
.catalog-price{
  color: #a34d2d;
}
.catalog-header h2,
.about-section h2,
.business-name{
  color: #102f37;
}
.about-section > p{
  color: #435a61;
}
.hours-header{
  background: #fbfdfe;
  border-color: rgba(18, 111, 121, 0.20);
  box-shadow: 0 1px 5px rgba(19, 52, 59, 0.055);
}
.gift-card-banner{
  border-color: rgba(156, 105, 0, 0.38);
  background:
    radial-gradient(circle at 92% 18%, rgba(245, 158, 11, 0.15), transparent 35%),
    linear-gradient(135deg, rgba(33, 128, 141, 0.10), rgba(245, 158, 11, 0.08)),
    #fbfdfe;
  box-shadow: 0 2px 9px rgba(19, 52, 59, 0.055);
}
.gift-card-label,
.gift-card-cta{
  color: #8a5b00;
}
.gift-card-icon{
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(156, 105, 0, 0.27);
}
.gift-card-content p{
  color: #536970;
}
.gift-card-content p strong{
  color: #173941;
}
.catalog-section,
.about-section{
  border-top-color: rgba(18, 111, 121, 0.16);
}
.catalog-item,
.hours-header{
  background: #f1f9fc;
}
.footer{
  background: #eef8fc;
}
.language-switch{
  background: #eef8fc;
  border-top-color: rgba(18, 111, 121, 0.16);
}
.modal-content,
.modal-header,
.modal-footer{
  background: #e3f2f7;
}
.modal-content{
  border-color: rgba(18, 111, 121, 0.18);
}
.cleaning-calculator{
  background: #f0f8fb;
  border-color: rgba(18, 111, 121, 0.22);
  box-shadow: 0 2px 8px rgba(19, 52, 59, 0.045);
}
.calculator-tabs,
.calculator-result{
  background: #e8f4f8;
}
.calculator-input-wrap input,
.calculator-field select{
  background: #edf7fa;
}
.calculator-disclaimer--equipment{
  margin-top: var(--space-12);
  margin-bottom: 0;
}
.catalog-item:focus-visible{
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}
.cleaning-calculator:has(.calculator-disclaimer--equipment){
  padding-bottom: 8px;
}
.calculator-disclaimer--equipment{
  margin: 10px 2px 0 !important;
}
.calculator-hourly-rate{
  color: #ffd700;
}
.calculator-vat-line{
  display: inline-block;
  margin-top: 2px;
}
.calculator-hourly-rate{
    color: var(--color-warning);
  }
.calculator-hourly-rate{
  color: var(--color-warning);
}
.calculator-metric strong .calculator-hourly-rate{
  display: inline;
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: #ffd700;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  -webkit-hyphens: none;
  hyphens: none;
}
.calculator-vat-line{
  color: #ffd700;
}
.calculator-vat-line{
    color: var(--color-warning);
  }
.calculator-vat-line{
  color: var(--color-warning);
}
.calculator-metric strong .calculator-hourly-rate{
  color: #ffd700 !important;
}
.calculator-metric strong .calculator-hourly-rate{
    color: var(--color-warning) !important;
  }
.calculator-metric strong .calculator-hourly-rate{
  color: var(--color-warning) !important;
}
.calculator-disclaimer--minimum + .calculator-disclaimer--equipment{
  margin-top: -13px !important;
}
.profile-info .business-name{
  font-size: 33px;
  line-height: 1.05;
}
@media  (max-width: 480px){
.profile-info .business-name{
    font-size: 31px;
  }
}
.profile-info > .phone-number{
  font-size: 17px;
}
@media  (max-width: 480px){
.profile-info > .phone-number{
    font-size: 17px;
  }
}
.about-person{
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 12px 0;
}
.about-person .about-person-photo{
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid var(--color-surface);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.12),
    0 0 0 1px var(--color-card-border);
}
.about-person h2{
  margin: 0;
}
@media  (max-width: 480px){
.about-person{
    gap: 12px;
    margin-bottom: 10px;
  }
.about-person .about-person-photo{
    width: 70px;
    height: 70px;
    flex-basis: 70px;
  }
}
.about-person-copy{
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.about-person-copy h2{
  margin: 0;
}
.about-person-role{
  display: block;
  margin-top: 3px;
  color: var(--color-text-secondary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  line-height: 1.25;
}
@media  (max-width: 480px){
.about-person-role{
    font-size: var(--font-size-sm);
  }
}
.about-person-role,
.gift-card-content p{
  font-family: inherit;
  font-size: 15px;
  line-height: 1.55;
  font-weight: var(--font-weight-normal);
}
.gift-card-content p strong{
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: var(--font-weight-bold);
}
@media  (max-width: 430px){
.about-person-role,
.gift-card-content p{
    font-size: 14px;
    line-height: 1.5;
  }
}
img{
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}
.catalog-item{
  text-decoration: none;
  color: inherit;
}
.catalog-price,
.modal-price,
.service-page__price{
  color: #8b3a46 !important;
}
body.service-page-body{
  margin: 0;
  min-height: 100vh;
  background: var(--color-background);
  color: var(--color-text);
}
.service-site-header{
  background: var(--color-background);
  border-bottom: 1px solid var(--color-border);
}
.service-site-header__inner{
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.service-site-brand{
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--color-text);
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
}
.service-site-brand img{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.service-site-actions{
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-site-actions a{
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  padding: 9px 12px;
  border-radius: 999px;
}
.service-site-actions .service-site-actions__wa{
  color: #fff;
  background: #075e54;
}
.service-page-shell{
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 22px 42px;
}
.service-page-back{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.service-page__grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}
.service-page__intro,
.service-page__calculator-card{
  min-width: 0;
}
.service-page__image{
  width: 100%;
  aspect-ratio: 1000 / 665;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--color-card-border);
  box-shadow: var(--shadow-sm);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.service-page__copy{
  padding: 18px 2px 0;
}
.service-page__copy h1{
  margin: 0 0 6px;
  color: var(--color-text);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.service-page__price{
  margin: 0 0 18px;
  color: var(--color-warning);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}
.service-page__description{
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.7;
}
.service-page__calculator-card{
  border-radius: 16px;
}
.service-page__calculator-card .cleaning-calculator{
  margin: 0;
}
.service-page__cta{
  width: 100%;
  margin-top: 14px;
  box-sizing: border-box;
  justify-content: center;
}
.service-page__office-note{
  background: var(--color-surface);
  border: 1px solid var(--color-card-border);
  border-radius: 14px;
  padding: 20px;
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.65;
}
.service-page__office-note strong{
  color: var(--color-text);
}
.service-page-footer{
  border-top: 1px solid var(--color-border);
  background: var(--color-background);
}
.service-page-footer__inner{
  max-width: 1080px;
  margin: 0 auto;
  padding: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  color: var(--color-text-secondary);
  font-size: 13px;
}
.service-page-footer a{
  color: var(--color-primary);
  text-decoration: none;
}
@media  (min-width: 960px){
.service-page__grid{
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
    gap: 34px;
    align-items: start;
  }
.service-page__calculator-card{
    position: sticky;
    top: 24px;
  }
}
@media  (max-width: 620px){
.service-site-header__inner{
    padding: 12px 16px;
  }
.service-site-brand{
    font-size: 20px;
  }
.service-site-brand img{
    width: 42px;
    height: 42px;
  }
.service-site-actions a:not(.service-site-actions__wa){
    display: none;
  }
.service-page-shell{
    padding: 18px 14px 32px;
  }
.service-page__copy h1{
    font-size: 30px;
  }
.service-page__description{
    font-size: 15px;
  }
}
.service-page__copy h1{
  font-size: clamp(24px, 2.2vw, 28px);
  line-height: 1.14;
  letter-spacing: -0.015em;
}
.service-page__price{
  color: #8b3a46 !important;
}
.service-page__cta{
  width: min(100%, 460px);
  max-width: 460px;
  margin: 18px auto 0;
  display: flex;
}
@media  (max-width: 620px){
.service-page__copy h1{
    font-size: 24px;
  }
}
.service-page__copy h1{
  font-size: clamp(26px, 2.25vw, 30px);
}
.service-page__price{
  font-size: 17px;
  line-height: 1.3;
  margin-bottom: 16px;
}
@media  (max-width: 620px){
.service-page__copy h1{
    font-size: 25px;
  }
.service-page__price{
    font-size: 16px;
  }
}
@media  (orientation: landscape) and (min-width: 700px){
.service-page__grid{
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
    column-gap: 34px;
    row-gap: 16px;
    align-items: start;
  }
.service-page__intro{
    display: contents;
  }
.service-page__image{
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
  }
.service-page__copy{
    grid-column: 2;
    grid-row: 1;
    padding: 0;
  }
.service-page__calculator-card{
    grid-column: 2;
    grid-row: 2;
    position: static;
  }
.service-page__description{
    font-size: 15px;
    line-height: 1.58;
  }
}
:root{
  --color-background: #dfeef4;
  --color-surface: #f5fafc;
  --color-text: #0f2f37;
  --color-text-secondary: #48606a;
  --color-primary: #0f6c75;
  --color-primary-hover: #0c6068;
  --color-primary-active: #09545c;
  --color-border: rgba(15, 108, 117, 0.22);
  --color-card-border: rgba(15, 108, 117, 0.22);
  --color-card-border-inner: rgba(15, 108, 117, 0.17);
}
.catalog-item,
.hours-header{
  background: #ecf5f9;
  border-color: rgba(15, 108, 117, 0.22);
}
.footer,
.language-switch{
  background: #e8f2f6;
}
.modal-content,
.modal-header,
.modal-footer{
  background: #dceaf0;
}
.cleaning-calculator{
  background: #ebf4f8;
  border-color: rgba(15, 108, 117, 0.24);
}
.calculator-tabs,
.calculator-result{
  background: #e3eef3;
}
.calculator-input-wrap input,
.calculator-field select{
  background: #e8f1f5;
}
.about-section > p,
.service-page__description,
.gift-card-content p,
.about-person-role{
  color: #48606a;
}
.gift-card-banner{
  border-color: rgba(156, 105, 0, 0.42);
  background:
    radial-gradient(circle at 92% 18%, rgba(245, 158, 11, 0.17), transparent 36%),
    linear-gradient(135deg, rgba(33, 128, 141, 0.12), rgba(245, 158, 11, 0.10)),
    #f6fafb;
}
.catalog-price,
.modal-price,
.service-page__price,
.calculator-vat-line,
.calculator-metric strong .calculator-hourly-rate{
  color: #7b3041 !important;
}
.profile-section.home-hero-v27{
  padding: 0 !important;
  margin: 0 !important;
  background: var(--color-background);
  border-bottom: 1px solid var(--color-border) !important;
  overflow: visible !important;
}
.home-topbar-v27{
  width: 100%;
  min-height: 76px;
  box-sizing: border-box;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-background);
}
.home-brand-v27{
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 11px;
  color: var(--color-text);
  text-decoration: none;
  font-size: 23px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.home-brand-v27 img{
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.home-whatsapp-v27{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 17px;
  border-radius: 999px;
  background: #075e54;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  box-shadow: 0 2px 8px rgba(7,94,84,.13);
}
.home-whatsapp-v27:hover,
.home-whatsapp-v27:focus,
.home-whatsapp-v27:active,
.home-whatsapp-v27:visited{
  color: #fff;
  background: #075e54;
}
.home-hero-media-v27{
  width: calc(100% - 32px);
  max-width: 1160px;
  height: clamp(235px, 38vw, 355px);
  margin: 16px auto 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--color-card-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}
.home-hero-media-v27 img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}
.home-hero-copy-v27{
  width: calc(100% - 40px);
  max-width: 880px;
  margin: 0 auto;
  padding: 18px 0 22px;
  text-align: center;
}
.home-hero-copy-v27 h1{
  margin: 0;
  color: var(--color-text);
  font-size: clamp(23px, 3vw, 31px);
  line-height: 1.14;
  letter-spacing: -0.025em;
  font-weight: 700;
}
.home-hero-copy-v27 p{
  margin: 8px auto 0;
  max-width: 720px;
  color: var(--color-text-secondary);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.55;
  font-weight: 400;
}
@media  (max-width: 430px){
.home-topbar-v27{
    min-height: 70px;
    padding: 10px 14px;
  }
.home-brand-v27{
    gap: 9px;
    font-size: 21px;
  }
.home-brand-v27 img{
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
.home-whatsapp-v27{
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }
.home-hero-media-v27{
    width: calc(100% - 24px);
    height: 245px;
    margin-top: 12px;
    border-radius: 10px;
  }
.home-hero-copy-v27{
    width: calc(100% - 32px);
    padding: 16px 0 18px;
  }
.home-hero-copy-v27 h1{
    font-size: 23px;
  }
.home-hero-copy-v27 p{
    margin-top: 7px;
    font-size: 14px;
    line-height: 1.48;
  }
}
@media  (min-width: 768px){
.home-topbar-v27{
    min-height: 82px;
    padding: 14px 24px;
  }
.home-brand-v27{
    font-size: 24px;
  }
.home-brand-v27 img{
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
.home-whatsapp-v27{
    min-height: 42px;
    padding-inline: 20px;
  }
.home-hero-media-v27{
    width: calc(100% - 48px);
    margin-top: 20px;
  }
.home-hero-copy-v27{
    padding: 20px 0 26px;
  }
}
.home-topbar-v27{
  position: static;
}
.home-brand-v27 span{
  position: relative;
  top: 1px;
}
.home-hero-copy-v29{
  padding-top: 15px;
}
.home-hero-meta-v29{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 0 0 12px;
}
.home-service-badge-v29{
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid var(--color-warning);
  border-radius: 999px;
  background: rgba(255, 140, 66, 0.10);
  color: var(--color-warning);
  font-size: 13px;
  line-height: 1;
  font-weight: var(--font-weight-semibold);
}
.home-hero-meta-v29 .status-info{
  display: inline-flex;
  margin: 0;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}
@media  (max-width: 430px){
.home-brand-v27{
    font-size: 22px;
  }
.home-hero-copy-v29{
    padding-top: 14px;
  }
.home-hero-meta-v29{
    gap: 7px 10px;
    margin-bottom: 11px;
  }
.home-service-badge-v29,
.home-hero-meta-v29 .status-info{
    font-size: 12px;
  }
.home-service-badge-v29{
    min-height: 27px;
    padding-inline: 9px;
  }
}
@media  (min-width: 431px) and (max-width: 767px){
.home-brand-v27{
    font-size: 24px;
  }
}
@media  (min-width: 768px){
.home-brand-v27{
    font-size: 25px;
  }
.home-hero-meta-v29{
    margin-bottom: 13px;
  }
.home-service-badge-v29,
.home-hero-meta-v29 .status-info{
    font-size: 14px;
  }
}
.home-hero-meta-v29{
  flex-direction: column;
  gap: 7px;
}
@media  (max-width: 430px){
.home-hero-meta-v29{
    gap: 6px;
  }
}
.home-hero-media-v27{
  height: clamp(270px, 44vw, 440px);
}
.home-hero-copy-v31{
  padding-top: 14px;
  padding-bottom: 24px;
}
.home-hero-copy-v31 p{
  margin-top: 0;
  max-width: 760px;
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.55;
}
.home-call-button-v31{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 14px;
  border: 1px solid var(--color-card-border);
  background: var(--color-surface);
  color: var(--color-primary);
  text-decoration: none;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-sm);
}
.home-call-button-v31:hover,
.home-call-button-v31:focus,
.home-call-button-v31:active,
.home-call-button-v31:visited{
  color: var(--color-primary);
  text-decoration: none;
}
@media  (max-width: 430px){
.home-hero-media-v27{
    height: 270px;
  }
.home-call-button-v31{
    width: 100%;
    max-width: 320px;
    min-height: 46px;
    margin-top: 14px;
    font-size: 15px;
  }
}
@media  (min-width: 768px){
.home-hero-media-v27{
    height: clamp(320px, 36vw, 440px);
  }
.home-call-button-v31{
    min-height: 50px;
    padding-inline: 28px;
  }
}
.catalog-header h2{
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--color-primary);
}
.catalog-header h2{
  color: #075E54;
}
.home-hero-stage-v32{
  position: relative;
  width: 100%;
  min-height: 470px;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-background);
}
.home-hero-stage-v32 .home-hero-media-v27{
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: var(--color-background);
}
.home-hero-stage-v32 .home-hero-media-v27 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: .50;
}
.home-hero-stage-v32::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(232, 246, 251, .78) 0%,
    rgba(232, 246, 251, .52) 46%,
    rgba(232, 246, 251, .12) 100%
  );
}
.home-hero-copy-v32{
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: 100%;
  max-width: 720px;
  min-height: 470px;
  margin: 0;
  padding: 54px 54px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}
.home-hero-copy-v32 .home-hero-meta-v29{
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0 0 18px;
  gap: 8px;
}
.home-hero-copy-v32 .home-service-badge-v29{
  background: rgba(255, 255, 255, .32);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.home-hero-copy-v32 .status-info{
  justify-content: flex-start;
  margin: 0;
  font-size: 15px;
}
.home-hero-copy-v32 h1{
  max-width: 560px;
  margin: 0;
  font-size: clamp(31px, 4.2vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--color-text);
}
.home-hero-copy-v32 p{
  max-width: 590px;
  margin: 18px 0 0;
  font-size: clamp(15px, 1.65vw, 18px);
  line-height: 1.52;
  color: var(--color-text);
}
.home-hero-copy-v32 .home-call-button-v31{
  min-width: 210px;
  margin-top: 22px;
  border: 0;
  border-radius: 14px;
  background: #075e54;
  color: #fff;
  box-shadow: 0 4px 14px rgba(7, 94, 84, .18);
}
.home-hero-copy-v32 .home-call-button-v31:hover,
.home-hero-copy-v32 .home-call-button-v31:focus,
.home-hero-copy-v32 .home-call-button-v31:active,
.home-hero-copy-v32 .home-call-button-v31:visited{
  background: #075e54;
  color: #fff;
}
.catalog-header h2,
.see-on-whatsapp{
  font-family: inherit;
  font-size: 16px;
  line-height: 1.2;
  font-weight: var(--font-weight-semibold);
  letter-spacing: .01em;
}
@media  (max-width: 430px){
.home-hero-stage-v32,
.home-hero-copy-v32{
    min-height: 500px;
  }
.home-hero-stage-v32 .home-hero-media-v27 img{
    object-position: 57% center;
  }
.home-hero-stage-v32::after{
    background: linear-gradient(
      90deg,
      rgba(232, 246, 251, .88) 0%,
      rgba(232, 246, 251, .68) 58%,
      rgba(232, 246, 251, .22) 100%
    );
  }
.home-hero-copy-v32{
    max-width: none;
    padding: 34px 28px 34px;
    justify-content: center;
  }
.home-hero-copy-v32 .home-hero-meta-v29{
    margin-bottom: 16px;
  }
.home-hero-copy-v32 .status-info{
    font-size: 14px;
  }
.home-hero-copy-v32 h1{
    max-width: 340px;
    font-size: 31px;
    line-height: 1.1;
  }
.home-hero-copy-v32 p{
    max-width: 335px;
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.48;
  }
.home-hero-copy-v32 .home-call-button-v31{
    width: 100%;
    max-width: 210px;
    min-height: 46px;
    margin-top: 20px;
    font-size: 16px;
  }
.catalog-header h2,
.see-on-whatsapp{
    font-size: 15px;
  }
}
@media  (min-width: 768px){
.home-hero-stage-v32,
.home-hero-copy-v32{
    min-height: 520px;
  }
.home-hero-copy-v32{
    padding-left: clamp(52px, 7vw, 88px);
  }
}
:root{
  --color-background: #ffffff;
  --color-surface: #ffffff;
  --color-text: #102f37;
  --color-text-secondary: #4b6168;
  --color-primary: #0f6c75;
  --color-primary-hover: #0c6068;
  --color-primary-active: #09545c;
  --color-border: rgba(15, 108, 117, 0.16);
  --color-card-border: rgba(15, 108, 117, 0.18);
  --color-card-border-inner: rgba(15, 108, 117, 0.12);
}
body,
.container,
.profile-section.home-hero-v27,
.home-topbar-v27,
.catalog-section,
.about-section{
  background: #ffffff;
}
.catalog-item,
.hours-header{
  background: #ffffff;
  border-color: rgba(15, 108, 117, 0.18);
}
.footer,
.language-switch{
  background: #f7fafb;
}
.modal-content,
.modal-header,
.modal-footer{
  background: #ffffff;
}
.cleaning-calculator{
  background: #f8fbfc;
}
.calculator-tabs,
.calculator-result,
.calculator-input-wrap input,
.calculator-field select{
  background: #f4f8f9;
}
.home-hero-stage-v32{
  background: #ffffff;
}
.home-hero-stage-v32 .home-hero-media-v27{
  background: #ffffff;
}
.home-hero-stage-v32 .home-hero-media-v27 img{
  opacity: 1;
  object-position: 58% center;
  filter: saturate(.88) contrast(.96) brightness(1.02);
}
.home-hero-stage-v32::after{
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.97) 0%,
    rgba(255,255,255,.93) 28%,
    rgba(255,255,255,.78) 52%,
    rgba(255,255,255,.34) 73%,
    rgba(255,255,255,.08) 100%
  );
}
.home-hero-copy-v32 .home-service-badge-v29{
  background: rgba(255,255,255,.72);
  border-color: #a4512e;
  color: #a4512e;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
@media  (max-width: 430px){
.home-hero-stage-v32,
.home-hero-copy-v32{
    min-height: 565px;
  }
.home-hero-copy-v32{
    padding: 62px 30px 38px;
    justify-content: flex-start;
  }
.home-hero-copy-v32 .home-hero-meta-v29{
    margin-bottom: 17px;
  }
.home-hero-copy-v32 h1{
    max-width: 320px;
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -0.035em;
  }
.home-hero-copy-v32 p{
    max-width: 335px;
    margin-top: 17px;
    font-size: 15px;
    line-height: 1.48;
  }
.home-hero-copy-v32 .home-call-button-v31{
    width: 100%;
    max-width: 220px;
    min-height: 48px;
    margin-top: 20px;
    font-size: 16px;
  }
.home-hero-stage-v32 .home-hero-media-v27 img{
    object-position: 61% center;
  }
.home-hero-stage-v32::after{
    background: linear-gradient(
      90deg,
      rgba(255,255,255,.985) 0%,
      rgba(255,255,255,.95) 34%,
      rgba(255,255,255,.79) 57%,
      rgba(255,255,255,.34) 78%,
      rgba(255,255,255,.08) 100%
    );
  }
}
@media  (max-width: 430px){
.home-hero-stage-v32{
    min-height: 0;
  }
.home-hero-copy-v32{
    min-height: 0;
    padding: 42px 30px 10px;
  }
.home-hero-stage-v32 .home-hero-media-v27 img{
    object-position: 66% center;
  }
.home-hero-stage-v32 .home-hero-media-v27 img{
    object-position: 66% center;
  }
.home-hero-stage-v32::after{
    background: linear-gradient(
      90deg,
      rgba(255,255,255,.90) 0%,
      rgba(255,255,255,.82) 34%,
      rgba(255,255,255,.62) 57%,
      rgba(255,255,255,.24) 78%,
      rgba(255,255,255,.04) 100%
    );
  }
}
.home-hero-copy-v32 .home-hero-meta-v29{
  margin-bottom: 15px;
}
.home-hero-copy-v32 .home-call-button-v31{
  width: auto;
  min-width: 188px;
  min-height: 42px;
  padding: 0 20px;
  margin-top: 18px;
  border-radius: 12px;
  font-size: 14px;
  white-space: nowrap;
}
.home-hero-copy-v32 p{
  text-shadow:
    0 1px 2px rgba(255,255,255,.98),
    0 0 7px rgba(255,255,255,.72);
}
.home-hero-stage-v32::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 105px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.32) 42%,
    rgba(255,255,255,.78) 76%,
    #ffffff 100%
  );
}
.catalog-header h2{
  color: var(--color-text);
}
.catalog-section{
  border-top-color: transparent;
}
@media  (max-width: 430px){
.home-hero-copy-v32{
    padding: 24px 30px 6px;
  }
.home-hero-copy-v32 .home-hero-meta-v29{
    margin-bottom: 14px;
  }
.home-hero-copy-v32 .home-call-button-v31{
    width: auto;
    max-width: none;
    min-width: 188px;
    min-height: 42px;
    margin-top: 16px;
    padding-inline: 18px;
    font-size: 14px;
  }
}
.home-language-switch{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--color-border);
  border-radius: 11px;
  background: var(--color-surface);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.home-lang-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 34px;
  padding: 0 8px;
  border-radius: 8px;
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  font-weight: 650;
  transition: background-color var(--duration-fast) var(--ease-standard),
              color var(--duration-fast) var(--ease-standard);
}
.home-lang-link:hover,
.home-lang-link:focus,
.home-lang-link:visited{
  text-decoration: none;
}
.home-lang-link--active,
.home-lang-link--active:hover,
.home-lang-link--active:focus,
.home-lang-link--active:visited{
  background: var(--color-primary);
  color: #fff;
  pointer-events: none;
}
.home-whatsapp-cta{
  justify-content: flex-start;
  margin-top: 16px;
  margin-bottom: 12px;
}
.home-whatsapp-cta .whatsapp-btn{
  width: auto;
  max-width: none;
  min-height: 38px;
  margin: 0;
  padding: 8px 14px;
  gap: 7px;
  border-radius: 999px;
  background: #075E54;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(7,94,84,.12);
}
.home-whatsapp-cta .whatsapp-btn:hover,
.home-whatsapp-cta .whatsapp-btn:active,
.home-whatsapp-cta .whatsapp-btn:focus,
.home-whatsapp-cta .whatsapp-btn:visited{
  background: #075E54;
  color: #fff;
}
.home-whatsapp-cta .whatsapp-btn .whatsapp-icon{
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.catalog-section{
  padding-top: 27px;
}
@media  (max-width: 430px){
.home-language-switch{
    gap: 2px;
    padding: 3px;
    border-radius: 10px;
  }
.home-lang-link{
    min-width: 34px;
    height: 32px;
    padding-inline: 7px;
    font-size: 12px;
  }
.home-hero-copy-v32{
    padding-bottom: 15px;
  }
.home-whatsapp-cta{
    margin-top: 15px;
    margin-bottom: 11px;
  }
.home-whatsapp-cta .whatsapp-btn{
    min-height: 37px;
    padding: 8px 13px;
    font-size: 13px;
  }
.home-whatsapp-cta .whatsapp-btn .whatsapp-icon{
    width: 17px;
    height: 17px;
    flex-basis: 17px;
  }
.catalog-section{
    padding-top: 26px;
  }
}
.home-language-switch{
  background: #fff;
  border-color: rgba(18,111,121,.18);
}
.home-lang-link{
  color: #52636a;
}
.home-lang-link--active{
  background: #0f6c75;
  color: #fff;
}
.catalog-section{
  padding-top: 19px;
}
@media  (max-width: 430px){
.catalog-section{
    padding-top: 18px;
  }
}
.footer{
  background: var(--color-background);
}
.footer{
  background: #ffffff;
}
.site-footer-v39{
  padding: 22px 18px 24px;
  border-top: 1px solid var(--color-border);
  text-align: center;
}
.site-footer-v39 .site-footer-v39__brand{
  margin: 0;
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.25;
  font-weight: var(--font-weight-semibold);
  letter-spacing: -0.01em;
}
.site-footer-v39 .site-footer-v39__id{
  margin: 5px 0 0;
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 1.4;
}
.site-footer-v39 .site-footer-v39__copyright{
  margin: 11px 0 0;
  color: var(--color-text-secondary);
  font-size: 12px;
  line-height: 1.4;
}
.site-footer-v39 .site-footer-v39__copyright a{
  color: inherit;
  font-weight: var(--font-weight-medium);
  text-decoration: none;
}
.site-footer-v39 .site-footer-v39__copyright a:hover,
.site-footer-v39 .site-footer-v39__copyright a:focus{
  color: var(--color-primary);
  text-decoration: none;
}
@media  (max-width: 430px){
.site-footer-v39{
    padding: 20px 16px 22px;
  }
.site-footer-v39 .site-footer-v39__brand{
    font-size: 16px;
  }
}
.home-brand-v27 span{
  color: #087eae;
}
.home-brand-v27 span{
  color: #087eae;
}
:root{
  --color-text: #102f37;
  --color-text-secondary: #102f37;
}
.about-section > p,
.about-person-role,
.gift-card-content p,
.gift-card-content p strong,
.modal-title,
.modal-close,
.modal-description,
.modal-info h2,
.service-page__description,
.service-page__office-note,
.service-page-footer__inner,
.site-footer-v39 .site-footer-v39__id,
.site-footer-v39 .site-footer-v39__copyright,
.home-lang-link{
  color: #102f37;
  font-family: inherit;
}
.home-lang-link--active,
.home-lang-link--active:hover,
.home-lang-link--active:focus,
.home-lang-link--active:visited{
  color: #fff;
}
.about-section > p,
.about-person-role,
.gift-card-content p,
.gift-card-content p strong,
.modal-title,
.modal-close,
.modal-description,
.modal-info h2,
.calculator-heading p,
.calculator-field > span,
.calculator-metric span,
.calculator-tax-note,
.calculator-custom span,
.calculator-disclaimer,
.calculator-addons legend,
.calculator-addon span,
.calculator-toggle-row__label,
#today-day:not(.today-day-open),
.hours-time,
.hours-toggle,
.hours-item,
.hours-item span,
.site-footer-v39 .site-footer-v39__id,
.site-footer-v39 .site-footer-v39__copyright,
.service-page__description,
.service-page__office-note,
.service-page-footer__inner,
.home-lang-link:not(.home-lang-link--active){
  color: #102f37 !important;
}
.home-lang-link--active,
.home-lang-link--active:hover,
.home-lang-link--active:focus,
.home-lang-link--active:visited{
  color: #fff !important;
}
.site-footer-v39 .site-footer-v39__id,
.site-footer-v39 .site-footer-v39__copyright{
  margin-top: 6px;
}
.home-brand-v27 span{
  color: #0f171a;
}
.home-brand-v27 span{
  color: #0f171a;
}
.home-brand-v27{
  font-size: 24px;
}
.home-brand-v27 span{
  color: #102f37;
}
@media  (max-width: 430px){
.home-brand-v27{
    font-size: 23px;
  }
}
@media  (min-width: 431px) and (max-width: 767px){
.home-brand-v27{
    font-size: 25px;
  }
}
@media  (min-width: 768px){
.home-brand-v27{
    font-size: 26px;
  }
}
.home-brand-v27 span{
  color: #102f37;
}
.site-footer-v39 .site-footer-v39__brand{
  font-weight: var(--font-weight-normal);
}
.site-footer-v39 .site-footer-v39__id,
.site-footer-v39 .site-footer-v39__copyright{
  margin-top: 4px;
}
.catalog-price,
.modal-price,
.service-page__price,
.calculator-vat-line,
.calculator-metric strong .calculator-hourly-rate{
  color: #6f3141 !important;
}
.image-zoom-icon{
  background: rgba(20, 34, 38, 0.56);
  color: rgba(255,255,255,.98);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 1px 3px rgba(15, 30, 34, 0.16);
}
.home-hero-stage-v32::after{
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.985) 0%,
    rgba(255,255,255,.955) 30%,
    rgba(255,255,255,.86) 52%,
    rgba(255,255,255,.50) 72%,
    rgba(255,255,255,.12) 100%
  );
}
.home-hero-copy-v32 p{
  text-shadow:
    0 1px 2px rgba(255,255,255,1),
    0 0 8px rgba(255,255,255,.86);
}
.home-hero-stage-v32::after{
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.95) 0%,
    rgba(255,255,255,.90) 30%,
    rgba(255,255,255,.78) 52%,
    rgba(255,255,255,.40) 72%,
    rgba(255,255,255,.08) 100%
  );
}
@media  (min-width: 768px){
.home-hero-stage-v32::after{
    background: linear-gradient(
      90deg,
      rgba(255,255,255,.90) 0%,
      rgba(255,255,255,.82) 30%,
      rgba(255,255,255,.65) 52%,
      rgba(255,255,255,.30) 72%,
      rgba(255,255,255,.05) 100%
    );
  }
}
.service-site-header-v48{
  background: var(--color-background);
  border-bottom: 1px solid var(--color-border);
}
.service-site-header__inner-v48{
  max-width: 1080px;
  min-height: 82px;
  padding: 14px 24px;
  box-sizing: border-box;
}
.service-home-brand-v48{
  font-size: 26px;
  gap: 11px;
}
.service-home-brand-v48 img{
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.service-language-switch-v48{
  flex: 0 0 auto;
}
@media  (max-width: 620px){
.service-site-header__inner-v48{
    min-height: 70px;
    padding: 10px 14px;
  }
.service-home-brand-v48{
    font-size: 23px;
    gap: 9px;
  }
.service-home-brand-v48 img{
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
}
.service-page-footer-v48{
  background: var(--color-background);
  border-top: 0;
}
.service-page-site-footer-v48{
  max-width: 1080px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media  (min-width: 768px){
.home-hero-stage-v32::after{
    background: linear-gradient(
      90deg,
      rgba(255,255,255,.90) 0%,
      rgba(255,255,255,.82) 30%,
      rgba(255,255,255,.65) 52%,
      rgba(255,255,255,.30) 72%,
      rgba(255,255,255,.05) 100%
    );
  }
}
@media  (min-width: 768px) and (orientation: landscape){
.about-section > .gift-card-banner--landscape{
    width: 100%;
    margin: 0 0 var(--space-20) 0;
    grid-column: auto;
  }
}
.home-hero-stage-v32::after{
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.80) 0%,
    rgba(255,255,255,.70) 30%,
    rgba(255,255,255,.52) 52%,
    rgba(255,255,255,.22) 72%,
    rgba(255,255,255,.03) 100%
  );
}
@media  (min-width: 768px){
.home-hero-stage-v32::after{
    background: linear-gradient(
      90deg,
      rgba(255,255,255,.68) 0%,
      rgba(255,255,255,.56) 30%,
      rgba(255,255,255,.38) 52%,
      rgba(255,255,255,.14) 72%,
      rgba(255,255,255,.015) 100%
    );
  }
}
.home-hero-stage-v32::after{
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.66) 0%,
    rgba(255,255,255,.54) 30%,
    rgba(255,255,255,.36) 52%,
    rgba(255,255,255,.14) 72%,
    rgba(255,255,255,.01) 100%
  );
}
@media  (min-width: 768px){
.home-hero-stage-v32::after{
    background: linear-gradient(
      90deg,
      rgba(255,255,255,.46) 0%,
      rgba(255,255,255,.34) 30%,
      rgba(255,255,255,.20) 52%,
      rgba(255,255,255,.07) 72%,
      rgba(255,255,255,0) 100%
    );
  }
}
@media  (min-width: 768px) and (max-width: 1100px) and (orientation: portrait){
.home-hero-stage-v32,
.home-hero-copy-v32{
    min-height: 390px;
  }
.home-hero-copy-v32{
    max-width: 700px;
    padding: 38px 52px 24px;
    justify-content: flex-start;
  }
.home-hero-copy-v32 .home-hero-meta-v29{
    margin-bottom: 13px;
  }
.home-hero-copy-v32 .status-info{
    font-size: 15px;
  }
.home-hero-copy-v32 h1{
    max-width: 620px;
    font-size: 35px;
    line-height: 1.08;
  }
.home-hero-copy-v32 p{
    max-width: 650px;
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.48;
  }
.home-whatsapp-cta{
    margin-top: 14px;
    margin-bottom: 3px;
  }
.catalog-section{
    padding-top: 14px;
  }
}
@media  (min-width: 768px) and (orientation: landscape){
.home-whatsapp-cta .whatsapp-btn{
    min-height: 42px;
    padding: 9px 16px;
    gap: 8px;
    font-size: 15px;
  }
.home-whatsapp-cta .whatsapp-btn .whatsapp-icon{
    width: 19px;
    height: 19px;
    flex-basis: 19px;
  }
}
@media  (min-width: 768px) and (max-width: 1180px){
.home-hero-stage-v32,
.home-hero-copy-v32{
    min-height: 360px;
  }
.home-hero-copy-v32{
    max-width: 760px;
    padding: 34px 44px 22px;
    justify-content: flex-start;
  }
.home-hero-copy-v32 .home-hero-meta-v29{
    margin-bottom: 12px;
  }
.home-hero-copy-v32 .status-info{
    font-size: 16px;
  }
.home-hero-copy-v32 h1{
    max-width: 700px;
    font-size: clamp(40px, 4.2vw, 50px);
    line-height: 1.06;
  }
.home-hero-copy-v32 p{
    max-width: 690px;
    margin-top: 14px;
    font-size: clamp(17px, 1.8vw, 19px);
    line-height: 1.48;
  }
.home-hero-copy-v32 .home-call-button-v31{
    min-width: 190px;
    min-height: 46px;
    margin-top: 18px;
    font-size: 16px;
  }
.home-whatsapp-cta{
    margin-top: 14px;
    margin-bottom: 2px;
  }
.catalog-section{
    padding-top: 12px;
  }
}
@media  (min-width: 768px) and (max-width: 1180px) and (orientation: landscape){
.home-hero-stage-v32,
.home-hero-copy-v32{
    min-height: 370px;
  }
.home-hero-copy-v32{
    max-width: 640px;
    padding: 30px 34px 20px;
  }
.home-hero-copy-v32 .status-info{
    font-size: 15px;
  }
.home-hero-copy-v32 h1{
    max-width: 560px;
    font-size: clamp(34px, 3.9vw, 42px);
    line-height: 1.05;
  }
.home-hero-copy-v32 p{
    max-width: 560px;
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.46;
  }
.home-hero-copy-v32 .home-call-button-v31{
    min-height: 44px;
    margin-top: 16px;
    font-size: 15px;
  }
}
@media  (min-width: 768px) and (max-width: 1180px){
.home-hero-stage-v32::after{
    background: linear-gradient(
      90deg,
      rgba(255,255,255,.54) 0%,
      rgba(255,255,255,.40) 32%,
      rgba(255,255,255,.24) 56%,
      rgba(255,255,255,.08) 76%,
      rgba(255,255,255,0) 100%
    );
  }
.home-hero-copy-v32 h1,
.home-hero-copy-v32 p,
.home-hero-copy-v32 .status-info{
    text-shadow: 0 1px 0 rgba(255,255,255,.45);
  }
}
@media  (min-width: 768px) and (max-width: 1180px) and (orientation: portrait){
.home-hero-stage-v32,
.home-hero-copy-v32{
    min-height: 300px;
  }
.home-hero-copy-v32{
    max-width: 620px;
    padding: 22px 34px 14px;
    justify-content: flex-start;
  }
.home-hero-copy-v32 .home-hero-meta-v29{
    margin-bottom: 8px;
  }
.home-hero-copy-v32 .status-info{
    font-size: 15px;
  }
.home-hero-copy-v32 h1{
    max-width: 560px;
    font-size: clamp(30px, 4.7vw, 40px);
    line-height: 1.04;
  }
.home-hero-copy-v32 p{
    max-width: 560px;
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.42;
  }
.home-hero-copy-v32 .home-call-button-v31{
    min-width: 182px;
    min-height: 42px;
    margin-top: 14px;
    font-size: 15px;
  }
.home-whatsapp-cta{
    margin-top: 12px;
    margin-bottom: 0;
  }
.catalog-section{
    padding-top: 8px;
  }
}
@media  (min-width: 768px) and (max-width: 1180px) and (orientation: portrait){
.home-hero-stage-v32::after{
    background: linear-gradient(
      90deg,
      rgba(255,255,255,.58) 0%,
      rgba(255,255,255,.44) 30%,
      rgba(255,255,255,.26) 54%,
      rgba(255,255,255,.10) 74%,
      rgba(255,255,255,0) 100%
    );
  }
.home-hero-copy-v32 h1,
.home-hero-copy-v32 p,
.home-hero-copy-v32 .status-info{
    text-shadow: 0 1px 0 rgba(255,255,255,.55), 0 0 10px rgba(255,255,255,.12);
  }
}
@media  (min-width: 600px) and (max-width: 767px) and (orientation: portrait){
.home-hero-stage-v32,
.home-hero-copy-v32{
    min-height: 365px;
  }
.home-hero-copy-v32{
    max-width: 620px;
    padding: 28px 34px 18px;
    justify-content: flex-start;
  }
.home-hero-copy-v32 .home-hero-meta-v29{
    margin-bottom: 9px;
  }
.home-hero-copy-v32 .status-info{
    font-size: 15px;
  }
.home-hero-copy-v32 h1{
    max-width: 570px;
    font-size: clamp(31px, 4.7vw, 36px);
    line-height: 1.05;
  }
.home-hero-copy-v32 p{
    max-width: 570px;
    margin-top: 11px;
    font-size: 16px;
    line-height: 1.43;
  }
.home-hero-copy-v32 .home-call-button-v31{
    min-width: 182px;
    min-height: 42px;
    margin-top: 14px;
    font-size: 15px;
  }
.home-whatsapp-cta{
    margin-top: 12px;
    margin-bottom: 0;
  }
.catalog-section{
    padding-top: 9px;
  }
.catalog-item img{
    height: 200px;
    object-fit: cover;
  }
}
@media  (min-width: 768px) and (max-width: 1180px) and (orientation: portrait){
.catalog-item img{
    height: 220px;
    object-fit: cover;
  }
}
@media  (min-width: 600px) and (max-width: 767px) and (orientation: portrait){
.home-hero-stage-v32::after{
    background: linear-gradient(
      90deg,
      rgba(255,255,255,.58) 0%,
      rgba(255,255,255,.44) 30%,
      rgba(255,255,255,.26) 54%,
      rgba(255,255,255,.10) 74%,
      rgba(255,255,255,0) 100%
    );
  }
.home-hero-copy-v32 h1,
.home-hero-copy-v32 p,
.home-hero-copy-v32 .status-info{
    text-shadow: 0 1px 0 rgba(255,255,255,.55), 0 0 8px rgba(255,255,255,.10);
  }
}
@media  (min-width: 768px) and (max-width: 1180px) and (orientation: portrait){
.home-hero-stage-v32,
.home-hero-copy-v32{
    min-height: 365px;
  }
}
@media  (min-width: 768px) and (max-width: 1180px){
.home-hero-copy-v32 p{
    font-size: clamp(17px, 1.9vw, 19px);
    line-height: 1.46;
    font-weight: 500;
    letter-spacing: -0.005em;
  }
.home-hero-copy-v32 .status-info{
    font-weight: 600;
    letter-spacing: -0.01em;
  }
}
@media  (min-width: 600px) and (max-width: 767px) and (orientation: portrait){
.home-hero-copy-v32 p{
    font-size: 16.5px;
    line-height: 1.44;
    font-weight: 500;
    letter-spacing: -0.005em;
  }
.home-hero-copy-v32 .status-info{
    font-weight: 600;
    letter-spacing: -0.01em;
  }
}
@media  (min-width: 768px) and (max-width: 1180px){
.home-hero-copy-v32 p,
.home-hero-copy-v32 .status-info{
    color: #173641;
    text-shadow:
      0 1px 2px rgba(255,255,255,.94),
      0 0 10px rgba(255,255,255,.24);
  }
}
@media  (min-width: 600px) and (max-width: 767px) and (orientation: portrait){
.home-hero-copy-v32 p,
.home-hero-copy-v32 .status-info{
    color: #173641;
    text-shadow:
      0 1px 2px rgba(255,255,255,.94),
      0 0 10px rgba(255,255,255,.22);
  }
}
.home-hero-copy-v32 p{
  font-weight: 500;
  letter-spacing: -0.005em;
}
.home-hero-copy-v32 .status-info{
  font-weight: 600;
  letter-spacing: -0.01em;
}
@media  (max-width: 599px){
.home-hero-copy-v32 p{
    font-size: 16px;
    line-height: 1.46;
  }
}
.home-hero-copy-v32 p{
  color: #173641;
  text-shadow:
    0 1px 2px rgba(255,255,255,.94),
    0 0 10px rgba(255,255,255,.24);
}
.home-hero-copy-v32 .status-info.closed{
  color: var(--color-error) !important;
}
.home-hero-copy-v32 .status-info.open{
  color: #25D366 !important;
}
.home-hero-copy-v32 .status-info.open{
  color: #2B8A45 !important;
}
.hours-time.today-time-closed{
  color: var(--color-error) !important;
}
@media  (max-width: 599px){
.home-hero-copy-v32 p{
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.46;
    letter-spacing: -0.002em;
  }
}
.home-language-switch{
  gap: 2px;
  padding: 2px;
  border-radius: 8px;
}
.home-lang-link{
  min-width: 25px;
  height: 26px;
  padding: 0 3px;
  border-radius: 6px;
  font-size: 11px;
  line-height: 1;
}
@media  (max-width: 430px){
.home-language-switch{
    gap: 2px;
    padding: 2px;
    border-radius: 8px;
  }
.home-lang-link{
    min-width: 25px;
    height: 26px;
    padding-inline: 3px;
    border-radius: 6px;
    font-size: 11px;
  }
}
.image-zoom-icon{
  top: 14px;
  right: 14px;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #2f80ed;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.03em;
  text-shadow: 0 1px 3px rgba(0,0,0,.12);
}
@media  (max-width: 430px){
.image-zoom-icon{
    top: 12px;
    right: 12px;
    font-size: 28px;
  }
}
.image-zoom-icon{
  font-size: 21px;
  top: 13px;
  right: 13px;
}
@media  (max-width: 430px){
.image-zoom-icon{
    font-size: 20px;
    top: 12px;
    right: 12px;
  }
}
.image-zoom-icon{
  font-size: 19px;
  top: 14px;
  right: 22px;
  text-shadow: 0 1px 6px rgba(0,0,0,.38), 0 0 1px rgba(0,0,0,.16);
}
@media  (max-width: 430px){
.image-zoom-icon{
    font-size: 18px;
    top: 13px;
    right: 20px;
  }
}
.image-zoom-icon{
  right: 26px;
  font-size: 18px;
  text-shadow: 0 1px 6px rgba(0,0,0,.42), 0 0 1px rgba(0,0,0,.20);
}
@media  (max-width: 430px){
.image-zoom-icon{
    right: 24px;
    font-size: 18px;
  }
}
.catalog-item{
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: transparent;
  border: 1px solid rgba(27, 52, 73, 0.14);
  box-shadow: 0 6px 18px rgba(20, 35, 49, 0.06);
}
.catalog-item .card-image-wrapper{
  position: relative;
  aspect-ratio: 1000 / 650;
  min-height: 224px;
  height: auto;
}
.catalog-item .card-image-wrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.97) saturate(.98) contrast(1.02);
}
.catalog-item .card-image-wrapper::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(12, 20, 28, .10) 0%,
    rgba(12, 20, 28, .12) 40%,
    rgba(12, 20, 28, .20) 64%,
    rgba(12, 20, 28, .66) 100%
  );
}
.catalog-item h3.catalog-title{
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 52px 18px 16px;
  background: linear-gradient(
    to top,
    rgba(12, 20, 28, .76) 0%,
    rgba(12, 20, 28, .34) 54%,
    rgba(12, 20, 28, 0) 100%
  );
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0,0,0,.18);
}
.catalog-item .catalog-price{
  flex: 0 0 auto;
  color: #8b3a46 !important;
  text-shadow: none;
}
.catalog-item .image-zoom-icon{
  z-index: 4;
  color: #2f80ed;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.catalog-item .catalog-price,
.catalog-item .image-zoom-icon{
  color: #2878C8 !important;
}
.modal-img{
  border-radius: var(--radius-base);
}

/* RM Clean white-only brand foundation */
:root {
  color-scheme: light;
}
html, body {
  background: #ffffff;
}

/* Trial: card prices + arrows use the same red as the closed-status accent. */
.catalog-item .catalog-price,
.catalog-item .image-zoom-icon {
  color: var(--color-error) !important;
}


/* ========================================
   V84 — White-only brand consistency polish
   - Restore the original wine/burgundy accent on service-card prices + arrows.
   - Keep the red closed-state treatment introduced in V83.
   - Replace the generic modal header label with the RM Clean brand lockup.
   ======================================== */

/* Original light-mode price accent from the production design. */
.catalog-item .catalog-price,
.catalog-item .image-zoom-icon {
  color: #8b3a46 !important;
}

/* Branded modal header, matching the homepage identity. */
.modal-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--color-text);
  text-decoration: none;
  font-size: 19px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.modal-brand:hover,
.modal-brand:focus,
.modal-brand:active,
.modal-brand:visited {
  color: var(--color-text);
  text-decoration: none;
}

.modal-brand img {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 7px rgba(0,0,0,.08);
}

@media (max-width: 430px) {
  .modal-brand {
    gap: 9px;
    font-size: 18px;
  }

  .modal-brand img {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
}
