/* Pacchcaiss Boutique Monochrome Sophisticated CSS - By Senior UI Designer */

/* =============== CSS RESET & NORMALIZER =============== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, main, nav,
section, article, aside, footer, header, figure, figcaption, details, summary, time, mark {
  margin: 0; padding: 0; border: 0; vertical-align: baseline; box-sizing: border-box;
}
body {
  line-height: 1.5; background: #fff; color: #181A1B;
  min-height: 100vh;
}
article, aside, details, figcaption, figure, footer, header, main, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a { text-decoration: none; color: inherit; }
img, svg {
  max-width: 100%; display: block; vertical-align: middle; height: auto;
}
button, input, select, textarea {
  font: inherit;
}

/* =============== ROOT VARIABLES =============== */
:root {
  --color-bg: #fff;
  --color-bg-alt: #F7F7F7;
  --color-primary: #181A1B;
  --color-secondary: #455A64;
  --color-accent: #FDE9B4;
  --color-gray: #BDBDBD;
  --color-dark-gray: #263238;
  --color-light-gray: #f0f0f0;
  --color-border: #E0E0E0;
  --brand-blue: #8EC6C5;
  --shadow1: 0 2px 8px rgba(38,50,56,0.08);
  --shadow2: 0 4px 24px rgba(38,50,56,0.15);
  --border-radius: 10px;

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

@media (max-width: 420px) {
  :root {
    --border-radius: 7px;
  }
}

/* =============== TYPOGRAPHY =============== */
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-primary);
  background: var(--color-bg);
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-dark-gray);
  margin-bottom: 16px;
}
h1 {
  font-size: 2.7rem;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  line-height: 1.22;
}
h3 {
  font-size: 1.3rem;
  line-height: 1.33;
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.08rem; }
}

p, li, blockquote {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}
strong { font-weight: 600; }
em { font-style: italic; }
blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-dark-gray);
  background: var(--color-light-gray);
  border-left: 4px solid var(--color-dark-gray);
  padding: 16px 22px;
  margin-bottom: 8px;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

ul, ol {
  padding-left: 0;
  margin-bottom: 16px;
}
ul li, ol li {
  padding-left: 0;
  margin-bottom: 10px;
}
h1 + p, h2 + p, h3 + p {
  margin-top: -8px;
}
.text-section ul {
  margin-bottom: 18px;
  padding-left: 15px;
}
.text-section ul li {
  padding-left: 10px;
  position: relative;
}
.text-section ul li:before {
  content: '\2022';
  color: var(--color-blue, #181A1B);
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-weight: bold;
}

/* =============== LAYOUT: CONTAINER, WRAPPERS =============== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg);
}
@media (max-width: 768px) {
  .section {
    padding: 25px 10px;
    margin-bottom: 40px;
  }
  .container {
    padding: 0 10px;
  }
}

/* =============== FLEXBOX PATTERNS =============== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-bg-alt);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow1);
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}
@media (max-width: 480px) {
  .card { min-width: unset; padding: 16px 8px 14px 8px; }
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  box-shadow: var(--shadow1);
  border-radius: var(--border-radius);
  padding: 20px;
  margin-bottom: 20px;
  flex-direction: column;
  min-width: 220px;
  max-width: 520px;
  border: 1.5px solid var(--color-border);
}
.testimonial-author {
  color: var(--color-secondary);
  font-style: italic;
  font-size: 0.97rem;
}
@media (max-width: 600px) {
  .testimonial-card {
    padding: 14px; max-width: 100%;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== CARDS, BANNERS, ICONS ===== */
.card img {
  width: 52px; height: 52px; margin-bottom: 14px;
  filter: grayscale(0.95) contrast(1.3);
}
.social-icons {
  display: flex; flex-direction: row; gap: 20px; margin-top: 16px;
}
.social-icons a img { width: 30px; height: 30px; filter: grayscale(1) contrast(1.8); transition: filter 0.22s; }
.social-icons a:hover img { filter: grayscale(0) contrast(1.2); }

.cta-banner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0 10px 0;
}

/* =============== HEADER =============== */
header {
  background: #fff; box-shadow: 0 1px 12px rgba(0,0,0,0.07);
  z-index: 12; position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 30px;
}
header img[alt="Pacchcaiss Boutique"] {
  height: 44px; min-width: 128px;
  margin-right: 24px; margin-left: 0;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: var(--font-display);
  font-size: 1.09rem;
  color: #333;
  opacity: 0.86;
  padding: 2px 6px;
  border-radius: 5px;
  transition: background 0.18s, color 0.17s;
}
header nav a:hover, header nav a:focus {
  background: var(--color-dark-gray);
  color: #fff;
  opacity: 1;
}
.cta-btn {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  font-size: 1rem;
  padding: 11px 26px;
  border-radius: var(--border-radius);
  border: none;
  transition: background 0.18s, color 0.13s, box-shadow 0.26s;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow1);
  margin-left: 14px;
  outline: none;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: var(--shadow2);
}

