/* =========================================================
   ThaiRaiSite — Modern CSS (no build tools required)
   Inspired by premium resort aesthetics.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans+Extra+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap');

@layer base, components, utilities;

/* ---------------------------------------------------------
   Design Tokens
   --------------------------------------------------------- */
:root {
  /* Colors from Logo */
  --color-gold: #D4A017;
  --color-gold-dark: #b3860f;
  --color-teal: #008B8B;
  --color-pink: #D1478D;
  --color-sand: #FDF6E3;
  --color-dark: #2F2F2F;
  --color-white: #FFFFFF;
  --color-red: #ff4757;
  --color-green: #2ed573;

  /* Semantic Colors */
  --bg-main: var(--color-sand);
  --text-main: var(--color-dark);
  --text-muted: #666666;
  --text-light: #999999;
  --border-color: rgba(47, 47, 47, 0.1);
  --border-light: rgba(255, 255, 255, 0.1);

  /* Typography */
  --comfortaa: 'Comfortaa', 'Segoe UI', Roboto, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --sofiaSansExtraCondensed: 'Sofia Sans Extra Condensed', 'Arial Narrow', 'Helvetica Condensed', Impact, sans-serif;
  --font-family-base: var(--comfortaa);
  --font-heading: var(--sofiaSansExtraCondensed);
  --font-accent: 'Marck Script', cursive;

  /* Sizes & Spacing */
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-badge: 0 2px 4px rgba(0, 0, 0, 0.2);
  --shadow-nav: 0 -2px 10px rgba(0, 0, 0, 0.1);
  --shadow-text-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-text-md: 0 2px 4px rgba(0, 0, 0, 0.5);
  --hero-overlay: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
  --spacing-section: 5rem;
  --spacing-element: 1.5rem;
  --nav-height: 80px;
  --mobile-nav-height: 64px;
}

/* ---------------------------------------------------------
   Layer: Base
   --------------------------------------------------------- */
