/*
Theme Name: Afro Minimalist
Author: Folorunso Davies
Description: An elegant Afro-Minimalist theme combining earthy tones with clean, modern design.
Version: 1.0
*/

/* ============================================
   CSS Variables - Design System
   ============================================ */
:root {
  /* Afro-Minimalist Color Palette */
  --primary-clay: #c06c54; /* Terracotta - buttons/accents */
  --bg-sand: #fdfbf7; /* Main background */
  --text-charcoal: #2c2c2c; /* Headings */
  --text-light: #6d6d6d; /* Body text */
  --bg-white: #ffffff; /* Pure white for cards */
  --accent-sage: #e0e5df; /* Subtle accent background */

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-body: "Montserrat", sans-serif;

  /* Spacing */
  --spacing-section: 4rem;
  --spacing-container: 2rem;
}

@media (max-width: 768px) {
  :root {
    --spacing-section: 2.5rem;
    --spacing-container: 1.25rem;
  }
}

/* ============================================
   Global Resets & Base Styles
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-sand);
  color: var(--text-charcoal);
  font-family: var(--font-body);
  line-height: 1.6;
  padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-charcoal);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  padding: 15px 40px;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
}

.btn--pill {
  background-color: var(--primary-clay);
  color: white;
  border-radius: 50px;
  padding: 15px 40px;
}

.btn--pill:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(192, 108, 84, 0.3);
}

.btn--text {
  padding: 0;
  color: var(--text-charcoal);
  border-bottom: 1px solid var(--text-charcoal);
  border-radius: 0;
}

.btn--text:hover {
  color: var(--primary-clay);
  border-bottom-color: var(--primary-clay);
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background-color: rgba(253, 251, 247, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition:
    background-color 0.3s ease,
    padding 0.3s ease,
    box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-container);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Styling */
.header__logo,
.logo-container a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-charcoal);
}

.logo-container {
  display: flex;
  align-items: center;
}

.custom-logo {
  max-width: 200px;
  height: auto;
}

.header__menu-btn,
.header__action-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  transition: transform 0.2s ease;
}

.header__menu-btn:hover,
.header__action-btn:hover {
  transform: scale(1.1);
}

.header__actions {
  display: flex;
  gap: 1.5rem;
}

/* ============================================
   Mobile Menu
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-sand);
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.mobile-menu.active {
  transform: translateY(0);
}

/* Close Button */
.mobile-menu__close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  color: var(--text-charcoal);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  z-index: 1000;
}

.mobile-menu__close:hover {
  color: var(--primary-clay);
  transform: rotate(90deg);
}

.mobile-menu__close svg {
  display: block;
}

.mobile-menu__list {
  list-style: none;
  text-align: center;
}

.mobile-menu__link {
  display: block;
  font-size: 2.5rem;
  font-family: var(--font-heading);
  color: var(--text-charcoal);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    color 0.3s ease;
}

.mobile-menu__link:hover {
  color: var(--primary-clay);
}

/* Stagger animation for menu links */
.mobile-menu.active .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .mobile-menu__link:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu.active .mobile-menu__link:nth-child(2) {
  transition-delay: 0.2s;
}
.mobile-menu.active .mobile-menu__link:nth-child(3) {
  transition-delay: 0.3s;
}
.mobile-menu.active .mobile-menu__link:nth-child(4) {
  transition-delay: 0.4s;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 80px;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s ease-in-out,
    visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent-sage);
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* Add subtle overlay for better text readability */
.hero__background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.2)
  );
}

.hero__content {
  max-width: 900px;
  padding: 0 var(--spacing-container);
  z-index: 1;
  position: relative;
}

.hero__headline {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-weight: 400;
  font-style: italic;
}

.hero__subhead {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
  font-weight: 300;
}

.hero__btn {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .hero {
    height: 80vh;
    min-height: 500px;
  }

  .hero__headline {
    font-size: 2.5rem;
  }

  .hero__subhead {
    font-size: 1.125rem;
  }
}

/* Hero Carousel Controls */
.hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  color: var(--text-charcoal);
}

.hero__nav:hover {
  background-color: var(--primary-clay);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.hero__nav--prev {
  left: 2rem;
}

.hero__nav--next {
  right: 2rem;
}

@media (max-width: 768px) {
  .hero__nav {
    width: 40px;
    height: 40px;
  }

  .hero__nav--prev {
    left: 1rem;
  }

  .hero__nav--next {
    right: 1rem;
  }
}

.hero__indicators {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.hero__indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero__indicator.active {
  background-color: var(--primary-clay);
  border-color: var(--primary-clay);
  transform: scale(1.3);
}

.hero__indicator:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Category Grid (Masonry Magazine Style)
   ============================================ */
.categories {
  padding: var(--spacing-section) 0;
}

.categories__grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-container);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  grid-auto-flow: dense;
}

