/* ===================================
   Countdown Card Shortcode Styles
   =================================== */

   body .countdown-title-page {
    font-family: "Syne", Arial, sans-serif;
    font-size: 70px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 80px;
    color: #ffffff;
    max-width: 80vw;
    margin: auto;
  }
  
  body .countdown-card-wrapper {
    width: 100%;
    margin: 0px;
  }
  
  body .countdown-card-container {
    display: grid;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    align-items: center;
  }
  
  /* Layout Options */
  body .countdown-card-container {
    grid-template-columns: 1fr 1fr;
  }
  
  /* Card Content */
  body .countdown-card-content {
    padding: 30px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #000000ab;
    color: #ffffff;
    height: fit-content;
    border-radius: 9px;
  }
  
  body .countdown-card-inner {
    width: 100%;
    max-width: 600px;
  }
  
  body .countdown-card-title {
    font-family: "Syne", Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 4px 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 48px;
    color: #ffffff;
  }
  
  body .countdown-card-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #e4e4e4;
  }
  
  /* Countdown Timer */
  body .countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-family: "Figtree", Arial, sans-serif;
    margin: 20px 0;
    flex-wrap: wrap;
  }
  
  body .countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  body .time-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    text-align: center;
    padding: 20px 15px;
    min-width: 90px;
    margin-bottom: 10px;
    background-color: #262423;
    transition: transform 0.2s ease;
  }
  
  body .time-box:hover {
    transform: scale(1.05);
  }
  
  body .time-box .num {
    font-family: "Figtree", Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    display: block;
    line-height: 30px;
    color: #ffffff;
  }
  
  body .label.time-name {
    font-family: "Figtree", Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0em;
    margin-top: 8px;
    color: #828282;
  }
  
  body .colon {
    font-size: 3rem;
    line-height: 1;
    margin-top: -50px;
    color: #dbdbdb;
  }
  
  /* Button */
  body .countdown-card-button {
    display: inline-block;
    padding: 16px 45px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.13em;
    font-family: "Figtree", Arial, sans-serif;
    cursor: pointer;
    border-radius: 4px;
    background-color: #f61835;
    color: #ffffff;
    border: 1px solid #f61835;
  }
  
  body .countdown-card-button:hover {
    background-color: #000000;
    color: #f61835;
    border: 1px solid #f61835;
  }
  
  /* Image Section */
  body .countdown-card-image {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
  }
  
  body .countdown-card-image img {
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  /* Responsive Design */
  @media (min-width: 768px) and (max-width: 1024px) {
    body .countdown-card-button {
      padding: 15px 25px;
      font-size: 16px;
    }
  
    body .colon {
      display: none;
    }
  }
  
  @media (max-width: 768px) {
    body .countdown-title-page {
      margin-top: 50px;
      font-size: 30px;
      line-height: 1.1;
      margin-bottom: 30px;
    }
  
    body .countdown-card-container {
      grid-template-columns: 1fr;
    }
  
    body .countdown-card-title {
      font-size: 32px;
      text-align: center;
    }
  
    body .countdown-card-description {
      font-size: 14px;
      text-align: center;
    }
  
    body .countdown-timer {
      gap: 10px;
      margin: 30px 0;
    }
  
    body .time-box {
      min-width: 70px;
      padding: 15px 10px;
    }
  
    body .time-box .num {
      font-size: 2.5rem;
    }
  
    body .label.time-name {
      font-size: 0.85rem;
    }
  
    body .colon {
      font-size: 2.5rem;
    }
  
    body .countdown-card-button {
      padding: 15px;
      font-size: 16px;
      width: 100%;
    }
  
    body .countdown-card-image {
      min-height: auto;
    }
  
    body .countdown-card-image img {
      width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    body .countdown-title-page {
      margin-top: 20px;
    }
  
    body .countdown-card-title {
      font-size: 28px;
    }
  
    body .countdown-timer {
      gap: 8px;
      margin: 25px auto;
      max-width: 190px;
  }
  
    body .time-box {
      min-width: 60px;
      padding: 12px 8px;
      border-radius: 8px;
    }
  
    body .time-box .num {
      font-size: 2rem;
    }
  
    body .label.time-name {
      font-size: 0.75rem;
    }
  
    body .colon {
      display: none;
    }
  
    body .countdown-card-image {
      min-height: 200px;
    }
  }
  