@layer base {
  :where(*, *::before, *::after) {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: var(--font-family-base);
    font-size: 1.125rem;
    /* 18px */
    line-height: 1.56;
    color: var(--text-main);
    background-color: var(--bg-main);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    /* Extra padding for mobile nav */
    padding-bottom: var(--mobile-nav-height);
  }

  @media (min-width: 768px) {
    body {
      padding-bottom: 0;
    }
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    letter-spacing: 0;
  }

  h1 {
    font-size: 2.875rem;
    line-height: 1.1;
    color: var(--color-teal);
  }

  h2 {
    font-size: 2rem;
    line-height: 1.1875;
    color: var(--color-pink);
  }

  h3 {
    font-size: 1.75rem;
    line-height: 1.357;
    color: var(--color-teal);
    font-weight: 700;
  }

  @media (min-width: 768px) {
    h1 {
      font-size: 3.875rem;
      line-height: 1.06;
    }

    h2 {
      font-size: 2.625rem;
      line-height: 1.15;
    }

    h3 {
      font-size: 2.125rem;
      line-height: 1.29;
    }
  }

  p,
  table,
  ul:not([class]),
  ol:not([class]) {
    margin-top: 0;
    margin-bottom: 1.5rem;
  }

  table {
    width: 100%;
    border-collapse: collapse;
  }

  th,
  td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
  }

  th {
    font-weight: 700;
    color: var(--color-teal);
    background-color: rgba(0, 0, 0, 0.02);
  }

  a {
    color: var(--color-teal);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  a:hover {
    color: var(--color-gold);
  }

  /* Inline Text Links */
  .excursion-description a,
  .excursion-section a,
  p a {
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: var(--color-gold);
    text-decoration-thickness: 3px;
    text-underline-offset: 0.3em;
    transition: text-decoration-color 0.3s ease;
  }

  .excursion-description a:hover,
  .excursion-section a:hover,
  p a:hover {
    text-decoration-color: var(--color-teal);
  }

  /* Content Lists */
  .excursion-description ul,
  .excursion-section ul,
  .excursion-description ol,
  .excursion-section ol {
    padding-left: 1.5rem;
    list-style: disc;
  }

  .excursion-description ol,
  .excursion-section ol {
    list-style: decimal;
  }

  .excursion-description li,
  .excursion-section li {
    margin-bottom: 0.5rem;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  figcaption {
    font-size: 1rem;
    line-height: 1.5;
    font-style: italic;
    text-align: center;
    margin-top: 1rem;
    display: block;
  }

  ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
}

/* ---------------------------------------------------------
   Layer: Components
   --------------------------------------------------------- */
@layer components {

  /* Layout */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .text-center {
    text-align: center;
  }

  /* Utilities within components */
  .bg-gold {
    background-color: var(--color-gold);
  }

  .bg-teal {
    background-color: var(--color-teal);
  }

  .bg-pink {
    background-color: var(--color-pink);
  }

  .bg-dark {
    background-color: var(--color-dark);
  }

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .btn-primary {
    background-color: var(--color-gold);
    color: var(--color-white);
  }

  .btn-primary:hover {
    background-color: var(--color-gold-dark);
    color: var(--color-white);
    transform: translateY(-2px);
  }

  .btn-outline {
    background-color: transparent;
    border-color: var(--color-teal);
    color: var(--color-teal);
  }

  .btn-outline:hover {
    background-color: var(--color-teal);
    color: var(--color-white);
  }

  .btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
  }

  /* Header */
  .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    padding: 1rem 0;
  }

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

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 1px;
    text-shadow: var(--shadow-text-sm);
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  @media (min-width: 768px) {
    .desktop-nav {
      display: block;
    }

    .desktop-nav ul {
      display: flex;
      gap: 2rem;
    }

    .desktop-nav a {
      color: var(--color-white);
      font-weight: 600;
      text-transform: uppercase;
      font-size: 0.9rem;
      text-shadow: var(--shadow-text-sm);
    }

    .desktop-nav a:hover {
      color: var(--color-gold);
    }

    .header-cta {
      display: inline-flex;
    }
  }

  /* Hero Section */
  .hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('https://images.unsplash.com/photo-1552465011-b4e21bf6e79a?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding-top: var(--nav-height);
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
  }

  .hero-content {
    position: relative;
    z-index: 10;
    color: var(--color-white);
  }

  .hero-subtitle {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    color: var(--color-gold);
    display: block;
    margin-bottom: -10px;
    transform: rotate(-5deg);
  }

  @media (min-width: 768px) {
    .hero-subtitle {
      font-size: 3.5rem;
    }
  }

  .hero h1 {
    color: var(--color-white);
    text-shadow: var(--shadow-text-md);
  }

  .hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    text-shadow: var(--shadow-text-md);
  }

  /* Section Headers */
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .section-subtitle {
    font-family: var(--font-accent);
    font-size: 2rem;
    color: var(--color-teal);
    display: block;
    margin-bottom: 0.5rem;
  }

  /* Entertainments Section */
  .entertainments-section {
    padding: var(--spacing-section) 0 2rem;
    margin-top: -80px;
    position: relative;
    z-index: 20;
  }

  .entertainments-grid {
    display: flex;
    gap: 1rem;
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);

    /* Horizontal scroll for mobile */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
  }

  .entertainments-grid::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
  }

  @media (min-width: 768px) {
    .entertainments-grid {
      flex-wrap: wrap;
      justify-content: center;
      overflow-x: visible;
    }
  }

  .entertainment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;

    /* Scroll snap for mobile */
    scroll-snap-align: start;
    flex: 0 0 100px;
    /* Fixed width for mobile items to peek */
  }

  @media (min-width: 768px) {
    .entertainment-card {
      flex: 0 0 auto;
      min-width: 120px;
    }
  }

  .entertainment-card .icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--color-white);
    box-shadow: var(--shadow-badge);
  }



  .entertainment-card:hover .icon-wrap {
    transform: translateY(-5px) scale(1.3);
    box-shadow: var(--shadow-hover);
    filter: brightness(1.1);
  }

  .entertainment-card>span {
    font-weight: 700;
    color: var(--color-dark);
  }

  /* Excursions Section */
  .excursions-section {
    padding: 3rem 0 var(--spacing-section);
  }

  .excursions-grid {
    display: grid;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .excursions-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .excursions-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .excursion-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .excursion-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
  }

  .excursion-card-image-wrap {
    position: relative;
    padding-top: 66%;
    /* 3:2 aspect ratio */
  }

  .excursion-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .excursion-card-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
  }

  .excursion-card-badge {
    background: var(--color-pink);
    color: var(--color-white);
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: var(--shadow-badge);
  }

  .excursion-card-badge--hit {
    background: var(--color-red);
  }

  .excursion-card-badge--new {
    background: var(--color-teal);
  }

  .excursion-card-badge--promo {
    background: var(--color-gold);
  }

  .excursion-card-badge--recommended {
    background: var(--color-green);
  }

  .excursion-card__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .excursion-card__title {
    margin-bottom: 0.5rem;
  }

  .excursion-card-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .excursion-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .excursion-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
  }

  .excursion-card__price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-teal);
    margin: 0;
  }

  /* Benefits Section */
  .benefits-section {
    padding: var(--spacing-section) 0;
    background-color: var(--color-white);
  }

  .benefits-grid {
    display: grid;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .benefits-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .benefit-card {
    text-align: center;
    padding: 2rem;
  }

  .benefit-card .icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transform: rotate(-5deg);
    color: var(--color-white);
  }

  /* Footer */
  .site-footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 4rem 0 2rem;
  }

  .footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  @media (min-width: 768px) {
    .footer-grid {
      grid-template-columns: 2fr 1fr;
    }
  }

  .footer-brand p {
    color: var(--text-light);
    max-width: 300px;
    margin-top: 1rem;
  }

  .footer-links h3 {
    color: var(--color-white);
  }

  .footer-links p,
  .footer-links .footer-contact-item {
    color: var(--text-light);
    margin-bottom: 0.5rem;
  }

  .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    transform-origin: left center;
    width: fit-content;
  }

  .footer-contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
  }

  .footer-contact-item:hover {
    color: var(--color-gold);
    transform: scale(1.2);
  }

  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-light);
    font-size: 0.9rem;
  }

  /* Mobile Bottom Nav */
  .mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--mobile-nav-height);
    background: var(--color-white);
    box-shadow: var(--shadow-nav);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
  }

  @media (min-width: 768px) {
    .mobile-bottom-nav {
      display: none;
    }
  }

  .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
  }

  .nav-item.active,
  .nav-item:hover {
    color: var(--color-teal);
  }

  /* Excursion Page Elements */
  .excursion-page {
    margin-top: calc(var(--nav-height) + 20px);
    padding-bottom: var(--spacing-section);
  }

  .excursion-header {
    margin-bottom: 2rem;
  }

  .excursion-title {
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
  }

  .excursion-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
    flex-wrap: wrap;
  }

  .badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
  }

  .badge-code {
    background-color: var(--color-teal);
    color: var(--color-white);
  }

  .badge-status {
    color: var(--color-white);
  }

  .badge-status-open {
    background-color: #28a745;
  }

  .badge-status-closed {
    background-color: #dc3545;
  }

  .badge-status-planned {
    background-color: #ffc107;
    color: #333;
  }

  .badge-status-suspended {
    background-color: #6c757d;
  }

  .launch-date {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
  }

  .excursion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  @media (min-width: 993px) {
    .excursion-grid {
      grid-template-columns: 1fr 350px;
    }
  }

  .excursion-gallery {
    margin-bottom: 30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
  }

  .excursion-gallery-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
  }

  .excursion-description,
  .excursion-section {
    margin-bottom: 40px;
  }

  .excursion-description h2,
  .excursion-description h3,
  .excursion-section h2,
  .excursion-section h3 {
    margin-bottom: 20px;
    margin-top: 0;
  }

  .excursion-restrictions {
    background: var(--color-sand);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--color-gold);
  }

  .excursion-restrictions h3 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    margin-top: 0;
  }

  .excursion-restrictions ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
  }

  .excursion-restrictions li {
    margin-bottom: 10px;
  }

  @media (max-width: 992px) {
    .excursion-sidebar {
      order: -1;
    }
  }

  .excursion-info-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-soft);
  }

  .excursion-program-card {
    margin-top: 24px;
  }

  @media (min-width: 993px) {
    .excursion-info-card {
      position: sticky;
      top: calc(var(--nav-height) + 20px);
    }
  }

  .excursion-info-title {
    margin-top: 0;
    color: var(--color-teal);
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 15px;
  }

  .info-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }

  .info-icon-wrap {
    margin-right: 0.5rem;
    flex-shrink: 0;
    color: var(--color-gold);
  }

  .info-label {
    font-size: 0.8rem;
    color: var(--text-light);
  }

  .info-value {
    font-weight: 600;
  }

  .price-section {
    background: #fafafa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
  }

  .price-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--color-dark);
  }

  .price-group {
    margin-bottom: 15px;
  }

  .price-group:last-child {
    margin-bottom: 0;
  }

  .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
  }

  .price-label {
    font-weight: 600;
  }

  .price-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-teal);
  }

  .price-range {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: right;
  }

  .excursion-book-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    background: var(--color-gold);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.3s;
    border: none;
  }

  .excursion-book-btn:hover {
    background: var(--color-gold-dark);
    color: var(--color-white);
  }

  .excursion-unavailable-msg {
    padding: 15px;
    text-align: center;
    background: #eee;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-weight: 500;
  }

  /* Entertainment Page Elements */
  .entertainment-page {
    margin-top: calc(var(--nav-height) + 40px);
    padding-bottom: var(--spacing-section);
  }

  .entertainment-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
  }

  .entertainment-header .icon-wrap {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    box-shadow: var(--shadow-badge);
  }



  .entertainment-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
  }

  .entertainment-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
  }

  .no-excursions {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    color: var(--text-muted);
    font-size: 1.2rem;
  }

  /* Badge link hover effects (excursion cards) */
  a.excursion-card-badge {
    text-decoration: none;
    color: var(--color-white);
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
  }

  a.excursion-card-badge:hover {
    transform: scale(1.1);
    filter: brightness(1.15);
    box-shadow: var(--shadow-hover);
    color: var(--color-white);
  }

  /* Badge Page Elements */
  .badge-page {
    margin-top: calc(var(--nav-height) + 40px);
    padding-bottom: var(--spacing-section);
  }

  .badge-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
  }

  .badge-header-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-badge);
  }

  .badge-header-emoji {
    font-size: 2.5rem;
    line-height: 1;
  }

  .badge-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
  }

  .badge-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
  }

  /* Theme utility: red & green (for badge pages) */
  .bg-red {
    background-color: var(--color-red);
  }

  .bg-green {
    background-color: var(--color-green);
  }
}

@layer utilities {

  /* Icon Utilities */
  .icon-xs {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .icon-sm {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .icon-md {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .icon-lg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .icon-xl {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
  }

  .icon-xxl {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
  }

  .icon-logo-header {
    height: 60px;
    width: auto;
    flex-shrink: 0;
  }

  .icon-logo-footer {
    height: 80px;
    width: auto;
    flex-shrink: 0;
  }

  .icon-mask {
    display: inline-block;
    vertical-align: middle;
    background-color: currentColor;
    mask-image: var(--icon-url);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: var(--icon-url);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
  }
}