@media (min-width: 768px) {
  .categories__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .categories__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
}

/* ============================================
   Category Cards
   ============================================ */
.category-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-4px);
}

.category-card__link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.category-card__image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background-color: var(--accent-sage);
}

.category-card__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .category-card__image-wrapper img {
  transform: scale(1.05);
}

.category-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-sage) 0%, #cbd5c0 100%);
  transition: transform 0.6s ease;
}

.category-card:hover .category-card__placeholder {
  transform: scale(1.05);
}

/* Text overlay with gradient */
.category-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
}

.category-card__title {
  margin: 0;
  font-size: 1.5rem;
  color: white;
  font-weight: 600;
}

/* Card Size Variations */
.category-card--hero {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 450px;
}

.category-card--large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 400px;
}

.category-card--medium {
  grid-column: span 2;
  grid-row: span 1;
  min-height: 250px;
}

.category-card--small {
  grid-column: span 1;
  grid-row: span 1;
  min-height: 200px;
}

.category-card--tall {
  grid-column: span 1;
  grid-row: span 2;
  min-height: 350px;
}

.category-card--wide {
  grid-column: span 2;
  grid-row: span 1;
  min-height: 220px;
}

/* Responsive Card Sizes */
@media (min-width: 768px) {
  .category-card--hero {
    grid-column: span 3;
    grid-row: span 2;
    min-height: 500px;
  }

  .category-card--large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 450px;
  }

  .category-card--medium {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 280px;
  }

  .category-card--small {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 220px;
  }

  .category-card--tall {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 400px;
  }

  .category-card--wide {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 250px;
  }
}

@media (min-width: 1024px) {
  .category-card--hero {
    grid-column: span 4;
    grid-row: span 2;
    min-height: 550px;
  }

  .category-card--large {
    grid-column: span 3;
    grid-row: span 2;
    min-height: 480px;
  }

  .category-card--medium {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 300px;
  }

  .category-card--small {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 240px;
  }

  .category-card--tall {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 450px;
  }

  .category-card--wide {
    grid-column: span 3;
    grid-row: span 1;
    min-height: 280px;
  }
}

/* ============================================
   Spotlight Section
   ============================================ */
.spotlight {
  background-color: white;
  padding: 0;
}

.spotlight__wrapper {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .spotlight__wrapper {
    flex-direction: row;
    min-height: 600px;
  }

  .spotlight__image-side,
  .spotlight__text-side {
    width: 50%;
  }
}

.spotlight__image-side {
  min-height: 400px;
  background-color: var(--accent-sage);
  position: relative;
}

.spotlight__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-sage) 0%, #cbd5c0 100%);
}

.spotlight__text-side {
  padding: 100px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
}

@media (max-width: 768px) {
  .spotlight__text-side {
    padding: 3rem 2rem;
  }
}

.spotlight__title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.spotlight__description {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-light);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 4rem 0 2rem;
  background-color: var(--bg-sand);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-container);
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer__container {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer__column {
    flex: 1;
  }
}

.footer__heading {
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-family: var(--font-body);
}

.footer__nav {
  list-style: none;
}

.footer__nav li {
  margin-bottom: 0.75rem;
}

.footer__link {
  color: var(--text-charcoal);
  font-size: 0.95rem;
}

.footer__link:hover {
  color: var(--primary-clay);
}

.footer__copy {
  font-size: 0.875rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ============================================
   WooCommerce Overrides
   ============================================ */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background-color: var(--primary-clay) !important;
  color: white !important;
  border-radius: 50px !important;
  border: none !important;
  padding: 12px 30px !important;
  transition: all 0.3s ease;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background-color: var(--primary-clay) !important;
  opacity: 0.9;
  transform: translateY(-2px);
}

.woocommerce ul.products li.product a img {
  border: none !important;
  box-shadow: none !important;
  border-radius: 12px;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price {
  font-family: var(--font-heading) !important;
  color: var(--text-charcoal) !important;
  font-weight: 600 !important;
  font-size: 1.25rem;
}

/* ============================================
   Generic Pages
   ============================================ */
.generic-page-container {
  padding-top: 120px;
  padding-bottom: 80px;
  background-color: var(--bg-sand);
  min-height: 60vh;
}

.generic-page-container .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-container);
}

.generic-page-container h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--text-charcoal);
  margin-bottom: 30px;
  text-align: center;
}