@media (max-width: 1023px) {
  header .container {
    gap: 10px;
    flex-wrap: wrap;
  }
  header nav a, .cta-btn {
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  header nav {
    gap: 14px; flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  header nav {
    display: none !important;
  }
  .cta-btn {
    padding: 9px 18px;
    margin-left: 3px;
  }
}

/* =============== MOBILE BURGER MENU =============== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: var(--color-dark-gray);
  cursor: pointer;
  margin-left: 6px;
  z-index: 30;
  position: relative;
  transition: color 0.16s;
}
.mobile-menu-toggle:focus {
  color: var(--brand-blue);
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(38,50,56,0.99);
  transform: translateX(-110vw);
  transition: transform 0.33s cubic-bezier(0.6,0.1,0.23,0.97);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: #fff;
  background: none;
  border: none;
  font-size: 2rem;
  margin: 28px 0 10px 24px;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.14s;
  z-index: 102;
}
.mobile-menu-close:focus, .mobile-menu-close:hover { color: var(--color-accent); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 30px 38px 24px 38px;
  margin-top: 20px;
  width: 100vw;
  overflow-y: auto;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  opacity: 0.93;
  width: 100%;
  padding: 7px 0 7px 18px;
  border-radius: 5px;
  transition: background 0.19s, color 0.15s;
  display: block;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-blue);
  color: var(--color-primary);
  opacity: 1;
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}

/* =============== SECTIONS, LISTS, ICON WRAP =============== */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
section:last-of-type { margin-bottom: 0; }
section .content-wrapper > ul, section .content-wrapper > ol {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
section .content-wrapper > ul > li,
section .content-wrapper > ol > li {
  background: var(--color-bg-alt);
  border: 1.5px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 26px 18px 20px 18px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  box-shadow: var(--shadow1);
  transition: box-shadow 0.19s, border 0.18s;
}
section .content-wrapper > ul > li:hover, section .content-wrapper > ol > li:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow2);
}
section .content-wrapper > ul > li img {
  width: 44px; height: 44px; filter: grayscale(0.85) contrast(1.05); margin-bottom: 10px;
}

@media (max-width: 650px) {
  section .content-wrapper > ul, .content-grid {
    flex-direction: column;
    gap: 17px;
  }
}

.text-section { max-width: 750px; }
.text-section h3 {margin-top:18px;margin-bottom:6px;}

/* =============== BUTTONS & MICRO-INTERACTIONS =============== */
button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.2s, color 0.24s, box-shadow 0.22s, transform 0.13s;
}
button:active, .cta-btn:active, .mobile-menu-toggle:active, .mobile-menu-close:active {
  transform: scale(0.97);
}

/* =============== FOOTER =============== */
footer {
  background: #fff;
  border-top: 2px solid var(--color-border);
  box-shadow: 0 -1px 9px rgba(38, 50, 56, 0.05);
  padding: 38px 0 32px 0;
  margin-top: 60px;
  z-index: 5;
}
footer .container {
  flex-direction: column;
  gap: 19px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 16px;
  font-family: var(--font-display);
}
footer nav a {
  font-size: 1rem;
  opacity: 0.65;
  color: #263238;
  transition: opacity 0.13s, text-decoration 0.15s;
}
footer nav a:hover, footer nav a:focus {
  opacity: 1; text-decoration: underline;
}
.footer-info {
  font-size: 0.99rem;
  color: var(--color-secondary);
}
.footer-info a { color: var(--color-secondary); text-decoration: underline; transition: color 0.14s; }
.footer-info a:hover, .footer-info a:focus { color: var(--brand-blue); }

/* =============== RESPONSIVE =============== */
@media (max-width: 1023px) {
  .container { max-width: 98vw; }
}
@media (max-width: 860px) {
  .container {
    padding: 0 7px;
  }
}
@media (max-width: 700px) {
  .footer-info, footer nav {font-size:0.95rem;}
  footer .container {gap:8px;}
}
@media (max-width: 480px) {
  h1, h2, h3 { text-align: left; }
  .footer-info, .footer nav { font-size: 0.89rem; }
  footer { padding:20px 0 17px 0; margin-top: 30px; }
}

/* =============== FORMS (Contact/Newsletter) =============== */
input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--border-radius);
  border: 1.5px solid var(--color-border);
  background: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
  outline: none;
  color: var(--color-primary);
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--brand-blue);
}
label { font-family: var(--font-display); font-weight: 500; margin-bottom: 6px; display: block; }

/* =============== TESTIMONIALS HIGH CONTRAST =============== */
.testimonial-card {
  background: #fff;
  color: #181A1B;
  border: 1.5px solid #E0E0E0;
  box-shadow: 0 2px 12px rgba(38,50,56,0.11);
}
.testimonial-card blockquote {
  color: #181A1B;
  font-size: 1.08rem;
}

