/** Shopify CDN: Minification failed

Line 1021:0 Unexpected end of file

**/
/**
 * =============================================================================
 * OUR STYLE CANARIAS - HOMEPAGE IMPROVEMENTS
 * Comprehensive CSS improvements for modern, accessible, and responsive design
 * =============================================================================
 */

/* =============================================================================
   1. CSS CUSTOM PROPERTIES & VARIABLES
   ============================================================================= */
:root {
  /* Brand Colors */
  --os-primary: #869c83;
  --os-primary-light: #a8baa6;
  --os-primary-dark: #6d8270;
  --os-secondary: #2d2d2d;
  --os-text: #646464;
  --os-text-light: #999;
  --os-bg-light: #fafafa;
  --os-bg-white: #ffffff;

  /* Spacing System */
  --os-space-xs: 8px;
  --os-space-sm: 16px;
  --os-space-md: 24px;
  --os-space-lg: 32px;
  --os-space-xl: 48px;
  --os-space-2xl: 64px;
  --os-space-3xl: 96px;

  /* Border Radius */
  --os-radius-sm: 8px;
  --os-radius-md: 12px;
  --os-radius-lg: 16px;
  --os-radius-xl: 20px;
  --os-radius-2xl: 24px;

  /* Shadows */
  --os-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --os-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --os-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.10);
  --os-shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.12);
  --os-shadow-2xl: 0 20px 40px rgba(0, 0, 0, 0.15);
  --os-shadow-brand: 0 20px 40px rgba(134, 156, 131, 0.2);

  /* Transitions */
  --os-transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --os-transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --os-transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --os-transition-slower: 600ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index layers */
  --os-z-base: 1;
  --os-z-dropdown: 10;
  --os-z-sticky: 20;
  --os-z-fixed: 30;
  --os-z-modal: 40;
  --os-z-popover: 50;
  --os-z-tooltip: 60;
}

/* =============================================================================
   2. GLOBAL IMPROVEMENTS
   ============================================================================= */

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Better focus states for accessibility */
*:focus-visible {
  outline: 2px solid var(--os-primary);
  outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =============================================================================
   3. SECTION HEADINGS - CONSISTENT STYLING
   ============================================================================= */
.section-heading-wrapper {
  text-align: center;
  margin-bottom: var(--os-space-2xl);
}

.section-heading {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--os-secondary);
  margin-bottom: var(--os-space-md);
  position: relative;
  display: inline-block;
  padding-bottom: var(--os-space-md);
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--os-primary), var(--os-primary-light));
  border-radius: 2px;
}

.section-subheading {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--os-primary);
  font-weight: 600;
  margin-bottom: var(--os-space-sm);
}

.section-description {
  color: var(--os-text);
  font-size: 16px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.section-description strong {
  color: var(--os-primary);
  font-weight: 600;
}

/* =============================================================================
   4. SLIDESHOW/HERO IMPROVEMENTS
   ============================================================================= */
.slideshow-section {
  position: relative;
}

.slideshow-slide {
  position: relative;
}

/* Better overlay for text readability */
.slideshow-slide__overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

/* Hero content improvements */
.hero__content {
  animation: fadeInUp var(--os-transition-slow) ease-out;
  transform: translateZ(0);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Button improvements */
.btn--white.btn--outline {
  --btn-border-hover: var(--os-primary);
  --btn-bg-hover: var(--os-primary);
  --btn-text-hover: #ffffff;
  transition: all var(--os-transition-base);
  position: relative;
  overflow: hidden;
}

.btn--white.btn--outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--os-primary);
  transition: left var(--os-transition-base);
  z-index: -1;
}

.btn--white.btn--outline:hover::before {
  left: 0;
}

/* =============================================================================
   5. FEATURED CATEGORIES IMPROVEMENTS
   ============================================================================= */
.featured-categories-mobile {
  padding: var(--os-space-2xl) var(--os-space-md);
}

.featured-categories-mobile__heading {
  display: inline-block;
  padding-bottom: var(--os-space-md);
  margin-bottom: var(--os-space-md);
  border-bottom: 3px solid var(--os-primary);
  width: auto;
  font-size: clamp(24px, 4vw, 40px);
}

.featured-category-card {
  border-radius: var(--os-radius-xl);
  overflow: hidden;
  background: var(--os-bg-white);
  box-shadow: var(--os-shadow-md);
  transition: all var(--os-transition-base);
  position: relative;
}

