/**
 * 新版产品日历样式 - 优化版本
 * 根据设计图实现，增强响应式设计和兼容性
 */

/* 错误信息样式 */
.calendar-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px 16px;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin: 10px 0;
    font-size: 14px;
}

/* 加载状态样式 */
.calendar-loading {
    background-color: #d1ecf1;
    color: #0c5460;
    padding: 12px 16px;
    border: 1px solid #bee5eb;
    border-radius: 4px;
    margin: 10px 0;
    font-size: 14px;
    text-align: center;
}

.calendar-loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid #0c5460;
    border-radius: 50%;
    border-top-color: transparent;
    animation: calendar-spin 1s linear infinite;
}

@keyframes calendar-spin {
    to {
        transform: rotate(360deg);
    }
}

/* 日历容器 */
.new-calendar-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* 日历头部 - 月份导航 */
.new-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #00552d 0%, #00552d 100%);
    color: white;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.nav-month {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-month:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.nav-month:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.current-month-year {
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    flex: 1;
    text-align: center;
}

/* 日历网格 */
.new-calendar-grid {
    width: 100%;
    border-collapse: collapse;
}

/* 星期标题行 */
.calendar-header-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

.day-header {
    padding: 15px 8px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #495057;
    border-right: 1px solid #f1f3f4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.day-header:last-child {
    border-right: none;
}

.day-header.sunday {
    background: #ffebee;
    color: #dc3545;
}

.day-header.saturday {
    background: #e3f2fd;
    color: #dc3545;
}

/* 日历行 */
.calendar-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-bottom: 1px solid #f1f3f4;
}

.calendar-row:last-child {
    border-bottom: none;
}

/* 日历单元格 */
.calendar-cell {
    min-height: 80px;
    padding: 12px 8px;
    border-right: 1px solid #f1f3f4;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    vertical-align: top;
}

.calendar-cell:last-child {
    border-right: none;
}

/* 周末背景色 */
.calendar-cell.sunday {
    background: #ffebee;
    color: #dc3545;
}

.calendar-cell.saturday {
    background: #e3f2fd;
    color: #6f42c1;
}

/* 其他月份的日期 */
.calendar-cell.other-month {
    background: #f8f9fa;
    color: #adb5bd;
    cursor: default;
}

.calendar-cell.other-month:hover {
    background: #f8f9fa;
    transform: none;
}

/* 日期数字 */
.day-number {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 4px;
    display: block;
}

.calendar-cell.sunday .day-number {
    color: #dc3545;
}

.calendar-cell.saturday .day-number {
    color: #6f42c1;
}