/* =============== COOKIE CONSENT BANNER =============== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #181A1B;
  color: #fff;
  padding: 22px 16px 20px 16px;
  box-shadow: 0 -2px 18px rgba(38,50,56,0.19);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: var(--font-body);
  animation: banner-slide-up 0.4s cubic-bezier(.65,-0.18,.33,1.3);
}
@keyframes banner-slide-up {
  0% { transform: translateY(120%); }
  100% { transform: translateY(0); }
}
.cookie-banner p {
  flex: 1;
  font-size: 0.98rem;
  margin: 0;
  color: #fff;
  opacity: 0.93;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-banner button {
  background: #fff;
  color: var(--color-dark-gray);
  border: none;
  border-radius: var(--border-radius);
  padding: 8px 22px;
  font-family: var(--font-display);
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.16s, color 0.16s, box-shadow 0.19s;
  box-shadow: var(--shadow1);
  outline: none;
}
.cookie-banner button.cookie-settings {
  background: var(--color-accent);
  color: #181A1B;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: var(--shadow2);
}
@media (max-width: 650px) {
  .cookie-banner { flex-direction: column; gap: 15px; padding: 18px 7px 17px 7px; }
  .cookie-banner .cookie-actions { flex-wrap: wrap; gap: 10px; }
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  background: rgba(24,26,27,0.45);
  position: fixed;
  z-index: 10001;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  display: flex;
  align-items: center; justify-content: center;
  animation: fadein 0.24s;
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #fff;
  color: var(--color-primary);
  border-radius: var(--border-radius);
  box-shadow: 0 6px 42px rgba(38, 50, 56, 0.21);
  padding: 34px 32px 22px 32px;
  min-width: 310px;
  max-width: 98vw;
  width: 430px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  font-weight: 700;
}
.cookie-modal .cookie-category {
  margin: 15px 0 13px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.cookie-modal .cookie-category label {
  font-family: var(--font-body); font-size: 1rem; font-style: normal;
}
.cookie-modal .modal-actions {
  display: flex; flex-direction: row; gap: 16px; margin-top: 20px;
  align-items: center; justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  background: var(--color-dark-gray);
  color: #fff;
  border-radius: var(--border-radius);
  border: none;
  padding: 9px 20px;
  font-family: var(--font-display);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.15s;
}
.cookie-modal .modal-actions button:hover, .cookie-modal .modal-actions button:focus {
  background: var(--brand-blue);
  color: #222;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 16px; top: 10px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--color-dark-gray);
  cursor: pointer;
  transition: color 0.13s;
  z-index: 3;
}
.cookie-modal .modal-close:focus, .cookie-modal .modal-close:hover { color: var(--brand-blue); }
@media (max-width: 480px) {
  .cookie-modal {
    padding: 15px 7px 15px 7px;
    min-width: unset; width: 97vw;
  }
  .cookie-modal h2 {font-size:1.07rem;}
}

/* =============== MICROANIMATION (HOVER SHADOWS, ETC) =============== */
.card, .cta-btn, .testimonial-card, section .content-wrapper > ul > li {
  transition: box-shadow 0.22s cubic-bezier(.5,.16,.44,1.17), border 0.19s;
}
.card:hover, .testimonial-card:hover, section .content-wrapper > ul > li:hover, .cta-btn:hover {
  box-shadow: var(--shadow2);
  border-color: var(--brand-blue);
}

a {
  transition: color 0.14s, text-decoration 0.15s, opacity 0.13s;
}
a:focus { outline: 2px solid var(--brand-blue); outline-offset: 1px; }

/* =============== VISUAL HIERARCHY SPACING =============== */
section, .section {
  margin-bottom: 60px !important;
  padding-top: 30px !important;
}
.card, .testimonial-card, .feature-item, section .content-wrapper > ul > li {
  margin-bottom: 20px !important;
}
.section:not(:last-child) { margin-bottom: 60px!important; }
@media (max-width: 700px) {
  section, .section { margin-bottom:30px!important; padding-top:15px!important; }
}

/* =============== ACCESSIBILITY =============== */
a, .cta-btn, button, .mobile-menu-toggle, .mobile-menu-close {
  outline: none;
}
:focus-visible { outline:2px solid var(--brand-blue); outline-offset:2px; }

/* =============== SCROLLBARS (subtle) =============== */
::-webkit-scrollbar {
  width: 9px;
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #c2c2c2;
  border-radius: 6px;
}

/* =============== UTILITY CLASSES =============== */
.hidden { display: none!important; visibility: hidden!important; }
.flex-center { display:flex; align-items:center; justify-content:center; }
.flex-column { display:flex; flex-direction:column; }

/* =============== END OF STYLE.CSS =============== */