.featured-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(134, 156, 131, 0.05), rgba(168, 186, 166, 0.05));
  opacity: 0;
  transition: opacity var(--os-transition-base);
  z-index: 1;
  pointer-events: none;
}

.featured-category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--os-shadow-brand);
}

.featured-category-card:hover::before {
  opacity: 1;
}

.featured-category-card img {
  transition: transform var(--os-transition-slower);
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

.featured-category-card:hover img {
  transform: scale(1.08);
}

/* =============================================================================
   6. PRODUCTS TAB COLLECTION IMPROVEMENTS
   ============================================================================= */
.tab-collections {
  background: var(--os-bg-light);
  padding: var(--os-space-2xl) var(--os-space-md);
}

.tab-collections__tab-link {
  padding: 12px 24px;
  border-radius: 25px;
  transition: all var(--os-transition-base);
  font-weight: 500;
  border: 2px solid transparent;
}

.tab-collections__tab-link:hover {
  background: rgba(134, 156, 131, 0.1);
  border-color: var(--os-primary);
}

.tab-collections__tab-link.is-active {
  background: var(--os-primary);
  color: #fff;
  box-shadow: var(--os-shadow-md);
}

/* Product grid improvements */
.product-grid-item {
  border-radius: var(--os-radius-lg);
  overflow: hidden;
  background: var(--os-bg-white);
  box-shadow: var(--os-shadow-sm);
  transition: all var(--os-transition-base);
}

.product-grid-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--os-shadow-xl);
}

.product-grid-item__image {
  overflow: hidden;
}

.product-grid-item__image img {
  transition: transform var(--os-transition-slower);
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

.product-grid-item:hover img {
  transform: scale(1.05);
}

/* =============================================================================
   PRODUCT IMAGE HOVER EFFECT - Aggressive Override
   ============================================================================= */

/* Ensure all product images fit properly - CONTAIN to show full product */
.product-item__bg,
.product-item__bg__under,
deferred-image {
  background-color: #ffffff !important; /* Clean white background for empty space */
}

.product-item__bg img,
.product-item__bg__under img,
deferred-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important; /* Changed from cover to contain - shows full image */
  object-position: center !important;
  display: block !important;
}

/* Setup second image positioning - target both the wrapper and deferred-image */
.product-item__image.double__image .product-item__bg__under,
.product-item__image.double__image deferred-image.product-item__bg__under {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 3 !important;
  pointer-events: none !important;
}

/* Hide second image by default - multiple selectors for specificity */
.product-item__image.double__image .product-item__bg__under,
.product-item__image.double__image deferred-image.product-item__bg__under,
.double__image .product-item__bg__under,
deferred-image.product-item__bg__under {
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.3s ease !important;
}

/* Show second image on hover - MAXIMUM SPECIFICITY */
/* Desktop hover */
@media (hover: hover) and (pointer: fine) {
  .product-item__image.double__image:hover .product-item__bg__under,
  .product-item__image.double__image:hover deferred-image.product-item__bg__under,
  .grid-item:hover .product-item__image.double__image .product-item__bg__under,
  .grid-item:hover .product-item__image.double__image deferred-image.product-item__bg__under {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* Fallback for all hover-capable devices */
.no-touch .product-item__image.double__image:hover .product-item__bg__under,
.no-touch .product-item__image.double__image:hover deferred-image.product-item__bg__under,
.no-touch .grid-item:hover .double__image .product-item__bg__under,
.no-touch .grid-item:hover .double__image deferred-image.product-item__bg__under,
.product-item__image.double__image:hover .product-item__bg__under,
.product-item__image.double__image:hover deferred-image.product-item__bg__under {
  opacity: 1 !important;
  visibility: visible !important;
}

/* =============================================================================
   7. VIDEO SECTION IMPROVEMENTS
   ============================================================================= */
.video-section {
  position: relative;
  margin: var(--os-space-2xl) 0;
}

.video-wrapper {
  border-radius: var(--os-radius-xl);
  overflow: hidden;
  box-shadow: var(--os-shadow-2xl);
  position: relative;
}

.video-wrapper video {
  transition: transform var(--os-transition-slower) ease;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.video-wrapper:hover video {
  transform: scale(1.03);
}

.video-section__content {
  text-align: center;
  padding: var(--os-space-lg);
}

.video-section__title {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 700;
  color: #ffffff;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.4),
    0 4px 16px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--os-space-md);
}

.video-section__description {
  font-size: clamp(16px, 3vw, 20px);
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================================================
   8. LOOKBOOK SECTION IMPROVEMENTS
   ============================================================================= */
.look-section {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: var(--os-space-2xl) var(--os-space-md);
}

.look-hotspot {
  width: 32px;
  height: 32px;
  background: var(--os-primary);
  border-radius: 50%;
  box-shadow: var(--os-shadow-lg);
  transition: all var(--os-transition-base);
  position: relative;
  cursor: pointer;
}

.look-hotspot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(0);
  width: 100%;
  height: 100%;
  background: var(--os-primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.8);
  }
}

.look-hotspot:hover {
  transform: scale(1.15);
  background: var(--os-primary-dark);
}

/* =============================================================================
   9. HERO SECTION IMPROVEMENTS
   ============================================================================= */
.section-hero {
  position: relative;
  overflow: hidden;
}

.hero__image-wrapper {
  position: relative;
}

.hero__image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
  pointer-events: none;
}