.entry-content {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* ============================================
   Animations & Effects
   ============================================ */
.reveal-init {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
  will-change: opacity, transform;
}

.fade-in-up {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection styling */
::selection {
  background-color: var(--primary-clay);
  color: white;
}

::-moz-selection {
  background-color: var(--primary-clay);
  color: white;
}

/* --- WOOCOMMERCE PRODUCT LAYOUT --- */

/* 1. The Container (Strict 50/50 Grid) */
.woocommerce div.product {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  align-items: start;
  margin-top: 10px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

/* 2. The Image (Full Width of Column) */
.woocommerce div.product div.images {
  width: 100% !important;
  margin: 0;
}
.woocommerce div.product div.images img {
  width: 100% !important;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(192, 108, 84, 0.1);
  display: block;
}

/* 3. The Details (Right Column) */
.woocommerce div.product div.summary {
  width: 100% !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* 4. Typography */
.woocommerce div.product .product_title {
  font-family: var(--font-heading, "Playfair Display", serif) !important;
  font-size: 1.6rem !important;
  line-height: 1.3 !important;
  color: var(--text-charcoal, #333) !important;
  margin: 0 0 5px 0 !important;
  font-weight: 600 !important;
}

.woocommerce div.product p.price {
  font-family: var(--font-body, "Montserrat", sans-serif) !important;
  font-size: 1.3rem !important;
  color: var(--primary-clay, #c06c54) !important;
  font-weight: 700 !important;
  margin: 0 0 8px 0 !important;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666;
  margin: 0 0 10px 0;
}

/* 5. Form - Stacked Layout Like Screenshot */
.woocommerce div.product form.cart {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin: 10px 0 !important;
}

/* Quantity Row - Inline with Label */
.woocommerce div.product form.cart .quantity {
  display: flex;
  align-items: center;
  gap: 10px;
  height: auto;
  margin: 0;
}

/* Quantity Input - Compact Box */
.woocommerce div.product form.cart .quantity input {
  width: 60px !important;
  height: 38px !important;
  text-align: center !important;
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #333 !important;
  background: white !important;
  padding: 0 !important;
}

.woocommerce div.product form.cart .quantity input:focus {
  outline: none;
  border-color: var(--primary-clay, #c06c54);
}

/* Hide Quantity Buttons */
.woocommerce div.product form.cart .quantity button {
  display: none;
}

/* Add to Cart Button - Full Width Pill */
.woocommerce div.product form.cart .single_add_to_cart_button {
  background-color: var(--text-charcoal, #2c2c2c) !important;
  color: white !important;
  border-radius: 50px !important;
  padding: 10px 30px !important;
  height: 38px !important;
  width: 100% !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 12px;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0 !important;
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
  background-color: var(--primary-clay, #c06c54) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(192, 108, 84, 0.3);
}

/* WhatsApp Button - Full Width Pill Below Cart */
.btn-whatsapp {
  display: block;
  width: 100%;
  background-color: var(--primary-clay, #c06c54);
  color: white !important;
  text-align: center;
  padding: 10px 30px;
  height: 38px;
  line-height: 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  margin: 8px 0;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-clay, #c06c54);
}

.btn-whatsapp:hover {
  background-color: white;
  color: var(--primary-clay, #c06c54) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(192, 108, 84, 0.2);
}

/* Product Meta - Compact */
.woocommerce div.product .product_meta {
  font-size: 0.85rem;
  color: #999;
  margin: 12px 0;
  padding: 12px 0;
  border-top: 1px solid #eee;
}

.woocommerce div.product .product_meta > span {
  display: block;
  margin-bottom: 6px;
  line-height: 1.4;
}

.woocommerce div.product .product_meta a {
  color: var(--primary-clay, #c06c54);
  text-decoration: none;
  font-weight: 500;
}

.woocommerce div.product .product_meta a:hover {
  text-decoration: underline;
}

/* Stock Badge */
.woocommerce div.product .stock {
  color: #25d366 !important;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 5px 0;
}

.woocommerce div.product .stock.out-of-stock {
  color: #e74c3c !important;
}

/* 6. Description Tabs (Force to Bottom) */
.woocommerce-tabs {
  grid-column: 1 / -1; /* Span Full Width */
  margin-top: 60px;
  border-top: 1px solid #eee;
  padding-top: 40px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .woocommerce div.product {
    display: flex !important;
    flex-direction: column;
    gap: 30px;
  }
  .product_title {
    font-size: 2rem;
  }
  form.cart {
    flex-direction: column;
    height: auto;
  }
  .quantity,
  .single_add_to_cart_button {
    width: 100%;
    height: 50px;
  }
}