/* 库存信息 */
.stock-info {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    margin: 0;
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    border-radius: 12px;
    display: inline-block;
    text-align: center;
    min-width: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stock-info.available {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.stock-info.limited {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.stock-info.full {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* 有库存日期的链接样式 */
/* .calendar-cell.has-stock {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
} */

.calendar-cell.has-stock:hover {
    background-color: #e3f2fd !important;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.calendar-cell.has-stock:active {
    transform: scale(0.98);
}

.calendar-cell.has-stock .stock-info {
    color: #1976d2;
    font-weight: 600;
}

.calendar-cell.has-stock:hover .stock-info {
    color: #0d47a1;
}

/* 周末链接特殊样式 */
.calendar-cell.has-stock.sunday:hover {
    background-color: #ffcdd2 !important;
}

.calendar-cell.has-stock.saturday:hover {
    background-color: #bbdefb !important;
}

/* 添加预约图标提示 */
.calendar-cell.has-stock::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 8px;
    height: 8px;
    background-color: #4caf50;
    border-radius: 50%;
    opacity: 0.7;
}

.calendar-cell.has-stock:hover::after {
    opacity: 1;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

/* 悬停效果 */
.calendar-cell:not(.other-month):hover {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.2);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .new-calendar-container {
        margin: 10px;
        border-radius: 8px;
    }
    
    .new-calendar-header {
        padding: 15px;
        font-size: 14px;
        flex-direction: column;
        gap: 15px;
    }
    
    .current-month-year {
        font-size: 16px;
    }
    
    .nav-month {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .calendar-cell {
        min-height: 60px;
        padding: 8px 4px;
    }
    
    .day-number {
        font-size: 14px;
    }
    
    .stock-info {
        font-size: 12px;
        bottom: 50%;
        left: 50%;
        transform: translate(-50%, 50%);
        padding: 3px 6px;
        min-width: 25px;
    }
    
    .day-header {
        padding: 10px 4px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .new-calendar-container {
        border-radius: 6px;
    }
    
    .calendar-cell {
        min-height: 50px;
        padding: 6px 2px;
    }
    
    .day-number {
        font-size: 12px;
    }
    
    .stock-info {
        font-size: 10px;
        bottom: 50%;
        left: 50%;
        transform: translate(-50%, 50%);
        padding: 2px 4px;
        min-width: 20px;
    }
    
    .day-header {
        padding: 8px 2px;
        font-size: 11px;
    }
}

/* 高对比度模式支持 */
@media (prefers-contrast: high) {
    .new-calendar-container {
        border-width: 2px;
        border-color: #000000;
    }
    
    .calendar-cell {
        border-width: 2px;
    }
    
    .nav-month {
        border: 2px solid rgba(255, 255, 255, 0.5);
    }
}

/* 减少动画模式支持 */
@media (prefers-reduced-motion: reduce) {
    .calendar-cell,
    .nav-month {
        transition: none;
    }
    
    .calendar-cell:hover {
        transform: none;
    }
    
    .nav-month:hover {
        transform: none;
    }
}

/* 打印样式 */
@media print {
    .new-calendar-container {
        border: 2px solid #000;
        box-shadow: none;
    }
    
    .new-calendar-header {
        background: #f0f0f0 !important;
        color: #000 !important;
    }
    
    .nav-month {
        display: none;
    }
    
    .calendar-cell {
        border: 1px solid #000;
    }
    
    .day-header {
        border: 1px solid #000;
        background: #f0f0f0 !important;
    }
    
    .calendar-cell.sunday,
    .calendar-cell.saturday {
        background: #f8f8f8 !important;
    }
}

@charset "utf-8";
@use '../foundation' as *;

.p-form {
  /*padding: 30.4rem 0 16rem;*/
  @include mq(md, max) {
    padding: 19.8rem 0 8rem;
  }
  .p-form__info {
    margin-top: 3.3rem;
  }
}
.p-form__ttl {
  color: $c-main;
  font-family: $font-family-serif;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.55;
  text-align: center;
  @include mq(md, max) {
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
.p-form__order {
  max-width: 90rem;
  width: 100%;
  margin: 8rem auto 0;
  @include mq(md, max) {
    margin-top: 4.1rem;
  }
}
.p-form__wrap {
  &:not(:first-child) {
    margin-top: 8.3rem;
    @include mq(md, max) {
      margin-top: 4rem;
    }
  }
}

.p-form__stl {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  background-color: #d8c9af;
  padding: 1.2rem 0;
  @include mq(md, max) {
    padding: 1.6rem 0;
    font-size: 1.8rem;
  }
}

.p-form__stack {
  max-width: 50rem;
  width: 100%;
  margin: 4rem auto 0;
  @include mq(md, max) {
    margin: 1.8rem auto 0;
    padding: 0 2.8rem;
  }
}

.p-form__input,
.p-form__textarea,
.p-form__select,
.p-form__stack select,
.p-form__stack input[type='text'],
.p-form__stack input[type='email'],
.p-form__stack input[type='tel'] {
  width: 100%;
  height: 4rem;
  font-size: 1.6rem;
  padding: 0 1.8rem;
  border: 1px solid #2d261f;
  background-color: #ffffff;
  color: $c-text-base;
  line-height: 1;
}

::placeholder {
  color: #cccccc;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.p-form__stack select {
  background: #fff url(/wp-content/themes/original/assets/images/common/down_arrow.svg) no-repeat center right 3%/1.1rem 1rem;
}

.p-form__textarea {
  height: 10rem;
  padding: 1.1rem 1.8rem;
  line-height: 1.75;
  @include mq(md, max) {
    padding: 0.8rem 1.8rem;
  }
}
.p-form__dl {
  &:not(:first-child) {
    margin-top: 1.9rem;
    @include mq(md, max) {
      margin-top: 1.4rem;
    }
  }
}
.p-form__dl--consent .p-form__dd {
  margin-top: 2rem;
}
.p-form__dt {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.p-form__dt .p-form__link {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: underline;
  margin-left: 0.8rem;
  @include mq(md, max) {
    margin: 0.5rem 0 0 1.1em;
  }
}

.p-form__dd {
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.p-form__price {
  font-weight: 700;
  span {
    line-height: 0.8;
    font-size: 2.8rem;
    font-weight: 700;
  }
}

.p-form__checklabel {
  position: relative;
  font-size: 1.4rem;
  cursor: pointer;
}

.p-form__checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.p-form__checktext {
  display: inline-block;
  position: relative;
  padding-left: 4.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.p-form__checktext::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 3rem;
  height: 3rem;
  border: 1px solid #2d261f;
  background-color: #ffffff;
  transition: 0.3s;
}

.p-form__checktext::after {
  content: '';
  position: absolute;
  top: -13%;
  left: 10%;
  width: 0.9rem;
  height: 1.8rem;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transform: rotate(45deg);
}

.p-form__checkbox:checked + .p-form__checktext::after {
  border-right-color: #2d261f;
  border-bottom-color: #2d261f;
}

.p-form__checkbox {
  width: 3rem;
  height: 3rem;
}

.p-form__link {
  display: inline-block;
  margin-left: 0.5em;
  font-weight: 700;
  text-decoration: underline;
}

.p-form__actions {
  margin-top: 8.9rem;
  @include mq(md, max) {
    margin-top: 4.4rem;
  }
}

.p-form__btn {
  display: block;
  align-content: center;
  background-color: #2d261f;
  border-radius: 3.5rem;
  color: #fff;
  height: 7rem;
  margin: 0 auto;
  position: relative;
  transition: 0.5s;
  max-width: 32rem;
  width: 100%;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-align: center;
  @include mq(md, max) {
    max-width: 45rem;
    width: 100%;
    height: 6rem;
    font-size: 1.4rem;
  }
  &:not(:first-child) {
    margin-top: 1rem;
  }
  &::before {
    aspect-ratio: 10.4 / 9.7;
    mask-image: url(/wp-content/themes/original/assets/images/common/arrow.svg);
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: cover;
    background-color: #d8c9af;
    content: '';
    display: block;
    position: absolute;
    right: 9.375%;
    top: 50%;
    translate: 0 -50%;
    width: 1.05rem;
    transition: 0.3s;
  }
  @media (hover: hover) and (pointer: fine) {
    &:hover {
      opacity: 1;
      background-color: #897e76;
    }
  }
  &--back {
    background-color: transparent;
    border: #2d261f solid 1px;
    color: #2d261f;
    &::before {
      right: auto;
      left: 9.375%;
      background-color: #2d261f;
      translate: 0 -50%;
      transform: scale(-1, 1);
    }
    @media (hover: hover) and (pointer: fine) {
      &:hover {
        opacity: 0.7;
        background-color: #2d261f;
        color: $c-white;
        &::before {
          background-color: $c-white;
        }
      }
    }
  }
}

body {
  position: relative;
  &::after {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(132, 132, 132, 1);
    mix-blend-mode: multiply;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
  }
  &.reserved-chk {
    &::after {
      opacity: 1;
      pointer-events: all;
    }
    .p-form__popup {
      display: block;
    }
  }
}
.p-form__popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 51rem;
  width: 84%;
  background-color: $c-white;
  padding: 4rem 6rem 5rem;
  z-index: 101;
  @include mq(md, max) {
    padding: 3rem 2.6rem 4rem;
  }
  .p-form__btn {
    margin-top: 2rem;
    @include mq(md, max) {
      margin-top: 1.8rem;
    }
  }
}
.p-form__popup-text {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2;
}
.p-form__popup-input {
  margin-top: 1.4rem;
  @include mq(md, max) {
    margin-top: 1.3rem;
  }
  input {
    width: 100%;
    font-size: 1.6rem;
    padding: 0.8rem 1.2rem;
    border: 1px solid #2d261f;
    background-color: #ffffff;
    text-align: center;
  }
}

.p-form__thanks-ttl {
  color: $c-main;
  font-family: $font-family-serif;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.55;
  text-align: center;
  @include mq(md, max) {
    font-size: 2.2rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
    white-space: nowrap;
  }
}
.p-form__thanks-text {
  margin-top: 6rem;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
  @include mq(md, max) {
    margin-top: 2.3rem;
    font-size: 1.55rem;
  }
  span {
    margin: 0 0.5em;
    font-size: 3.6rem;
    font-weight: 700;
    color: #f77a26;
    line-height: 0.9;
  }
}

/* =============================
   前台新结构（前台日历.html）适配样式
   ============================= */

.p-single-item__calender-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 16px;
  /* background: #fff; */
  /* border: 1px solid #e1e8ed; */
  border-radius: 8px;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.06); */
  overflow: hidden;
}

.p-single-item__calender-month {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  /* background: #fafafa; */
  /* border-bottom: 1px solid #eceff1; */
}

.p-single-item__calender-prev,
.p-single-item__calender-next {
  font-weight: 600;
  color: #333;
}

.p-single-item__calender-prev a,
.p-single-item__calender-next a {
  color: #333;
  text-decoration: none;
  padding: 6px 10px;
  /* border: 1px solid #dcdfe6; */
  border-radius: 4px;
  /* background: #fff; */
}

.p-single-item__calender-prev a:hover,
.p-single-item__calender-next a:hover {
  background: #f5f7fa;
}

.p-single-item__calender-target p {
  margin: 0;
  font-weight: 600;
  text-align: center;
}

.p-single-item__calender-body {
  padding: 8px 12px 16px;
}

table.calendar {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

table.calendar thead th {
  background: #f0f2f5;
  color: #333;
  font-weight: 600;
  border: 1px solid #e5e7eb;
  padding: 8px;
}

table.calendar thead th.sun {
  background: #ffeef0;
  color: #c0392b;
}

table.calendar thead th.sat {
  background: #e7f0ff;
  color: #1f6feb;
}

table.calendar tbody td {
  border: 1px solid #e5e7eb;
  background: #e9ecef;
  height: 88px;
  vertical-align: top;
  padding: 6px 8px;
  position: relative;
}

table.calendar tbody td .date {
  display: inline-block;
  font-weight: 600;
  color: #333;
}

table.calendar tbody td .slots {
  display: block;
  margin-top: 28px;
  font-size: 20px;
  font-weight: 700;
  color: #333;
  text-align: center;
}

table.calendar tbody td .slots .small {
  font-size: 12px;
  font-weight: 600;
  margin-left: 2px;
}

table.calendar tbody td .slots.soldout {
  color: #f2994a;
}

table.calendar tbody td.active {
  background: #f8fafc;
  cursor: pointer;
}

table.calendar tbody td.active:hover .date,table.calendar tbody td.active:hover .slots{
    color:#FFF;
}

table.calendar tbody td.active:hover {
  background: #fff;
}

/* =============================
   前台“时间段选择”视图样式
   ============================= */
.cr-time-wrapper {
  margin-top: 80px;
  margin-bottom: 80px;
  max-width: 640px; /* 与日历容器宽度一致 */
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #333; /* 与日历一致的浅灰边框 */
  background: #fff;
  box-sizing: border-box;
}
.cr-time-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 0;
  padding: 12px 16px;
  background: none;
  border-bottom: 1px solid #eceff1; /* 与日历头部相近 */
}
.cr-time-title {
  text-align: center;
}
.cr-time-title p {
  display: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 20px;
  line-height: 1.8;
  margin: 0;
}
.cr-time-back {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cr-time-back a {
  color: #2d261f;
  text-decoration: underline;
}

.cr-time-body {
  display: flex;
}
.cr-time-date-list {
  width: 140px;
  box-sizing: border-box;
  border-right: 1px solid #e5e7eb; /* 与日历一致的分隔线 */
}
.cr-time-date {
  margin: 0;
  padding: 12px 16px; /* 与时间段高度一致 */
  border-top: 1px solid #e5e7eb; /* 日期边框与日历一致 */
  border-bottom: 1px solid #e5e7eb; /* 日期边框与日历一致 */
  border-right: none; /* 由容器提供分隔线，避免双线 */
  background-color: #f0f2f5; /* 类似日历表头的浅灰 */
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease;
}
.cr-time-date:hover { background-color: #e9ecef; }
.cr-time-date:first-child { border-top: none; }
.cr-time-date:last-child { border-bottom: none; }
.cr-time-date .day {
  opacity: 0.8;
}
.cr-time-date.white {
  background-color: #ececec;
  color: #999;
  cursor: default;
}
.cr-time-date.active {
  background-color: #00552e; /* 类似日历选中态 */
  color: #fff;
}

.cr-time-block {
  flex: 1;
  margin-left: 0; /* 去除负边距，避免双线 */
}
.cr-time-item {
  margin: 0;
  border: 1px solid #e5e7eb; /* 与日历一致的浅灰边框 */
  border-left: none; /* 移除左侧边框，避免与日期列叠加为2px */
  border-top: none; /* 避免与上一行叠加为双线 */
  padding: 12px 16px;
  cursor: pointer;
  background: #fff;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease;
}
.cr-time-item:last-child { border-bottom: none; }
.cr-time-item:hover { background: #00552e; color: #fff;}
.cr-time-item .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cr-time-item .bb {
  font-weight: 700;
}

.cr-time-item.soldout {
  color: #f2994a;
  cursor: not-allowed;
}
.cr-time-empty {
  margin: 0;
  padding: 14px 12px;
  border: 1px dashed #e5e7eb; /* 与整体风格统一 */
  color: #666;
}
.cr-time-loading {
  margin: 0;
  padding: 14px 12px;
  color: #666;
  text-align: center;
}


#reservation-calendar {
background-image: url("https://www.sapore-shop.com/wp-content/uploads/2025/11/bg.webp");
background-size: 100% auto;
background-position: top;
background-repeat: repeat-x;
padding-top: 80px;
}


.p-single-item__calender-ttl{
    padding-bottom: 20px;
}

.p-single-item__calender-text {
    display: block;
    max-width: 900px;
    width:100%;
    margin: 10px auto;
    color: #f77a26;
    font-weight: 500;
    padding-left: 1.6rem;
    position: relative;
}