.hero__text-wrapper {
  position: relative;
  z-index: 2;
}

/* =============================================================================
   10. BENEFICIOS/BENEFITS SECTION
   ============================================================================= */
.beneficios-tienda {
  padding: var(--os-space-2xl) var(--os-space-md);
  background: var(--os-bg-white);
}

.beneficio-card {
  text-align: center;
  padding: var(--os-space-lg);
  border-radius: var(--os-radius-lg);
  background: var(--os-bg-light);
  transition: all var(--os-transition-base);
}

.beneficio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--os-shadow-lg);
  background: var(--os-bg-white);
}

.beneficio-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--os-space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--os-primary);
  border-radius: 50%;
  color: white;
  transition: all var(--os-transition-base);
}

.beneficio-card:hover .beneficio-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--os-primary-dark);
}

.beneficio-titulo {
  font-size: 20px;
  font-weight: 600;
  color: var(--os-secondary);
  margin-bottom: var(--os-space-sm);
}

.beneficio-descripcion {
  font-size: 14px;
  color: var(--os-text);
  line-height: 1.6;
}

/* =============================================================================
   11. COUNTDOWN TIMER IMPROVEMENTS
   ============================================================================= */
.countdown-section {
  position: relative;
  padding: var(--os-space-2xl) var(--os-space-md);
  background-size: cover;
  background-position: center;
}

.countdown-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.countdown-content {
  position: relative;
  z-index: 2;
}

.countdown-digits {
  display: flex;
  justify-content: center;
  gap: var(--os-space-md);
  flex-wrap: wrap;
  margin: var(--os-space-xl) 0;
}

.countdown-digit {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--os-radius-lg);
  padding: var(--os-space-lg);
  min-width: 100px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--os-transition-base);
}

.countdown-digit:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.countdown-digit__number {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: var(--os-space-xs);
}

.countdown-digit__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
}

/* =============================================================================
   12. SELLOS DE CALIDAD IMPROVEMENTS
   ============================================================================= */
.sellos-calidad {
  padding: var(--os-space-2xl) var(--os-space-md);
  background: var(--os-bg-white);
}

.sello-card {
  background: #f5f5f5;
  border-radius: var(--os-radius-lg);
  padding: var(--os-space-lg);
  margin-bottom: var(--os-space-md);
  transition: all var(--os-transition-base);
  border: 2px solid transparent;
}

.sello-card:hover {
  background: var(--os-bg-white);
  box-shadow: var(--os-shadow-lg);
  border-color: var(--os-primary);
  transform: translateY(-4px);
}

.sello-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto var(--os-space-md);
  display: block;
  transition: transform var(--os-transition-base);
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

.sello-card:hover .sello-image {
  transform: scale(1.05);
}

.sello-titulo {
  font-size: 20px;
  font-weight: 600;
  color: var(--os-secondary);
  margin-bottom: var(--os-space-sm);
  text-align: center;
}

.sello-descripcion {
  font-size: 14px;
  color: var(--os-text);
  line-height: 1.6;
  text-align: left;
}

/* =============================================================================
   13. RESPONSIVE BREAKPOINTS
   ============================================================================= */

