@import "https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap";

/* src/styles.scss */
:root {
  --color-primary: #3A2721;
  --color-primary-light: #5A4036;
  --color-primary-dark: #281A16;
  --color-accent: #B88A5A;
  --color-accent-light: #D8B98A;
  --color-sale: #A65D4D;
  --color-background: #FAF7F2;
  --color-surface: #FFFFFF;
  --color-surface-soft: #F4ECE5;
  --color-text: #2E2521;
  --color-text-secondary: #756A63;
  --color-text-light: #A69A91;
  --color-border: #E7DED6;
  --color-border-light: #EFE8E2;
  --color-success: #587A62;
  --color-error: #A65D4D;
  --color-warning: #B88A5A;
  --color-footer: #f5ebe0;
  --shadow-sm: 0 2px 8px rgba(58, 39, 33, 0.06);
  --shadow-md: 0 8px 25px rgba(58, 39, 33, 0.10);
  --shadow-lg: 0 18px 45px rgba(58, 39, 33, 0.16);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --font-body: "Montserrat", sans-serif;
  --font-heading: "Playfair Display", serif;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  transition: background-color 0.25s ease, color 0.25s ease;
}
html {
  direction: ltr;
}
html[dir=ltr] {
  direction: ltr;
}
html[dir=rtl] {
  direction: rtl;
}
body {
  direction: inherit;
  overflow-x: hidden;
}
input,
textarea,
select,
button {
  direction: inherit;
  font-family: var(--font-body);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--color-primary);
  font-family: var(--font-heading);
}
p {
  font-family: var(--font-body);
}
button,
input,
textarea,
select {
  font-family: inherit;
}
app-root {
  display: block;
  min-height: 100vh;
  background: var(--color-background);
}
.app-content {
  min-height: 100vh;
  background: var(--color-background);
}
.form-group {
  width: 100%;
}
.form-label {
  display: block;
  margin-bottom: 7px;
  color: var(--color-text);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: start;
}
.form-label .required {
  margin-inline-start: 3px;
  color: var(--color-error);
}
.form-input,
.form-select,
.form-textarea {
  display: block;
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  outline: none;
  background: var(--color-surface);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.4;
  direction: inherit;
  text-align: start;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-light);
  opacity: 1;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(184, 138, 90, 0.12);
}
.form-input:hover:not(:focus):not(:disabled),
.form-select:hover:not(:focus):not(:disabled),
.form-textarea:hover:not(:focus):not(:disabled) {
  border-color: var(--color-accent-light);
}
.form-input:disabled,
.form-select:disabled,
.form-textarea:disabled {
  background: var(--color-surface-soft);
  color: var(--color-text-light);
  cursor: not-allowed;
  opacity: 0.7;
}
.form-select {
  appearance: none;
  cursor: pointer;
  padding-inline-end: 38px;
  background-color: var(--color-surface);
  background-image:
    linear-gradient(
      45deg,
      transparent 50%,
      var(--color-text-secondary) 50%),
    linear-gradient(
      135deg,
      var(--color-text-secondary) 50%,
      transparent 50%);
  background-position: calc(100% - 18px) 20px, calc(100% - 13px) 20px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
html[dir=rtl] .form-select {
  padding-inline-start: 38px;
  padding-inline-end: 13px;
  background-position: 13px 20px, 18px 20px;
}
.form-select option {
  min-height: 40px;
  padding: 10px;
  background: var(--color-surface);
  color: var(--color-text);
  font-family: var(--font-body);
}
.form-textarea {
  min-height: 100px;
  padding: 12px 13px;
  resize: vertical;
}
.form-input.ng-invalid.ng-touched,
.form-select.ng-invalid.ng-touched,
.form-textarea.ng-invalid.ng-touched {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(166, 93, 77, 0.1);
}
.form-error {
  margin-top: 5px;
  color: var(--color-error);
  font-size: 0.65rem;
  line-height: 1.4;
  text-align: start;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
[dir=rtl] .form-input,
[dir=rtl] .form-select,
[dir=rtl] .form-textarea {
  text-align: right;
}
[dir=ltr] .form-input,
[dir=ltr] .form-select,
[dir=ltr] .form-textarea {
  text-align: left;
}
.mat-mdc-button,
.mat-mdc-raised-button,
.mat-mdc-outlined-button {
  font-family: var(--font-body);
}
.mat-mdc-paginator {
  margin-inline: 4px;
  background: transparent !important;
  color: var(--color-text-secondary);
}
.mat-mdc-paginator-page-size-label,
.mat-mdc-paginator-range-label {
  color: var(--color-text-secondary);
}
.mat-mdc-paginator .mat-mdc-icon-button {
  color: var(--color-primary);
}
.mat-mdc-paginator .mat-mdc-icon-button:disabled {
  color: var(--color-text-light);
}
a {
  color: inherit;
  text-decoration: none;
}
.section-heading {
  margin-bottom: 20px;
  text-align: center;
}
.section-heading h2 {
  margin-bottom: 6px;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
}
.section-heading p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 0.8rem;
}
.carousel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.carousel-arrow:hover {
  background: var(--color-primary);
  color: var(--color-surface);
  transform: scale(1.05);
}
.horizontal-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.horizontal-track::-webkit-scrollbar {
  display: none;
}
.image-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  color: var(--color-text-secondary);
  font-size: 0.85rem;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-15px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.modal-container {
  animation: slideIn 0.3s ease-out;
}
.whatsapp-button {
  position: fixed;
  inset-inline-end: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-button:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.22);
}
[dir=rtl] .text-start {
  text-align: right !important;
}
[dir=ltr] .text-start {
  text-align: left !important;
}
[dir=rtl] .text-end {
  text-align: left !important;
}
[dir=ltr] .text-end {
  text-align: right !important;
}
@media (max-width: 600px) {
  .section-heading h2 {
    font-size: 1.35rem;
  }
  .section-heading p {
    font-size: 0.72rem;
  }
  .carousel-arrow {
    width: 34px;
    height: 34px;
  }
  .whatsapp-button {
    width: 48px;
    height: 48px;
    inset-inline-end: 15px;
    bottom: 15px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .form-input,
  .form-select,
  .form-textarea {
    min-height: 44px;
    font-size: 0.78rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
