@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

body {
    margin: 0;
    
    font-family: 'Oswald',sans-serif;
    background: #fff;
    text-transform: uppercase;
    color: #444;
    font-weight: 400;
  }
  main {
    max-width: 568px;
    margin: 0 auto;
    padding: 16px ;
    min-width: 300px;
  }
  .logo-group{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 16px 12px 16px;
    border-radius: 50px;
    /* margin: -16px -16px 0 -16px; */
    border: 1px solid #f0f0f0;

  }
  .logo-group img {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: 20px;
    text-align: center;
    color: #999;
    font-weight: 300;
    margin: 20px 0 12px 0;
  }

  .shine-title {
    font-weight: 400;
    color: #505050;
    position: relative;
    overflow: hidden;
  }
  .shine-title > span {
    color: brown;
  }
  
  .shine-title::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 5%, rgba(255,255,255,0.6), transparent);
    animation: shine 2s infinite;
  }
  
  @keyframes shine {
    0% {
      left: -100%;
    }
    100% {
      left: 125%;
    }
  }
  




  .subtitle {
    font-size: 26px;
    text-align: center;
    margin-bottom: 24px;
  }
  .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* width: 100%; */
    text-transform: uppercase;
    padding: 24px 12px;
    font-weight: 400;
    background-color: #EA3E4D;
    border: 2px solid #F8A2A6;
    color: white;
    text-align: center;
    border-radius: 16px;
    text-decoration: none;
    margin: 20px 0;
  }
  .btn > img{
    width: 32px;
    height: 32px;
    }
  .paragraph {
    margin: 16px;
    font-size: 18px;
    white-space: pre-wrap;
    line-height: 1.5;
  }
  .address-block, .qr-block {
    margin: 20px 0;
    text-align: center;
    font-weight: 300;
  }
  .address-block p, .qr-block p {
    margin: 4px 0;
  }
  .address-block > p > span{
    color: brown;
  }
  .slider-container {
    position: relative;
    overflow: hidden;
  }
  .slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  .slider::-webkit-scrollbar {
    display: none;
  }
  .slider img {
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    scroll-snap-align: center;
    border-radius: 20px;
    border: 2px solid #cacaca;
    /* margin-right: 10px; */
  }
  .slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 8px;
  }
  .slider-controls button {
    /* padding: 8px 10px; */
    font-size: 16px;

    border-radius: 50%;
    border: none;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid #f0f0f0;

    justify-content: center;
  }
  .slider-controls > button > svg {
    width: 20px;
    height: 20px;
    /* border: 2px solid #cacaca; */
    fill: brown;
    padding: 8px 4px;
      
  }

  .shine-btn {
    position: relative;
    overflow: hidden;
  }
  
  .shine-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 10%, rgba(255,255,255,0.3) 50%, transparent 90%);
    animation: shine1 2s infinite;
  }
  
  @keyframes shine1 {
    0% {
      left: -105%;
    }
    100% {
      left: 125%;
    }
  }
  