/* Small devices (phones, < 576px) */
@media (max-width: 575px) {
  :root {
    --os-space-xl: 32px;
    --os-space-2xl: 48px;
    --os-space-3xl: 64px;
  }

  .section-heading {
    font-size: 28px;
  }

  .countdown-digit {
    min-width: 80px;
    padding: var(--os-space-md);
  }

  .countdown-digit__number {
    font-size: 36px;
  }
}

/* Medium devices (tablets, >= 576px and < 768px) */
@media (min-width: 576px) and (max-width: 767px) {
  .section-heading {
    font-size: 32px;
  }
}

/* Large devices (desktops, >= 768px and < 992px) */
@media (min-width: 768px) and (max-width: 991px) {
  .section-heading {
    font-size: 36px;
  }
}

/* Extra large devices (large desktops, >= 992px) */
@media (min-width: 992px) {
  .section-heading {
    font-size: 42px;
  }

  /* Parallax effect for hero sections on desktop */
  .hero-parallax {
    background-attachment: fixed;
  }
}

/* =============================================================================
   14. ACCESSIBILITY IMPROVEMENTS
   ============================================================================= */

/* Skip to content link */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--os-primary);
  color: white;
  padding: var(--os-space-sm) var(--os-space-md);
  z-index: 100;
  transition: top var(--os-transition-base);
}

.skip-to-content:focus {
  top: 0;
}

/* Screen reader only content */
.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;
}

/* Ensure images have proper alt text styling */
img:not([alt]) {
  border: 3px solid var(--os-primary);
}

/* =============================================================================
   15. PERFORMANCE OPTIMIZATIONS
   ============================================================================= */

/* Hardware acceleration for transforms */
.hardware-accelerated {
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

/* Lazy loading placeholder */
.lazy-loading {
  background: linear-gradient(
    90deg,
    #f0f0f0 25%,
    #e0e0e0 50%,
    #f0f0f0 75%
  );
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* =============================================================================
   16. UTILITY CLASSES
   ============================================================================= */

/* Spacing utilities */
.mt-auto { margin-top: auto; }
.mb-auto { margin-bottom: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }

.p-0 { padding: 0; }
.p-1 { padding: var(--os-space-xs); }
.p-2 { padding: var(--os-space-sm); }
.p-3 { padding: var(--os-space-md); }
.p-4 { padding: var(--os-space-lg); }
.p-5 { padding: var(--os-space-xl); }

/* Text utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Display utilities */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Flex utilities */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =============================================================================
   17. ANIMATIONS & TRANSITIONS
   ============================================================================= */

/* Fade in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn var(--os-transition-base) ease-in;
}

/* Slide in from left */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-left {
  animation: slideInLeft var(--os-transition-base) ease-out;
}

/* Slide in from right */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight var(--os-transition-base) ease-out;
}

/* Scale in */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.scale-in {
  animation: scaleIn var(--os-transition-base) ease-out;
}

/* =============================================================================
   18. REVIEWS SECTION FIXES
   ============================================================================= */

/* Fix quote marks positioning and text overflow */
.review__quote-inner {
  transform: none !important; /* Remove problematic translateY */
  vertical-align: middle !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
}

/* Fix blockquote overflow - allow content to be visible */
.review__content blockquote {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  overflow: visible !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 24px 32px !important;
}

/* Keep quote marks anchored inside the block */
.review__quote {
  position: absolute !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  pointer-events: none !important;
}

.review__quote--open {
  top: 10px !important;
  left: 6px !important;
}

.review__quote--close {
  right: 6px !important;
  bottom: 10px !important;
}

.review__quote--open .review__quote-inner,
.review__quote--close .review__quote-inner {
  transform: none !important;
}

/* Ensure paragraph text doesn't overflow and can sit closer to the quote */
.review__content blockquote p {
  margin: 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 8 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  line-height: 1.6 !important;
}

/* Adjust review content container to accommodate visible quotes */
.review__content {
  overflow: visible !important;
  max-height: none !important; /* Remove height restriction */
}

/* Ensure review card doesn't clip content */
.review {
  overflow: visible !important;
}

/* Make linked reviews feel clickable */
a.review {
  text-decoration: none !important;
  color: inherit !important;
  cursor: pointer !important;
}

a.review:hover .review__product-title,
a.review:hover .review__author__name {
  color: var(--os-primary-dark, #6d8270) !important;
}

/* Review author layout and fallback avatar */
.review__author {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.review__author__bio-image,
/* =============================================================================
   END OF HOMEPAGE IMPROVEMENTS
   ============================================================================= */
