
/* Extracted from master.blade.php */

    html, body {
      background-color: #ffffff !important;
      overflow-x: hidden !important;
      max-width: 100% !important;
    }
    .page-wrapper {
      background-color: #ffffff !important;
      overflow-x: hidden !important;
      max-width: 100% !important;
      position: relative !important;
    }
  

/* Extracted from _head.blade.php */

    body {
      margin: 0;
      padding: 0;
      font-family: 'Roboto', Helvetica Neue, Helvetica, Arial, sans-serif;
      font-size: 16px
    }

    a {
      color: #000;
      text-decoration: none !important
    }

    .header {
      background-color: #fff
    }

    .header .top-menu .menu-top {
      height: 50px;
      align-items: center;
      justify-content: space-around;
      padding: 0 20px;
      background: #de0985
    }

    .header .top-menu .menu-top a {
      color: #fff
    }

    .section-slider {
      padding: 0;
      margin: auto;
      height: auto;
      border-radius: 10px;
      overflow: hidden;
    }

    .slideshow-instant-wrapper {
      position: relative;
      width: 100%;
      height: auto;
      max-height: none;
      overflow: hidden;
      border-radius: 10px;
    }

    .first-slide-instant {
      width: 100%;
      background: #f5f5f5;
      position: relative;
      z-index: 2;
    }

    .first-slide-instant img {
      width: 100%;
      height: auto;
      display: block;
    }

    .main-carousel {
      position: relative;
      width: 100%;
      height: auto;
      max-height: none;
      opacity: 1;
      visibility: visible;
    }

    .main-carousel .swiper-wrapper {
      height: auto;
    }

    .main-carousel .swiper-slide {
      height: auto;
      width: 100%;
    }

    .main-carousel .swiper-slide:first-child {
      display: block;
      opacity: 1;
      visibility: visible;
    }

    .main-carousel .swiper-slide:not(:first-child) {
      display: none;
    }

    .main-carousel.swiper-initialized .swiper-slide {
      display: block;
    }

    .main-carousel .slide-item {
      position: relative;
      width: 100%;
    }

    .main-carousel .slide-image {
      width: 100%;
      height: auto;
      display: block;
    }

    .main-carousel .swiper-button-next,
    .main-carousel .swiper-button-prev {
      color: #de0985;
      width: 50px;
      height: 50px;
      background-color: rgba(255, 255, 255, 0.5);
      border-radius: 50%;
      opacity: 0.3;
      transition: all 0.3s ease;
    }

    .main-carousel .swiper-button-next:hover,
    .main-carousel .swiper-button-prev:hover {
      opacity: 1;
      background-color: rgba(255, 255, 255, 0.9);
    }

    .main-carousel .swiper-button-next::after,
    .main-carousel .swiper-button-prev::after {
      font-size: 20px;
      font-weight: bold;
    }

    .main-carousel .swiper-button-prev {
      left: 20px;
    }

    .main-carousel .swiper-button-next {
      right: 20px;
    }

    .main-carousel .swiper-pagination {
      bottom: 20px;
    }

    .main-carousel .swiper-pagination-bullet {
      background-color: #de0985;
      opacity: 0.5;
    }

    .main-carousel .swiper-pagination-bullet-active {
      opacity: 1;
    }

    @media (max-width: 767px) {

      .main-carousel .swiper-button-next,
      .main-carousel .swiper-button-prev {
        display: none;
      }
    }

    img[data-src] {
      opacity: 0;
      transition: opacity 0.3s;
    }

    img[data-src].loaded {
      opacity: 1;
    }

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

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

      100% {
        background-position: -200% 0;
      }
    }

    .lazy-map-container {
      position: relative;
      min-height: 400px;
      background: #f5f5f5;
      border-radius: 4px;
      overflow: hidden;
    }

    .map-placeholder {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
      z-index: 1;
      transition: opacity 0.3s ease;
    }

    .lazy-map-container.loaded .map-placeholder {
      opacity: 0;
      pointer-events: none;
    }

    .map-placeholder-content {
      text-align: center;
      padding: 20px;
    }

    .map-loading-spinner {
      width: 40px;
      height: 40px;
      border: 4px solid #de0985;
      border-top-color: transparent;
      border-radius: 50%;
      animation: map-spin 0.8s linear infinite;
      margin: 0 auto 15px;
    }

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

    .map-placeholder-text {
      color: #666;
      font-size: 14px;
      margin-bottom: 15px;
    }

    .map-load-btn {
      background: #de0985;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 4px;
      cursor: pointer;
      font-size: 14px;
      transition: background 0.3s ease;
    }

    .map-load-btn:hover {
      background: #b8076e;
    }

    .map-content {
      width: 100%;
      height: 100%;
      min-height: 400px;
    }

    .map-content iframe,
    .map-content>* {
      width: 100%;
      height: 100%;
      min-height: 400px;
      border: none;
    }

    .lazy-map-container.loaded .map-content {
      display: block !important;
    }
  

/* Extracted from _footer.blade.php */

  .contact-consultation-wrap {
    background: #ffffff !important;
    width: 100%;
    padding: 30px 0 25px !important;
    position: relative;
    z-index: 2;
    border-top: 1px solid #f0f0f4;
  }
  .contact-consultation-section {
    background: #ffffff !important;
    border: none !important;
  }
  .contact-consultation-section .header-sale {
    border-bottom: none !important;
    padding-top: 0 !important;
    padding-bottom: 20px !important;
  }
  .contact-consultation-section .title-sale {
    color: #de0985 !important;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }


/* Extracted from _footer.blade.php */

.zalo-chat-button {
  position: fixed;
  bottom: 85px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0068FF;
  box-shadow: 0 4px 12px rgba(0, 104, 255, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.zalo-chat-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 104, 255, 0.6);
}

.zalo-chat-button svg {
  width: 48px;
  height: 48px;
}

.zalo-chat-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.zalo-chat-button:hover .zalo-chat-tooltip {
  opacity: 1;
}

.zalo-chat-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid #333;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* Mobile Sticky CTA CSS */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.mobile-sticky-cta .cta-wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.mobile-sticky-cta .cta-btn {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 12px 2px;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: clamp(11.5px, 3.4vw, 13px);
    text-transform: uppercase;
    letter-spacing: 0.2px;
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    box-sizing: border-box;
    transition: opacity 0.2s ease;
}

.mobile-sticky-cta .cta-btn:last-child {
    border-right: none;
}

.mobile-sticky-cta .cta-btn:active {
    opacity: 0.85;
}

.mobile-sticky-cta .btn-call {
    background: linear-gradient(135deg, #de0985 0%, #b3066a 100%);
}

.mobile-sticky-cta .btn-zalo {
    background: linear-gradient(135deg, #0088ff 0%, #0060d5 100%);
}

.mobile-sticky-cta .btn-pancake {
    background: linear-gradient(135deg, #1677ff 0%, #0958d9 100%);
}

.mobile-sticky-cta .cta-btn i {
    font-size: 15px;
}

.mobile-sticky-cta .btn-call i {
    animation: cta-shake 2s infinite ease-in-out;
}

@keyframes cta-shake {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(-15deg); }
  20% { transform: rotate(15deg); }
  30% { transform: rotate(-15deg); }
  40% { transform: rotate(15deg); }
  50% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

@media (max-width: 768px) {
  .zalo-chat-button {
    display: none !important; /* Ẩn nút Zalo tròn trên mobile */
  }
  
  .mobile-sticky-cta {
    display: block !important; /* Hiện thanh 3 nút bar trên mobile */
  }
  
  /* Ẩn nút chữ nhật/tròn nổi của Pancake trên mobile để tránh đè lên thanh bar */
  #pancake-chat-plugin-root .pkcp-button,
  #pancake-chat-plugin-root .pkcp-button-wrapper,
  #pancake-chat-plugin-root .pkcp-button-rectangle,
  #pancake-chat-plugin-root .pkcp-button-circle,
  #pancake-chat-plugin-root .pkcp-button-rectangle-horizontal,
  #pancake-chat-plugin-root .pkcp-button-wrapper-welcome {
    display: none !important;
  }

  /* Đẩy nội dung web lên một chút để không bị che mất bởi thanh cta */
  body {
    padding-bottom: 55px !important;
  }
}

@keyframes zalo-pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(0, 104, 255, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(0, 104, 255, 0.7);
  }
}

.zalo-chat-button {
  animation: zalo-pulse 2s infinite;
}


/* Extracted from _calendar_mini_new_form.blade.php */

.calc-container { background-color: #fff; border: 1px solid #ddd; border-radius: 8px; padding: 20px; color: #333; font-family: Arial, sans-serif; box-shadow: 0 0 10px rgba(0,0,0,0.05); margin-bottom: 30px; }
.calc-header { background-color: #92d050; color: white; text-align: center; padding: 10px; font-weight: bold; font-size: 24px; margin-bottom: 20px; border-radius: 4px; text-transform: uppercase; }
.calc-result-box { background-color: #f8f9fa; border: 2px dashed #92d050; padding: 20px; border-radius: 8px; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.form-label { font-weight: 500; font-size: 15px; margin-bottom: 0; color: #333; }
.calc-btn { background-color: #de0985; color: white; border: none; border-radius: 4px; padding: 8px 15px; font-size: 15px; font-weight: 600; cursor: pointer; width: 100%; margin-top: 20px; text-transform: uppercase; transition: all 0.3s; }
.calc-btn:hover { background-color: #c00772; }
.result-price { font-size: 36px; font-weight: bold; color: #de0985; text-align: center; margin: 20px 0 10px 0; }
.result-total { text-align: center; font-size: 18px; color: #333; margin-bottom: 20px; }
.action-btns { display: flex; justify-content: space-between; gap: 5px; }
.btn-zalo { flex: 1; background-color: #0088cc; color: white; border: none; padding: 6px 2px; border-radius: 4px; font-weight: 600; text-align: center; font-size: 11px; cursor: pointer; text-transform: uppercase; }
.btn-order { flex: 1; background-color: #28b241; color: white; border: none; padding: 6px 2px; border-radius: 4px; font-weight: 600; text-align: center; font-size: 11px; cursor: pointer; text-transform: uppercase; }
.btn-zalo:hover, .btn-order:hover { opacity: 0.9; }
.calc-container input[type="radio"] { display: inline-block !important; -webkit-appearance: radio !important; appearance: radio !important; opacity: 1 !important; visibility: visible !important; width: 15px !important; height: 15px !important; margin-right: 5px !important; }


/* Extracted from _namecard_ep_kim_new_form.blade.php */

.calc-container { background-color: #fff; border: 1px solid #ddd; border-radius: 8px; padding: 20px; color: #333; font-family: Arial, sans-serif; box-shadow: 0 0 10px rgba(0,0,0,0.05); margin-bottom: 30px; }
.calc-header { background-color: #28b241; color: white; text-align: center; padding: 10px; font-weight: bold; font-size: 24px; margin-bottom: 20px; border-radius: 4px; text-transform: uppercase; }
.calc-result-box { background-color: #f8f9fa; border: 2px dashed #28b241; padding: 20px; border-radius: 8px; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.form-label { font-weight: 500; font-size: 15px; margin-bottom: 0; color: #333; }
.calc-btn { background-color: #de0985; color: white; border: none; border-radius: 4px; padding: 8px 15px; font-size: 15px; font-weight: 600; cursor: pointer; width: 100%; margin-top: 20px; text-transform: uppercase; transition: all 0.3s; }
.calc-btn:hover { background-color: #c00772; }
.result-price { font-size: 36px; font-weight: bold; color: #de0985; text-align: center; margin: 20px 0 10px 0; }
.result-total { text-align: center; font-size: 18px; color: #333; margin-bottom: 20px; }
.action-btns { display: flex; justify-content: space-between; gap: 5px; }
.btn-zalo { flex: 1; background-color: #0088cc; color: white; border: none; padding: 6px 2px; border-radius: 4px; font-weight: 600; text-align: center; font-size: 11px; cursor: pointer; text-transform: uppercase; }
.btn-order { flex: 1; background-color: #28b241; color: white; border: none; padding: 6px 2px; border-radius: 4px; font-weight: 600; text-align: center; font-size: 11px; cursor: pointer; text-transform: uppercase; }
.btn-zalo:hover, .btn-order:hover { opacity: 0.9; }
.calc-container input[type="radio"] { display: inline-block !important; -webkit-appearance: radio !important; appearance: radio !important; opacity: 1 !important; visibility: visible !important; width: 15px !important; height: 15px !important; margin-right: 5px !important; }


/* Extracted from _print_new_form.blade.php */

.calc-container {
    background-color: transparent;
    border: none;
    padding: 0;
    color: #334155;
    font-family: 'Inter', Arial, sans-serif;
}
.calc-header { display: none; }
.calc-result-box {
    background: #fff;
    border: 1.5px solid #f0f0f5;
    padding: 16px 16px;
    border-radius: 14px;
    margin-top: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.calc-btn {
    background: #de0985;
    color: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(222, 9, 133, 0.22);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-top: 24px;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
}
.calc-btn:hover {
    background: #be0571;
    box-shadow: 0 6px 20px rgba(222, 9, 133, 0.3);
    transform: translateY(-1px);
}
.result-price {
    font-size: 32px;
    font-weight: 700;
    color: #de0985;
    text-align: center;
    margin: 15px 0 10px 0;
}
.result-total { text-align: center; font-size: 16px; color: #475569; }
.action-btns { display: flex; gap: 10px; justify-content: center; margin-top: 20px; }
.action-btns .btn-zalo, .action-btns .btn-order {
    flex: 1;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    color: white;
    transition: opacity 0.2s ease;
}
.action-btns .btn-zalo { background: #0088cc; }
.action-btns .btn-order { background: #28b241; }
.action-btns .btn-zalo:hover, .action-btns .btn-order:hover { opacity: 0.9; }
.calc-form-field { margin-bottom: 16px; }
.calc-form-field > label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 7px;
}
.calc-form-field .form-control,
.calc-form-field select {
    display: block;
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    background-color: #fff;
    border: 1.5px solid #e8edf2;
    border-radius: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    height: auto !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.calc-form-field .form-control:focus,
.calc-form-field select:focus {
    outline: none;
    border-color: #de0985;
    box-shadow: 0 0 0 3px rgba(222,9,133,0.08);
}
.calc-form-field .qty-row { display: flex; align-items: center; gap: 10px; }
.calc-form-field .qty-row input { width: 110px; flex-shrink: 0; }
.calc-form-field .qty-row span { color: #64748b; font-size: 14px; }
.calc-radio-group { display: flex; gap: 20px; margin-top: 4px; }
.calc-radio-group label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: #334155;
    cursor: pointer;
    margin-bottom: 0;
}
.calc-radio-group input[type="radio"] { accent-color: #de0985; width: 16px; height: 16px; }
.calc-container .row {
    margin-left: 0;
    margin-right: 0;
}
.calc-container .col-md-6,
.calc-container .col-6 {
    padding-left: 8px;
    padding-right: 8px;
}
.calc-result-box .result-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    color: #94a3b8;
}
.calc-result-box .result-placeholder i { font-size: 36px; margin-bottom: 10px; opacity: 0.5; }
.calc-result-box .result-placeholder p { font-size: 13px; margin: 0; }
/* Pill toggle for radio */
.calc-toggle-group {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}
.calc-toggle-group input[type="radio"] {
    display: none;
}
.calc-toggle-group label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 22px;
    border-radius: 8px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0;
    user-select: none;
}
.calc-toggle-group input[type="radio"]:checked + label {
    background: #fdf2f8;
    border-color: #de0985;
    color: #de0985;
    box-shadow: 0 2px 8px rgba(222,9,133,0.12);
}
.calc-toggle-group label:hover {
    border-color: #de0985;
    color: #de0985;
}


/* Extracted from _calendar_bracelet_new_form.blade.php */

.calc-container { background-color: #fff; border: 1px solid #ddd; border-radius: 8px; padding: 20px; color: #333; font-family: Arial, sans-serif; box-shadow: 0 0 10px rgba(0,0,0,0.05); margin-bottom: 30px; }
.calc-header { background-color: #28b241; color: white; text-align: center; padding: 10px; font-weight: bold; font-size: 24px; margin-bottom: 20px; border-radius: 4px; text-transform: uppercase; }
.calc-result-box { background-color: #f8f9fa; border: 2px dashed #28b241; padding: 20px; border-radius: 8px; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.form-label { font-weight: 500; font-size: 15px; margin-bottom: 0; color: #333; }
.calc-btn { background-color: #de0985; color: white; border: none; border-radius: 4px; padding: 8px 15px; font-size: 15px; font-weight: 600; cursor: pointer; width: 100%; margin-top: 20px; text-transform: uppercase; transition: all 0.3s; }
.calc-btn:hover { background-color: #c00772; }
.result-price { font-size: 36px; font-weight: bold; color: #de0985; text-align: center; margin: 20px 0 10px 0; }
.result-total { text-align: center; font-size: 18px; color: #333; margin-bottom: 20px; }
.action-btns { display: flex; justify-content: space-between; gap: 5px; }
.btn-zalo { flex: 1; background-color: #0088cc; color: white; border: none; padding: 6px 2px; border-radius: 4px; font-weight: 600; text-align: center; font-size: 11px; cursor: pointer; text-transform: uppercase; }
.btn-order { flex: 1; background-color: #28b241; color: white; border: none; padding: 6px 2px; border-radius: 4px; font-weight: 600; text-align: center; font-size: 11px; cursor: pointer; text-transform: uppercase; }
.btn-zalo:hover, .btn-order:hover { opacity: 0.9; }
.custom-radio-group { display: flex; align-items: center; }
.custom-radio-group .custom-control { margin-right: 20px; }
.custom-control-label { color: #333; }
.calc-container input[type="radio"] { display: inline-block !important; -webkit-appearance: radio !important; appearance: radio !important; opacity: 1 !important; visibility: visible !important; width: 15px !important; height: 15px !important; margin-right: 5px !important; }


/* Extracted from _calendar_bracelet_form.blade.php */



.calc-result-box { background-color: #f8f9fa; border: 2px dashed #28b241; padding: 20px; border-radius: 8px; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.form-label { font-weight: 500; font-size: 15px; margin-bottom: 0; color: #333; }
.calc-btn { background-color: #de0985; color: white; border: none; border-radius: 4px; padding: 10px 20px; font-size: 16px; font-weight: bold; cursor: pointer; width: 100%; margin-top: 20px; text-transform: uppercase; transition: all 0.3s; }
.calc-btn:hover { background-color: #c00772; }
.result-price { font-size: 28px; font-weight: bold; color: #de0985; text-align: center; margin: 15px 0 10px 0; }
.result-total { text-align: center; font-size: 18px; color: #333; margin-bottom: 20px; }
.action-btns { display: flex; justify-content: space-between; gap: 10px; }
.btn-zalo { flex: 1; background-color: #0088cc; color: white; border: none; padding: 8px 15px; font-size: 14px; border-radius: 4px; font-weight: bold; text-align: center; cursor: pointer; text-transform: uppercase; }
.btn-order { flex: 1; background-color: #28b241; color: white; border: none; padding: 8px 15px; font-size: 14px; border-radius: 4px; font-weight: bold; text-align: center; cursor: pointer; text-transform: uppercase; }
.btn-zalo:hover, .btn-order:hover { opacity: 0.9; }
.custom-radio-group { display: flex; align-items: center; }
.custom-radio-group .custom-control { margin-right: 20px; }
.custom-control-label { color: #333; }


/* Extracted from _calendar_bracelet_form.blade.php */

.calc-card-wrapper { border: 1px solid #de0985; border-radius: 4px; overflow: hidden; background: #fff; margin-bottom: 30px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.calc-card-header { background-color: #de0985; color: white; text-align: center; padding: 15px; font-weight: bold; font-size: 20px; text-transform: uppercase; margin: 0; }
.calc-card-body { padding: 30px; }


/* Extracted from _calendar_folder_form.blade.php */

    .styled-checkbox {
        width: 18px;
        height: 18px;
        border-radius: 4px;
        cursor: pointer;
        accent-color: #007bff;
        /* modern browsers */
    }


/* Extracted from _calendar_wall_new_form.blade.php */

.calc-container { background-color: #fff; border: 1px solid #ddd; border-radius: 8px; padding: 20px; color: #333; font-family: Arial, sans-serif; box-shadow: 0 0 10px rgba(0,0,0,0.05); margin-bottom: 30px; }
.calc-header { background-color: #28b241; color: white; text-align: center; padding: 10px; font-weight: bold; font-size: 24px; margin-bottom: 20px; border-radius: 4px; text-transform: uppercase; }
.calc-result-box { background-color: #f8f9fa; border: 2px dashed #28b241; padding: 20px; border-radius: 8px; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.form-label { font-weight: 500; font-size: 15px; margin-bottom: 0; color: #333; }
.calc-btn { background-color: #de0985; color: white; border: none; border-radius: 4px; padding: 8px 15px; font-size: 15px; font-weight: 600; cursor: pointer; width: 100%; margin-top: 20px; text-transform: uppercase; transition: all 0.3s; }
.calc-btn:hover { background-color: #c00772; }
.result-price { font-size: 36px; font-weight: bold; color: #de0985; text-align: center; margin: 20px 0 10px 0; }
.result-total { text-align: center; font-size: 18px; color: #333; margin-bottom: 20px; }
.action-btns { display: flex; justify-content: space-between; gap: 5px; }
.btn-zalo { flex: 1; background-color: #0088cc; color: white; border: none; padding: 6px 2px; border-radius: 4px; font-weight: 600; text-align: center; font-size: 11px; cursor: pointer; text-transform: uppercase; }
.btn-order { flex: 1; background-color: #28b241; color: white; border: none; padding: 6px 2px; border-radius: 4px; font-weight: 600; text-align: center; font-size: 11px; cursor: pointer; text-transform: uppercase; }
.btn-zalo:hover, .btn-order:hover { opacity: 0.9; }
.calc-container input[type="radio"] { display: inline-block !important; -webkit-appearance: radio !important; appearance: radio !important; opacity: 1 !important; visibility: visible !important; width: 15px !important; height: 15px !important; margin-right: 5px !important; }


/* Extracted from _calendar_dego_new_form.blade.php */

.calc-container { background-color: #fff; border: 1px solid #ddd; border-radius: 8px; padding: 20px; color: #333; font-family: Arial, sans-serif; box-shadow: 0 0 10px rgba(0,0,0,0.05); margin-bottom: 30px; }
.calc-header { background-color: #28b241; color: white; text-align: center; padding: 10px; font-weight: bold; font-size: 24px; margin-bottom: 20px; border-radius: 4px; text-transform: uppercase; }
.calc-result-box { background-color: #f8f9fa; border: 2px dashed #28b241; padding: 20px; border-radius: 8px; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.form-label { font-weight: 500; font-size: 15px; margin-bottom: 0; color: #333; }
.calc-btn { background-color: #de0985; color: white; border: none; border-radius: 4px; padding: 8px 15px; font-size: 15px; font-weight: 600; cursor: pointer; width: 100%; margin-top: 20px; text-transform: uppercase; transition: all 0.3s; }
.calc-btn:hover { background-color: #c00772; }
.result-price { font-size: 36px; font-weight: bold; color: #de0985; text-align: center; margin: 20px 0 10px 0; }
.result-total { text-align: center; font-size: 18px; color: #333; margin-bottom: 20px; }
.action-btns { display: flex; justify-content: space-between; gap: 5px; }
.btn-zalo { flex: 1; background-color: #0088cc; color: white; border: none; padding: 6px 2px; border-radius: 4px; font-weight: 600; text-align: center; font-size: 11px; cursor: pointer; text-transform: uppercase; }
.btn-order { flex: 1; background-color: #28b241; color: white; border: none; padding: 6px 2px; border-radius: 4px; font-weight: 600; text-align: center; font-size: 11px; cursor: pointer; text-transform: uppercase; }
.btn-zalo:hover, .btn-order:hover { opacity: 0.9; }
.note-warning { background-color: #ffeaea; border: 1px solid #ffcaca; padding: 15px; border-radius: 5px; margin-top: 20px; }
.note-warning p { color: #d00; font-size: 14px; margin-bottom: 5px; font-style: italic; }
.note-warning strong { color: #d00; }
.calc-container input[type="radio"] { display: inline-block !important; -webkit-appearance: radio !important; appearance: radio !important; opacity: 1 !important; visibility: visible !important; width: 15px !important; height: 15px !important; margin-right: 5px !important; }


/* Extracted from _calendar_baolixi_new_form.blade.php */

.calc-container {
    background-color: transparent;
    border: none;
    padding: 0;
    color: #334155;
    font-family: 'Inter', Arial, sans-serif;
}
.calc-header { display: none; }
.calc-result-box {
    background: #fff;
    border: 1.5px solid #f0f0f5;
    padding: 16px 16px;
    border-radius: 14px;
    margin-top: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.calc-btn {
    background: #de0985;
    color: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(222, 9, 133, 0.22);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-top: 24px;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
}
.calc-btn:hover {
    background: #be0571;
    box-shadow: 0 6px 20px rgba(222, 9, 133, 0.3);
    transform: translateY(-1px);
}
.result-price {
    font-size: 32px;
    font-weight: 700;
    color: #de0985;
    text-align: center;
    margin: 15px 0 10px 0;
}
.result-total { text-align: center; font-size: 16px; color: #475569; }
.action-btns { display: flex; gap: 10px; justify-content: center; margin-top: 20px; }
.action-btns .btn-zalo, .action-btns .btn-order {
    flex: 1;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    color: white;
    transition: opacity 0.2s ease;
}
.action-btns .btn-zalo { background: #0088cc; }
.action-btns .btn-order { background: #28b241; }
.action-btns .btn-zalo:hover, .action-btns .btn-order:hover { opacity: 0.9; }
.calc-form-field { margin-bottom: 16px; }
.calc-form-field > label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 7px;
}
.calc-form-field .form-control,
.calc-form-field select {
    display: block;
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    background-color: #fff;
    border: 1.5px solid #e8edf2;
    border-radius: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    height: auto !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.calc-form-field .form-control:focus,
.calc-form-field select:focus {
    outline: none;
    border-color: #de0985;
    box-shadow: 0 0 0 3px rgba(222,9,133,0.08);
}
.calc-form-field .qty-row { display: flex; align-items: center; gap: 10px; }
.calc-form-field .qty-row input { width: 110px; flex-shrink: 0; }
.calc-form-field .qty-row span { color: #64748b; font-size: 14px; }
.calc-radio-group { display: flex; gap: 20px; margin-top: 4px; }
.calc-radio-group label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: #334155;
    cursor: pointer;
    margin-bottom: 0;
}
.calc-radio-group input[type="radio"] { accent-color: #de0985; width: 16px; height: 16px; }
.calc-container .row {
    margin-left: 0;
    margin-right: 0;
}
.calc-container .col-md-6,
.calc-container .col-6 {
    padding-left: 8px;
    padding-right: 8px;
}
.calc-result-box .result-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    color: #94a3b8;
}
.calc-result-box .result-placeholder i { font-size: 36px; margin-bottom: 10px; opacity: 0.5; }
.calc-result-box .result-placeholder p { font-size: 13px; margin: 0; }
/* Pill toggle for radio */
.calc-toggle-group {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}
.calc-toggle-group input[type="radio"] {
    display: none;
}
.calc-toggle-group label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 22px;
    border-radius: 8px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0;
    user-select: none;
}
.calc-toggle-group input[type="radio"]:checked + label {
    background: #fdf2f8;
    border-color: #de0985;
    color: #de0985;
    box-shadow: 0 2px 8px rgba(222,9,133,0.12);
}
.calc-toggle-group label:hover {
    border-color: #de0985;
    color: #de0985;
}


/* Extracted from _namecard_thong_thuong_new_form.blade.php */

.calc-container { background-color: #fff; border: 1px solid #ddd; border-radius: 8px; padding: 20px; color: #333; font-family: Arial, sans-serif; box-shadow: 0 0 10px rgba(0,0,0,0.05); margin-bottom: 30px; }
.calc-header { background-color: #28b241; color: white; text-align: center; padding: 10px; font-weight: bold; font-size: 24px; margin-bottom: 20px; border-radius: 4px; text-transform: uppercase; }
.calc-result-box { background-color: #f8f9fa; border: 2px dashed #28b241; padding: 20px; border-radius: 8px; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.form-label { font-weight: 500; font-size: 15px; margin-bottom: 0; color: #333; }
.calc-btn { background-color: #de0985; color: white; border: none; border-radius: 4px; padding: 8px 15px; font-size: 15px; font-weight: 600; cursor: pointer; width: 100%; margin-top: 20px; text-transform: uppercase; transition: all 0.3s; }
.calc-btn:hover { background-color: #c00772; }
.result-price { font-size: 36px; font-weight: bold; color: #de0985; text-align: center; margin: 20px 0 10px 0; }
.result-total { text-align: center; font-size: 18px; color: #333; margin-bottom: 20px; }
.action-btns { display: flex; justify-content: space-between; gap: 5px; }
.btn-zalo { flex: 1; background-color: #0088cc; color: white; border: none; padding: 6px 2px; border-radius: 4px; font-weight: 600; text-align: center; font-size: 11px; cursor: pointer; text-transform: uppercase; }
.btn-order { flex: 1; background-color: #28b241; color: white; border: none; padding: 6px 2px; border-radius: 4px; font-weight: 600; text-align: center; font-size: 11px; cursor: pointer; text-transform: uppercase; }
.btn-zalo:hover, .btn-order:hover { opacity: 0.9; }
.calc-container input[type="radio"] { display: inline-block !important; -webkit-appearance: radio !important; appearance: radio !important; opacity: 1 !important; visibility: visible !important; width: 15px !important; height: 15px !important; margin-right: 5px !important; }


/* Extracted from _namecard_form.blade.php */

    /* ==========================================================================
   NAMECARD CALCULATOR DIRECT STYLING (HIỂN THỊ TỪNG PHẦN TRỰC TIẾP)
   ========================================================================== */
    .namecard-inline-calc {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }

    .step-label {
        font-size: 15.5px;
        font-weight: 700;
        color: #0f172a;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .step-num {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #de0985;
        color: #ffffff;
        font-size: 11px;
        font-weight: 800;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .size-tag {
        font-size: 11.5px;
        color: #64748b;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        padding: 2px 8px;
        border-radius: 6px;
        font-weight: 500;
    }

    /* Select */
    .select-wrapper {
        position: relative;
    }

    .premium-select {
        height: 42px;
        background-color: #f8fafc;
        border: 1.5px solid #e2e8f0;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 500;
        color: #1e293b;
        padding-right: 32px;
        appearance: none;
        -webkit-appearance: none;
        transition: all 0.2s ease;
    }

    .premium-select:focus {
        background-color: #ffffff;
        border-color: #de0985;
        box-shadow: 0 0 0 3px rgba(222, 9, 133, 0.12);
        outline: none;
    }

    .select-arrow {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #94a3b8;
        font-size: 11px;
        pointer-events: none;
    }

    /* Option Grid 3 Cards trong Modal rộng rãi */
    .option-grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .option-card {
        display: block;
        margin-bottom: 0;
        cursor: pointer;
        position: relative;
    }

    .option-card input[type="radio"] {
        display: none;
    }

    .option-card-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 10px 8px;
        border: 1.5px solid #e2e8f0;
        border-radius: 8px;
        background: #f8fafc;
        min-height: 42px;
        position: relative;
        transition: all 0.2s ease;
    }

    .option-card-title {
        font-size: 12.5px;
        font-weight: 600;
        color: #334155;
        line-height: 1.2;
    }

    .check-badge {
        position: absolute;
        top: 2px;
        right: 4px;
        font-size: 10px;
        color: #de0985;
        display: none;
    }

    .option-card input[type="radio"]:checked+.option-card-inner {
        border-color: #de0985;
        background: #fff5f9;
        box-shadow: 0 0 0 1.5px rgba(222, 9, 133, 0.2);
    }

    .option-card input[type="radio"]:checked+.option-card-inner .option-card-title {
        color: #de0985;
    }

    .option-card input[type="radio"]:checked+.option-card-inner .check-badge {
        display: block;
    }

    .option-card:hover .option-card-inner {
        border-color: #f3d1e4;
        background: #ffffff;
    }

    /* Custom Mold Box */
    .custom-mold-box {
        background: #fffbeb;
        border: 1px dashed #f59e0b;
        border-radius: 6px;
        padding: 8px 12px;
    }

    .mold-label {
        cursor: pointer;
        font-size: 12px;
        color: #78350f;
    }

    .styled-checkbox {
        width: 15px;
        height: 15px;
        cursor: pointer;
        accent-color: #de0985;
        margin-top: 2px;
    }

    /* Live Pricing Summary Card */
    .pricing-summary-card {
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 0;
    }

    .summary-header-title {
        font-size: 13px;
        color: #1e293b;
        letter-spacing: 0.02em;
    }

    .summary-row {
        font-size: 12.5px;
    }

    .summary-row>span:first-child {
        white-space: nowrap;
        color: #64748b;
        margin-right: 8px;
    }

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

    .price-highlight-box {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 6px;
        padding: 10px 12px;
    }

    .unit-price-val {
        font-size: 15.5px;
        color: #334155;
    }

    .total-label {
        font-size: 15.5px;
        white-space: nowrap;
    }

    .total-price-val {
        font-size: 20px;
        color: #de0985;
        letter-spacing: -0.02em;
        white-space: nowrap;
    }

    .text-brand-pink {
        color: #de0985;
    }

    .font-weight-extrabold {
        font-weight: 800;
    }

    /* Buttons */
    .btn-primary-brand {
        background: linear-gradient(135deg, #de0985 0%, #ba076e 100%);
        border: none;
        color: #ffffff;
        font-size: 15.5px;
        font-weight: 700;
        border-radius: 6px;
        box-shadow: 0 4px 14px rgba(222, 9, 133, 0.28);
        transition: all 0.2s ease;
    }

    .btn-primary-brand:hover {
        background: linear-gradient(135deg, #c40775 0%, #a30660 100%);
        color: #ffffff;
        box-shadow: 0 6px 18px rgba(222, 9, 133, 0.38);
        transform: translateY(-1px);
    }

    .btn-secondary-corporate {
        background: #ffffff;
        border: 1.5px solid #cbd5e1;
        color: #475569;
        font-size: 12.5px;
        font-weight: 600;
        height: 38px;
        border-radius: 6px;
        transition: all 0.15s ease;
    }

    .btn-secondary-corporate:hover {
        background: #f1f5f9;
        color: #0f172a;
        border-color: #94a3b8;
    }

    .alert-note {
        background: #fffbeb;
        border: 1px solid #fde68a;
        color: #92400e;
        font-size: 11.5px;
        padding: 6px 10px;
        border-radius: 8px;
    }


/* Extracted from _calendar_desktop_new_form.blade.php */

.calc-container { background-color: #fff; border: 1px solid #ddd; border-radius: 8px; padding: 20px; color: #333; font-family: Arial, sans-serif; box-shadow: 0 0 10px rgba(0,0,0,0.05); margin-bottom: 30px; }
.calc-header { background-color: #28b241; color: white; text-align: center; padding: 10px; font-weight: bold; font-size: 24px; margin-bottom: 20px; border-radius: 4px; text-transform: uppercase; }
.calc-result-box { background-color: #f8f9fa; border: 2px dashed #28b241; padding: 20px; border-radius: 8px; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.form-label { font-weight: 500; font-size: 15px; margin-bottom: 0; color: #333; }
.calc-btn { background-color: #de0985; color: white; border: none; border-radius: 4px; padding: 8px 15px; font-size: 15px; font-weight: 600; cursor: pointer; width: 100%; margin-top: 20px; text-transform: uppercase; transition: all 0.3s; }
.calc-btn:hover { background-color: #c00772; }
.result-price { font-size: 36px; font-weight: bold; color: #de0985; text-align: center; margin: 20px 0 10px 0; }
.result-total { text-align: center; font-size: 18px; color: #333; margin-bottom: 20px; }
.action-btns { display: flex; justify-content: space-between; gap: 5px; }
.btn-zalo { flex: 1; background-color: #0088cc; color: white; border: none; padding: 6px 2px; border-radius: 4px; font-weight: 600; text-align: center; font-size: 11px; cursor: pointer; text-transform: uppercase; }
.btn-order { flex: 1; background-color: #28b241; color: white; border: none; padding: 6px 2px; border-radius: 4px; font-weight: 600; text-align: center; font-size: 11px; cursor: pointer; text-transform: uppercase; }
.btn-zalo:hover, .btn-order:hover { opacity: 0.9; }
.spec-details { background: #f9f9f9; padding: 15px; border-radius: 5px; border: 1px solid #eee; margin-top: 20px; color: #333; }
.spec-details p, .spec-details li { margin-bottom: 5px; font-size: 14px; line-height: 1.5; color: #555; text-align: justify; }
.spec-details h5 { font-size: 16px; font-weight: bold; margin-bottom: 10px; color: #444; text-transform: uppercase;}
.note-warning { background-color: #ffeaea; border: 1px solid #ffcaca; padding: 15px; border-radius: 5px; margin-top: 20px; }
.note-warning p { color: #d00; font-size: 14px; margin-bottom: 5px; font-style: italic; }
.note-warning strong { color: #d00; }
.calc-container input[type="radio"] { display: inline-block !important; -webkit-appearance: radio !important; appearance: radio !important; opacity: 1 !important; visibility: visible !important; width: 15px !important; height: 15px !important; margin-right: 5px !important; }


/* Extracted from _calendar_folder_new_form.blade.php */

.calc-container {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    color: #333;
    font-family: Arial, sans-serif;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.calc-header {
    background-color: #28b241;
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
    border-radius: 4px;
    text-transform: uppercase;
}
.calc-result-box {
    background-color: #f8f9fa;
    border: 2px dashed #28b241;
    padding: 20px;
    border-radius: 8px;
    height: 100%;
}
.calc-btn {
    background-color: #de0985;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 30px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    text-transform: uppercase;
}
.calc-btn:hover {
    background-color: #c00772;
}
.result-price {
    font-size: 36px;
    font-weight: bold;
    color: #de0985;
    text-align: center;
    margin: 20px 0 10px 0;
}
.result-total {
    text-align: center;
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}
.action-btns {
    display: flex;
    justify-content: space-between;
}
.btn-zalo {
    background-color: #0088cc;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: bold;
}
.btn-order {
    background-color: #28b241;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: bold;
}
.form-label {
    font-size: 15px;
    margin-bottom: 0;
    font-weight: bold;
}
.calc-container input[type="radio"] { display: inline-block !important; -webkit-appearance: radio !important; appearance: radio !important; opacity: 1 !important; visibility: visible !important; width: 15px !important; height: 15px !important; margin-right: 5px !important; }


/* Extracted from _contact_pricing_box.blade.php */

    .contact-pricing-box .btn:hover {
        opacity: 0.9;
        transform: translateY(-1px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    }

    .contact-pricing-box .btn:active {
        transform: translateY(0);
        box-shadow: none;
    }


/* Extracted from _calendar_desktop_2_new_form.blade.php */

.calc-container { background-color: #fff; border: 1px solid #ddd; border-radius: 8px; padding: 20px; color: #333; font-family: Arial, sans-serif; box-shadow: 0 0 10px rgba(0,0,0,0.05); margin-bottom: 30px; }
.calc-header { background-color: #28b241; color: white; text-align: center; padding: 10px; font-weight: bold; font-size: 24px; margin-bottom: 20px; border-radius: 4px; text-transform: uppercase; }
.calc-result-box { background-color: #f8f9fa; border: 2px dashed #28b241; padding: 20px; border-radius: 8px; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.form-label { font-weight: 500; font-size: 15px; margin-bottom: 0; color: #333; }
.calc-btn { background-color: #de0985; color: white; border: none; border-radius: 4px; padding: 8px 15px; font-size: 15px; font-weight: 600; cursor: pointer; width: 100%; margin-top: 20px; text-transform: uppercase; transition: all 0.3s; }
.calc-btn:hover { background-color: #c00772; }
.result-price { font-size: 36px; font-weight: bold; color: #de0985; text-align: center; margin: 20px 0 10px 0; }
.result-total { text-align: center; font-size: 18px; color: #333; margin-bottom: 20px; }
.action-btns { display: flex; justify-content: space-between; gap: 5px; }
.btn-zalo { flex: 1; background-color: #0088cc; color: white; border: none; padding: 6px 2px; border-radius: 4px; font-weight: 600; text-align: center; font-size: 11px; cursor: pointer; text-transform: uppercase; }
.btn-order { flex: 1; background-color: #28b241; color: white; border: none; padding: 6px 2px; border-radius: 4px; font-weight: 600; text-align: center; font-size: 11px; cursor: pointer; text-transform: uppercase; }
.btn-zalo:hover, .btn-order:hover { opacity: 0.9; }
.spec-details { background: #f9f9f9; padding: 15px; border-radius: 5px; border: 1px solid #eee; margin-top: 20px; color: #333; }
.spec-details p, .spec-details li { margin-bottom: 5px; font-size: 14px; line-height: 1.5; color: #555; text-align: justify; }
.spec-details h5 { font-size: 16px; font-weight: bold; margin-bottom: 10px; color: #444; text-transform: uppercase;}
.note-warning { background-color: #ffeaea; border: 1px solid #ffcaca; padding: 15px; border-radius: 5px; margin-top: 20px; }
.note-warning p { color: #d00; font-size: 14px; margin-bottom: 5px; font-style: italic; }
.note-warning strong { color: #d00; }
.calc-container input[type="radio"] { display: inline-block !important; -webkit-appearance: radio !important; appearance: radio !important; opacity: 1 !important; visibility: visible !important; width: 15px !important; height: 15px !important; margin-right: 5px !important; }


/* Extracted from _calendar_dego_form.blade.php */

.calc-result-box { background-color: #f8f9fa; border: 2px dashed #28b241; padding: 20px; border-radius: 8px; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.form-label { font-weight: 500; font-size: 15px; margin-bottom: 0; color: #333; }
.calc-btn { background-color: #de0985; color: white; border: none; border-radius: 4px; padding: 10px 20px; font-size: 16px; font-weight: bold; cursor: pointer; width: 100%; margin-top: 20px; text-transform: uppercase; transition: all 0.3s; }
.calc-btn:hover { background-color: #c00772; }
.result-price { font-size: 28px; font-weight: bold; color: #de0985; text-align: center; margin: 15px 0 10px 0; }
.result-total { text-align: center; font-size: 18px; color: #333; margin-bottom: 20px; }
.action-btns { display: flex; justify-content: space-between; gap: 10px; }
.btn-zalo { flex: 1; background-color: #0088cc; color: white; border: none; padding: 8px 15px; font-size: 14px; border-radius: 4px; font-weight: bold; text-align: center; cursor: pointer; text-transform: uppercase; }
.btn-order { flex: 1; background-color: #28b241; color: white; border: none; padding: 8px 15px; font-size: 14px; border-radius: 4px; font-weight: bold; text-align: center; cursor: pointer; text-transform: uppercase; }
.btn-zalo:hover, .btn-order:hover { opacity: 0.9; }


/* Extracted from _calendar_dego_form.blade.php */

.calc-card-wrapper { border: 1px solid #de0985; border-radius: 4px; overflow: hidden; background: #fff; margin-bottom: 30px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.calc-card-header { background-color: #de0985; color: white; text-align: center; padding: 15px; font-weight: bold; font-size: 20px; text-transform: uppercase; margin: 0; }
.calc-card-body { padding: 30px; }


/* Extracted from _envelope_new_form.blade.php */

.calc-container { background-color: #fff; border: 1px solid #ddd; border-radius: 8px; padding: 20px; color: #333; font-family: Arial, sans-serif; box-shadow: 0 0 10px rgba(0,0,0,0.05); margin-bottom: 30px; }
.calc-header { background-color: #28b241; color: white; text-align: center; padding: 10px; font-weight: bold; font-size: 24px; margin-bottom: 20px; border-radius: 4px; text-transform: uppercase; }
.calc-result-box { background-color: #f8f9fa; border: 2px dashed #28b241; padding: 20px; border-radius: 8px; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.form-label { font-weight: 500; font-size: 15px; margin-bottom: 0; }
.calc-btn { background-color: #de0985; color: white; border: none; border-radius: 4px; padding: 8px 15px; font-size: 15px; font-weight: 600; cursor: pointer; width: 100%; margin-top: 20px; text-transform: uppercase; transition: all 0.3s; }
.calc-btn:hover { background-color: #c00772; }
.result-price { font-size: 36px; font-weight: bold; color: #de0985; text-align: center; margin: 20px 0 10px 0; }
.result-total { text-align: center; font-size: 18px; color: #333; margin-bottom: 20px; }
.action-btns { display: flex; justify-content: space-between; gap: 5px; }
.btn-zalo { flex: 1; background-color: #0088cc; color: white; border: none; padding: 6px 2px; border-radius: 4px; font-weight: 600; text-align: center; font-size: 11px; cursor: pointer; text-transform: uppercase; }
.btn-order { flex: 1; background-color: #28b241; color: white; border: none; padding: 6px 2px; border-radius: 4px; font-weight: 600; text-align: center; font-size: 11px; cursor: pointer; text-transform: uppercase; }
.btn-zalo:hover, .btn-order:hover { opacity: 0.9; }
.spec-details { background: #f9f9f9; padding: 15px; border-radius: 5px; border: 1px solid #eee; margin-top: 20px; }
.spec-details p { margin-bottom: 5px; font-size: 14px; line-height: 1.5; color: #555; text-align: justify; }
.custom-radio-group { display: flex; align-items: center; }
.custom-radio-group .custom-control { margin-right: 20px; }
.calc-container input[type="radio"] { display: inline-block !important; -webkit-appearance: radio !important; appearance: radio !important; opacity: 1 !important; visibility: visible !important; width: 15px !important; height: 15px !important; margin-right: 5px !important; }


/* Extracted from _calendar_BIB_new_form.blade.php */

.calc-container { background-color: #fff; border: 1px solid #ddd; border-radius: 8px; padding: 20px; color: #333; font-family: Arial, sans-serif; box-shadow: 0 0 10px rgba(0,0,0,0.05); margin-bottom: 30px; }
.calc-header { background-color: #28b241; color: white; text-align: center; padding: 10px; font-weight: bold; font-size: 24px; margin-bottom: 20px; border-radius: 4px; text-transform: uppercase; }
.calc-result-box { background-color: #f8f9fa; border: 2px dashed #28b241; padding: 20px; border-radius: 8px; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.form-label { font-weight: 500; font-size: 15px; margin-bottom: 0; color: #333; }
.calc-btn { background-color: #de0985; color: white; border: none; border-radius: 4px; padding: 8px 15px; font-size: 15px; font-weight: 600; cursor: pointer; width: 100%; margin-top: 20px; text-transform: uppercase; transition: all 0.3s; }
.calc-btn:hover { background-color: #c00772; }
.result-price { font-size: 36px; font-weight: bold; color: #de0985; text-align: center; margin: 20px 0 10px 0; }
.result-total { text-align: center; font-size: 18px; color: #333; margin-bottom: 20px; }
.action-btns { display: flex; justify-content: space-between; gap: 5px; }
.btn-zalo { flex: 1; background-color: #0088cc; color: white; border: none; padding: 6px 2px; border-radius: 4px; font-weight: 600; text-align: center; font-size: 11px; cursor: pointer; text-transform: uppercase; }
.btn-order { flex: 1; background-color: #28b241; color: white; border: none; padding: 6px 2px; border-radius: 4px; font-weight: 600; text-align: center; font-size: 11px; cursor: pointer; text-transform: uppercase; }
.btn-zalo:hover, .btn-order:hover { opacity: 0.9; }
.spec-details { background: #f9f9f9; padding: 15px; border-radius: 5px; border: 1px solid #eee; margin-top: 20px; color: #333; }
.spec-details p, .spec-details li { margin-bottom: 5px; font-size: 14px; line-height: 1.5; color: #555; text-align: justify; }
.spec-details h5 { font-size: 16px; font-weight: bold; margin-bottom: 10px; color: #444; }
.custom-radio-group { display: flex; align-items: center; }
.custom-radio-group .custom-control { margin-right: 20px; }
.custom-control-label { color: #333; }
.calc-container input[type="radio"] { display: inline-block !important; -webkit-appearance: radio !important; appearance: radio !important; opacity: 1 !important; visibility: visible !important; width: 15px !important; height: 15px !important; margin-right: 5px !important; }


/* Extracted from _khung_hinh_new_form.blade.php */

.calc-container { background-color: #fff; border: 1px solid #ddd; border-radius: 8px; padding: 20px; color: #333; font-family: Arial, sans-serif; box-shadow: 0 0 10px rgba(0,0,0,0.05); margin-bottom: 30px; }
.calc-header { background-color: #28b241; color: white; text-align: center; padding: 10px; font-weight: bold; font-size: 24px; margin-bottom: 20px; border-radius: 4px; text-transform: uppercase; }
.calc-result-box { background-color: #f8f9fa; border: 2px dashed #28b241; padding: 20px; border-radius: 8px; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.form-label { font-weight: 500; font-size: 15px; margin-bottom: 0; }
.calc-btn { background-color: #de0985; color: white; border: none; border-radius: 4px; padding: 8px 15px; font-size: 15px; font-weight: 600; cursor: pointer; width: 100%; margin-top: 20px; text-transform: uppercase; transition: all 0.3s; }
.calc-btn:hover { background-color: #c00772; }
.result-price { font-size: 36px; font-weight: bold; color: #de0985; text-align: center; margin: 20px 0 10px 0; }
.result-total { text-align: center; font-size: 18px; color: #333; margin-bottom: 20px; }
.action-btns { display: flex; justify-content: space-between; gap: 5px; }
.btn-zalo { flex: 1; background-color: #0088cc; color: white; border: none; padding: 6px 2px; border-radius: 4px; font-weight: 600; text-align: center; font-size: 11px; cursor: pointer; text-transform: uppercase; }
.btn-order { flex: 1; background-color: #28b241; color: white; border: none; padding: 6px 2px; border-radius: 4px; font-weight: 600; text-align: center; font-size: 11px; cursor: pointer; text-transform: uppercase; }
.btn-zalo:hover, .btn-order:hover { opacity: 0.9; }
.spec-details { background: #f9f9f9; padding: 15px; border-radius: 5px; border: 1px solid #eee; margin-top: 20px; }
.spec-details h5 { font-size: 16px; font-weight: bold; margin-bottom: 10px; color: #444; text-transform: uppercase; }
.spec-details ul { padding-left: 20px; margin-bottom: 0; }
.spec-details li { margin-bottom: 5px; font-size: 14px; line-height: 1.5; color: #555; }
.calc-container input[type="radio"] { display: inline-block !important; -webkit-appearance: radio !important; appearance: radio !important; opacity: 1 !important; visibility: visible !important; width: 15px !important; height: 15px !important; margin-right: 5px !important; }


/* Extracted from _calendar_bag_new_form.blade.php */

.calc-container { background-color: #fff; border: 1px solid #ddd; border-radius: 8px; padding: 20px; color: #333; font-family: Arial, sans-serif; box-shadow: 0 0 10px rgba(0,0,0,0.05); margin-bottom: 30px; }
.calc-header { background-color: #28b241; color: white; text-align: center; padding: 10px; font-weight: bold; font-size: 24px; margin-bottom: 20px; border-radius: 4px; text-transform: uppercase; }
.calc-result-box { background-color: #f8f9fa; border: 2px dashed #28b241; padding: 20px; border-radius: 8px; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.form-label { font-weight: 500; font-size: 15px; margin-bottom: 0; }
.calc-btn { background-color: #de0985; color: white; border: none; border-radius: 4px; padding: 8px 15px; font-size: 15px; font-weight: 600; cursor: pointer; width: 100%; margin-top: 20px; text-transform: uppercase; transition: all 0.3s; }
.calc-btn:hover { background-color: #c00772; }
.result-price { font-size: 36px; font-weight: bold; color: #de0985; text-align: center; margin: 20px 0 10px 0; }
.result-total { text-align: center; font-size: 18px; color: #333; margin-bottom: 20px; }
.action-btns { display: flex; justify-content: space-between; gap: 5px; }
.btn-zalo { flex: 1; background-color: #0088cc; color: white; border: none; padding: 6px 2px; border-radius: 4px; font-weight: 600; text-align: center; font-size: 11px; cursor: pointer; text-transform: uppercase; }
.btn-order { flex: 1; background-color: #28b241; color: white; border: none; padding: 6px 2px; border-radius: 4px; font-weight: 600; text-align: center; font-size: 11px; cursor: pointer; text-transform: uppercase; }
.btn-zalo:hover, .btn-order:hover { opacity: 0.9; }
.spec-details { background: #f9f9f9; padding: 15px; border-radius: 5px; border: 1px solid #eee; margin-top: 20px; }
.spec-details p, .spec-details li { margin-bottom: 5px; font-size: 14px; line-height: 1.5; color: #555; text-align: justify; }
.spec-details h5 { font-size: 16px; font-weight: bold; margin-bottom: 10px; color: #444; text-transform: uppercase; }
.custom-radio-group { display: flex; align-items: center; }
.custom-radio-group .custom-control { margin-right: 20px; }
.calc-container input[type="radio"] { display: inline-block !important; -webkit-appearance: radio !important; appearance: radio !important; opacity: 1 !important; visibility: visible !important; width: 15px !important; height: 15px !important; margin-right: 5px !important; }


/* Extracted from error_301.blade.php */

        body {
            font-family: 'Inter', sans-serif;
            background-color: #f8f9fa;
            overflow: hidden;
            /* Prevent scroll bars due to background blobs */
            position: relative;
        }

        /* Decorative Background Blobs */
        .bg-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            z-index: -1;
            opacity: 0.5;
        }

        .blob-1 {
            top: -10%;
            left: -10%;
            width: 40vw;
            height: 40vw;
            background-color: #cfe2ff;
        }

        .blob-2 {
            top: 20%;
            right: -10%;
            width: 30vw;
            height: 30vw;
            background-color: #e0cffc;
        }

        .blob-3 {
            bottom: 0;
            left: 20%;
            width: 50vw;
            height: 50vw;
            background-color: #e2e3e5;
            opacity: 0.3;
        }

        /* Custom Card Styles */
        .redirect-card {
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 1.5rem;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.95);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .redirect-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15) !important;
        }

        /* Large 301 Text */
        .status-code-bg {
            font-size: 8rem;
            font-weight: 800;
            line-height: 1;
            color: #f1f3f5;
            position: absolute;
            top: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 0;
            user-select: none;
            letter-spacing: -0.05em;
        }

        .content-relative {
            position: relative;
            z-index: 1;
        }

        /* URL Box */
        .url-box {
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 0.75rem;
            transition: all 0.2s;
        }

        .url-box:hover {
            border-color: #0d6efd;
            background-color: #fff;
        }

        /* Progress Bar */
        .progress {
            height: 0.5rem;
            border-radius: 1rem;
            background-color: #e9ecef;
        }

        /* Typography details */
        .text-mono {
            font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
        }
    

/* Extracted from index.blade.php */

		/* Styling đồng bộ theo Wireframe mới */
		:root {
			--annhan-pink: #de0985;
			--annhan-blue: #144685;
			--annhan-blue-dark: #0e3465;
			--annhan-orange: #e65100;
			--annhan-green: #2e7d32;
			--annhan-green-btn: #78c238;
			--annhan-border: #eef0f4;
		}

		/* 2. SẢN PHẨM IN NỔI BẬT */
		.featured-products-section {
			padding: 40px 0 25px;
			background: #ffffff;
		}

		.featured-products-section .section-title-wrap {
			text-align: center;
			margin-bottom: 26px;
		}

		.featured-products-section .section-title-custom {
			color: var(--annhan-pink) !important;
			font-size: 24px;
			font-weight: 700;
			letter-spacing: 0.02em;
			text-transform: uppercase;
			margin: 0;
			position: relative;
			display: inline-block;
		}

		.featured-products-grid {
			display: grid;
			grid-template-columns: repeat(5, minmax(0, 1fr));
			gap: 16px;
		}

		.featured-products-grid .featured-product-card {
			height: 100%;
			min-width: 0;
		}

		.featured-products-grid .featured-product-card .one-product-container {
			margin: 0;
			width: 100%;
			min-width: 0;
			height: 100%;
			border: 1px solid #f0f0f5;
			border-radius: 8px;
			overflow: hidden;
			position: relative;
			transition: transform 0.25s ease, box-shadow 0.25s ease;
			background: #ffffff;
		}

		.featured-products-grid .featured-product-card .one-product-container:hover {
			transform: translateY(-4px);
			box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
			border-color: #ffd2ea;
		}

		/* 3. TOÀN BỘ DANH MỤC SẢN PHẨM */
		.all-categories-section {
			padding: 25px 0 35px;
			background: #ffffff;
		}

		.categories-header-line {
			margin-bottom: 22px;
		}

		.categories-header-line .categories-title-text {
			color: var(--annhan-pink);
			font-size: 20px;
			font-weight: 700;
			text-transform: uppercase;
			margin: 0 0 8px;
			letter-spacing: 0.02em;
		}

		.categories-header-line .header-divider {
			height: 2px;
			width: 100%;
			background: #f0f0f4;
		}

		.categories-9cols-grid {
			display: grid;
			grid-template-columns: repeat(9, minmax(0, 1fr));
			gap: 12px;
			row-gap: 18px;
		}

		.category-grid-item {
			text-align: center;
			min-width: 0;
		}

		.category-grid-item .cat-link {
			display: flex;
			flex-direction: column;
			align-items: center;
			text-decoration: none;
			color: #333;
			transition: color 0.2s;
		}

		.category-grid-item .cat-thumb-box {
			width: 100%;
			aspect-ratio: 1 / 1;
			border-radius: 8px;
			overflow: hidden;
			background: #fafafa;
			border: 1px solid #f0f0f5;
			position: relative;
			display: flex;
			align-items: center;
			justify-content: center;
			transition: transform 0.25s ease, box-shadow 0.25s ease;
		}

		.category-grid-item:hover .cat-thumb-box {
			transform: translateY(-3px);
			box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
			border-color: #ffd6ee;
		}

		.category-grid-item .cat-thumb-box img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: opacity 0.35s ease, transform 0.4s ease;
		}

		/* Hiển thị ảnh 2 khi hover */
		.category-grid-item.has-hover-img .cat-thumb-box img.cat-img-default {
			position: relative;
			z-index: 1;
		}

		.category-grid-item.has-hover-img .cat-thumb-box img.cat-img-hover {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			opacity: 0;
			visibility: hidden;
			z-index: 2;
		}

		.category-grid-item.has-hover-img:hover .cat-thumb-box img.cat-img-default {
			opacity: 0;
			visibility: hidden;
		}

		.category-grid-item.has-hover-img:hover .cat-thumb-box img.cat-img-hover {
			opacity: 1;
			visibility: visible;
			transform: scale(1.05);
		}

		/* Fallback zoom nhẹ khi danh mục không có ảnh 2 */
		.category-grid-item:not(.has-hover-img):hover .cat-thumb-box img {
			transform: scale(1.05);
		}

		.category-grid-item .cat-title-box {
			margin-top: 8px;
			font-size: 11.5px;
			font-weight: 600;
			line-height: 1.35;
			color: #333;
			height: 32px;
			display: -webkit-box;
			-webkit-line-clamp: 2;
			-webkit-box-orient: vertical;
			overflow: hidden;
			transition: color 0.2s;
		}

		.category-grid-item:hover .cat-title-box {
			color: var(--annhan-pink);
		}

		/* 4. PANEL TÍNH GIÁ IN NHANH */
		.quick-calc-section {
			padding: 15px 0 45px;
			background: #ffffff;
		}

		.quick-calc-banner {
			background: linear-gradient(135deg, #124078 0%, #174b8c 100%);
			border-radius: 20px;
			padding: 35px 35px 30px;
			box-shadow: 0 12px 36px rgba(18, 64, 120, 0.22);
			color: #ffffff;
		}

		.quick-calc-banner .banner-title {
			text-align: center;
			font-size: 24px;
			font-weight: 800;
			letter-spacing: 0.04em;
			text-transform: uppercase;
			color: #ffffff;
			margin-bottom: 28px;
		}

		.quick-calc-banner .form-label-white {
			color: #ffffff;
			font-size: 15.5px;
			font-weight: 600;
			margin-bottom: 6px;
			display: block;
		}

		.quick-calc-banner .form-control-white {
			background: #ffffff;
			border: none;
			border-radius: 8px;
			height: 42px;
			font-size: 15.5px;
			font-weight: 500;
			color: #222;
			padding: 6px 12px;
			width: 100%;
			box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
		}

		.quick-calc-banner .form-control-white:focus {
			outline: none;
			box-shadow: 0 0 0 3px rgba(222, 9, 133, 0.35);
		}

		/* Right Card: Báo giá nhanh */
		.quick-quote-result-card {
			background: #ffffff;
			border-radius: 16px;
			padding: 24px 22px;
			color: #333333;
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
			height: 100%;
			display: flex;
			flex-direction: column;
			justify-content: space-between;
			text-align: center;
		}

		.quick-quote-result-card .quote-card-header {
			font-size: 18px;
			font-weight: 800;
			color: #124078;
			letter-spacing: 0.05em;
			text-transform: uppercase;
			margin-bottom: 12px;
		}

		.quick-quote-result-card .quote-spec-summary {
			font-size: 12.5px;
			line-height: 1.55;
			color: #555555;
			background: #f7f9fc;
			border-radius: 8px;
			padding: 10px 12px;
			margin-bottom: 14px;
		}

		.quick-quote-result-card .quote-spec-summary strong {
			color: #124078;
		}

		.quick-quote-result-card .quote-unit-price-box {
			margin-bottom: 4px;
		}

		.quick-quote-result-card .quote-unit-price-value {
			font-size: 36px;
			font-weight: 800;
			color: #e53935;
			line-height: 1.1;
		}

		.quick-quote-result-card .quote-total-box {
			font-size: 14.5px;
			color: #444;
			margin-bottom: 20px;
		}

		.quick-quote-result-card .quote-total-value {
			font-weight: 700;
			color: #124078;
			font-size: 17px;
		}

		.quick-quote-actions {
			display: flex;
			gap: 10px;
			margin-top: auto;
		}

		.quick-quote-actions .btn-quote-zalo {
			background: #78c238;
			color: #ffffff !important;
			font-weight: 700;
			font-size: 12.5px;
			padding: 12px 10px;
			border-radius: 8px;
			flex: 1;
			text-decoration: none;
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 6px;
			transition: background 0.2s, transform 0.2s;
			border: none;
		}

		.quick-quote-actions .btn-quote-zalo:hover {
			background: #68ab2e;
			transform: translateY(-2px);
		}

		.quick-quote-actions .btn-quote-order {
			background: #e65100;
			color: #ffffff !important;
			font-weight: 700;
			font-size: 12.5px;
			padding: 12px 10px;
			border-radius: 8px;
			flex: 1;
			text-decoration: none;
			display: inline-flex;
			align-items: center;
			justify-content: center;
			transition: background 0.2s, transform 0.2s;
			border: none;
			cursor: pointer;
		}

		.quick-quote-actions .btn-quote-order:hover {
			background: #cc4700;
			transform: translateY(-2px);
		}

		/* Responsive Media Queries */
		@media (max-width: 1200px) {
			.featured-products-grid {
				grid-template-columns: repeat(4, minmax(0, 1fr));
			}

			.categories-9cols-grid {
				grid-template-columns: repeat(6, minmax(0, 1fr));
			}
		}

		@media (max-width: 992px) {
			.featured-products-grid {
				grid-template-columns: repeat(3, minmax(0, 1fr));
			}

			.categories-9cols-grid {
				grid-template-columns: repeat(4, minmax(0, 1fr));
			}

			.quick-quote-result-card {
				margin-top: 24px;
			}
		}

		@media (max-width: 768px) {
			.featured-products-grid {
				grid-template-columns: repeat(2, minmax(0, 1fr));
				gap: 10px;
			}

			.categories-9cols-grid {
				grid-template-columns: repeat(3, minmax(0, 1fr));
				gap: 8px;
				row-gap: 14px;
			}
		}

		@media (max-width: 576px) {
			.featured-products-grid {
				grid-template-columns: repeat(2, minmax(0, 1fr));
				gap: 10px;
			}

			.categories-9cols-grid {
				grid-template-columns: repeat(3, minmax(0, 1fr));
				gap: 8px;
				row-gap: 14px;
			}

			.quick-calc-banner {
				padding: 24px 16px;
			}

			.quick-quote-actions {
				flex-direction: column;
			}
		}
	

/* Extracted from index.blade.php */

		/* Styling Modal Đặt Hàng In Nhanh */
		.checkout-modal-content {
			border-radius: 16px;
			border: none;
			box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
			overflow: hidden;
			font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
		}

		.checkout-modal-header {
			background: linear-gradient(135deg, #de0985 0%, #ba076e 100%);
			padding: 14px 20px;
			border-bottom: none;
		}

		.checkout-header-icon {
			width: 36px;
			height: 36px;
			min-width: 36px;
			flex-shrink: 0;
			border-radius: 50%;
			background: rgba(255, 255, 255, 0.2);
			display: flex;
			align-items: center;
			justify-content: center;
			color: #ffffff;
			font-size: 15px;
		}

		.checkout-section-badge {
			font-size: 13px;
			font-weight: 700;
			color: #1e293b;
			padding-bottom: 6px;
			border-bottom: 2px solid #f3d1e4;
			letter-spacing: 0.02em;
		}

		.checkout-label {
			font-size: 12.5px;
			font-weight: 600;
			color: #334155;
		}

		.checkout-input {
			height: 38px;
			border-radius: 8px;
			border: 1.5px solid #e2e8f0;
			font-size: 13px;
			padding: 6px 12px;
			transition: all 0.2s ease;
		}

		textarea.checkout-input {
			height: auto;
		}

		.checkout-input:focus {
			border-color: #de0985;
			box-shadow: 0 0 0 3px rgba(222, 9, 133, 0.12);
		}

		.order-specs-card {
			background: #f8fafc;
			border: 1.5px solid #e2e8f0;
			border-radius: 12px;
		}

		.product-order-title {
			font-size: 14px;
			color: #0f172a;
		}

		.order-specs-content ul {
			list-style: none;
			padding-left: 0;
			margin-bottom: 0;
			font-size: 12.5px;
			line-height: 1.8;
			color: #475569;
		}

		.order-specs-content li {
			display: flex;
			align-items: flex-start;
		}

		.checkout-total-box {
			background: #fff5f9;
			border: 1.5px solid #f3d1e4;
			border-radius: 10px;
		}

		.checkout-total-val {
			font-size: 20px;
			font-weight: 800;
			color: #de0985;
			letter-spacing: -0.02em;
		}

		.checkout-modal-footer {
			background: #f8fafc;
			border-top: 1px solid #e2e8f0;
			padding: 12px 20px;
		}

		.text-brand-pink {
			color: #de0985 !important;
		}
	

/* Extracted from index.blade.php */

							.modern-news-section {
								--purple: #7F77DD;
								--purple-dark: #5F56C9;
								--purple-light: #EEEDFE;
								--purple-text: #3C3489;
								--ink: #1C1D21;
								--ink-soft: #5C5E68;
								--ink-faint: #9497A3;
								--line: #E7E7EE;
								--card: #FFFFFF;
								--radius: 16px;
								--shadow: 0 1px 2px rgba(20, 20, 43, 0.04), 0 10px 24px -12px rgba(20, 20, 43, 0.10);
								--shadow-hover: 0 1px 2px rgba(20, 20, 43, 0.06), 0 20px 40px -14px rgba(20, 20, 43, 0.18);
								font-family: 'Be Vietnam Pro', sans-serif;
								background: #ffffff;
								padding: 30px 0 60px;
								border-radius: var(--radius);
							}

							.modern-news-section .head {
								text-align: center;
								margin-bottom: 40px;
							}

							.modern-news-section h2.section-title-new {
								color: #de0985 !important;
								font-size: 24px;
								font-weight: 700;
								letter-spacing: -0.01em;
								margin: 0 0 10px;
								text-transform: uppercase;
								border: none;
								padding: 0;
							}

							.modern-news-section .grid {
								display: grid;
								grid-template-columns: repeat(4, 1fr);
								gap: 22px;
							}

							.modern-news-section .card {
								background: var(--card);
								border: 1px solid var(--line);
								border-radius: var(--radius);
								overflow: hidden;
								box-shadow: var(--shadow);
								display: flex;
								flex-direction: column;
								transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
								text-decoration: none;
								color: inherit;
								height: 100%;
							}

							.modern-news-section .card:hover {
								transform: translateY(-4px);
								box-shadow: var(--shadow-hover);
								border-color: transparent;
							}

							.modern-news-section .thumb {
								position: relative;
								width: 100%;
								aspect-ratio: 16/11;
								overflow: hidden;
								background: var(--purple-light);
							}

							.modern-news-section .thumb img {
								width: 100%;
								height: 100%;
								object-fit: cover;
								display: block;
								transition: transform .5s cubic-bezier(.2, .7, .2, 1);
							}

							.modern-news-section .card:hover .thumb img {
								transform: scale(1.06);
							}

							.modern-news-section .tag {
								position: absolute;
								top: 14px;
								left: 14px;
								background: rgba(20, 20, 43, 0.55);
								backdrop-filter: blur(6px);
								color: #fff;
								font-size: 12px;
								font-weight: 600;
								letter-spacing: .02em;
								padding: 6px 12px;
								border-radius: 99px;
								z-index: 2;
							}

							.modern-news-section .body {
								padding: 20px 20px 22px;
								display: flex;
								flex-direction: column;
								flex: 1;
							}

							.modern-news-section .meta {
								display: flex;
								align-items: center;
								gap: 14px;
								font-size: 12px;
								color: var(--ink-faint);
								margin-bottom: 9px;
							}

							.modern-news-section .meta span {
								display: flex;
								align-items: center;
								gap: 5px;
							}

							.modern-news-section .meta i {
								font-size: 13px;
							}

							.modern-news-section h3 {
								font-size: 16.5px;
								font-weight: 700;
								line-height: 1.35;
								margin: 0 0 9px;
								letter-spacing: -0.005em;
								color: var(--ink);
								display: -webkit-box;
								-webkit-line-clamp: 2;
								-webkit-box-orient: vertical;
								overflow: hidden;
							}

							.modern-news-section .excerpt {
								font-size: 15.5px;
								color: var(--ink-soft);
								line-height: 1.6;
								margin: 0 0 16px;
								display: -webkit-box;
								-webkit-line-clamp: 3;
								-webkit-box-orient: vertical;
								overflow: hidden;
							}

							.modern-news-section .more {
								margin-top: auto;
								display: inline-flex;
								align-items: center;
								gap: 6px;
								font-size: 15.5px;
								font-weight: 600;
								color: var(--purple-text);
							}

							.modern-news-section .more i {
								font-size: 15px;
								transition: transform .2s ease;
							}

							.modern-news-section .card:hover .more i {
								transform: translateX(3px);
							}

							.modern-news-section .footer-row {
								display: flex;
								justify-content: center;
								margin-top: 44px;
							}

							.modern-news-section .viewall {
								display: inline-flex;
								align-items: center;
								gap: 8px;
								font-size: 14px;
								font-weight: 600;
								color: var(--card);
								background: var(--purple);
								padding: 12px 26px;
								border-radius: 99px;
								text-decoration: none;
								box-shadow: 0 10px 20px -8px rgba(127, 119, 221, 0.55);
								transition: background .2s ease, transform .2s ease;
							}

							.modern-news-section .viewall:hover {
								background: var(--purple-dark);
								transform: translateY(-1px);
								color: #fff;
							}

							@media(max-width:980px) {
								.modern-news-section .grid {
									grid-template-columns: repeat(2, 1fr);
								}
							}

							@media(max-width:600px) {
								.modern-news-section .grid {
									grid-template-columns: 1fr;
								}

								.modern-news-section {
									padding: 30px 15px;
								}
							}
						

/* Extracted from index_backup_wireframe.blade.php */

		/* Styling đồng bộ theo Wireframe mới */
		:root {
			--annhan-pink: #de0985;
			--annhan-blue: #144685;
			--annhan-blue-dark: #0e3465;
			--annhan-orange: #e65100;
			--annhan-green: #2e7d32;
			--annhan-green-btn: #78c238;
			--annhan-border: #eef0f4;
		}

		/* 2. SẢN PHẨM IN NỔI BẬT */
		.featured-products-section {
			padding: 40px 0 25px;
			background: #ffffff;
		}

		.featured-products-section .section-title-wrap {
			text-align: center;
			margin-bottom: 26px;
		}

		.featured-products-section .section-title-custom {
			color: var(--annhan-pink) !important;
			font-size: 24px;
			font-weight: 700;
			letter-spacing: 0.02em;
			text-transform: uppercase;
			margin: 0;
			position: relative;
			display: inline-block;
		}

		.featured-products-grid {
			display: grid;
			grid-template-columns: repeat(5, 1fr);
			gap: 16px;
		}

		.featured-products-grid .featured-product-card {
			height: 100%;
		}

		.featured-products-grid .featured-product-card .one-product-container {
			height: 100%;
			border: 1px solid #f0f0f5;
			border-radius: 8px;
			overflow: hidden;
			transition: transform 0.25s ease, box-shadow 0.25s ease;
			background: #ffffff;
		}

		.featured-products-grid .featured-product-card .one-product-container:hover {
			transform: translateY(-4px);
			box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
			border-color: #ffd2ea;
		}

		/* 3. TOÀN BỘ DANH MỤC SẢN PHẨM */
		.all-categories-section {
			padding: 25px 0 35px;
			background: #ffffff;
		}

		.categories-header-line {
			margin-bottom: 22px;
		}

		.categories-header-line .categories-title-text {
			color: var(--annhan-pink);
			font-size: 20px;
			font-weight: 700;
			text-transform: uppercase;
			margin: 0 0 8px;
			letter-spacing: 0.02em;
		}

		.categories-header-line .header-divider {
			height: 2px;
			width: 100%;
			background: #f0f0f4;
		}

		.categories-9cols-grid {
			display: grid;
			grid-template-columns: repeat(9, 1fr);
			gap: 12px;
			row-gap: 18px;
		}

		.category-grid-item {
			text-align: center;
		}

		.category-grid-item .cat-link {
			display: flex;
			flex-direction: column;
			align-items: center;
			text-decoration: none;
			color: #333;
			transition: color 0.2s;
		}

		.category-grid-item .cat-thumb-box {
			width: 100%;
			aspect-ratio: 1 / 1;
			border-radius: 8px;
			overflow: hidden;
			background: #fafafa;
			border: 1px solid #f0f0f5;
			position: relative;
			display: flex;
			align-items: center;
			justify-content: center;
			transition: transform 0.25s ease, box-shadow 0.25s ease;
		}

		.category-grid-item:hover .cat-thumb-box {
			transform: translateY(-3px);
			box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
			border-color: #ffd6ee;
		}

		.category-grid-item .cat-thumb-box img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: opacity 0.35s ease, transform 0.4s ease;
		}

		/* Hiển thị ảnh 2 khi hover */
		.category-grid-item.has-hover-img .cat-thumb-box img.cat-img-default {
			position: relative;
			z-index: 1;
		}

		.category-grid-item.has-hover-img .cat-thumb-box img.cat-img-hover {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			opacity: 0;
			visibility: hidden;
			z-index: 2;
		}

		.category-grid-item.has-hover-img:hover .cat-thumb-box img.cat-img-default {
			opacity: 0;
			visibility: hidden;
		}

		.category-grid-item.has-hover-img:hover .cat-thumb-box img.cat-img-hover {
			opacity: 1;
			visibility: visible;
			transform: scale(1.05);
		}

		/* Fallback zoom nhẹ khi danh mục không có ảnh 2 */
		.category-grid-item:not(.has-hover-img):hover .cat-thumb-box img {
			transform: scale(1.05);
		}

		.category-grid-item .cat-title-box {
			margin-top: 8px;
			font-size: 11.5px;
			font-weight: 600;
			line-height: 1.35;
			color: #333;
			height: 32px;
			display: -webkit-box;
			-webkit-line-clamp: 2;
			-webkit-box-orient: vertical;
			overflow: hidden;
			transition: color 0.2s;
		}

		.category-grid-item:hover .cat-title-box {
			color: var(--annhan-pink);
		}

		/* 4. PANEL TÍNH GIÁ IN NHANH */
		.quick-calc-section {
			padding: 15px 0 45px;
			background: #ffffff;
		}

		.quick-calc-banner {
			background: linear-gradient(135deg, #124078 0%, #174b8c 100%);
			border-radius: 20px;
			padding: 35px 35px 30px;
			box-shadow: 0 12px 36px rgba(18, 64, 120, 0.22);
			color: #ffffff;
		}

		.quick-calc-banner .banner-title {
			text-align: center;
			font-size: 24px;
			font-weight: 800;
			letter-spacing: 0.04em;
			text-transform: uppercase;
			color: #ffffff;
			margin-bottom: 28px;
		}

		.quick-calc-banner .form-label-white {
			color: #ffffff;
			font-size: 15.5px;
			font-weight: 600;
			margin-bottom: 6px;
			display: block;
		}

		.quick-calc-banner .form-control-white {
			background: #ffffff;
			border: none;
			border-radius: 8px;
			height: 42px;
			font-size: 15.5px;
			font-weight: 500;
			color: #222;
			padding: 6px 12px;
			width: 100%;
			box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
		}

		.quick-calc-banner .form-control-white:focus {
			outline: none;
			box-shadow: 0 0 0 3px rgba(222, 9, 133, 0.35);
		}

		/* Right Card: Báo giá nhanh */
		.quick-quote-result-card {
			background: #ffffff;
			border-radius: 16px;
			padding: 24px 22px;
			color: #333333;
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
			height: 100%;
			display: flex;
			flex-direction: column;
			justify-content: space-between;
			text-align: center;
		}

		.quick-quote-result-card .quote-card-header {
			font-size: 18px;
			font-weight: 800;
			color: #124078;
			letter-spacing: 0.05em;
			text-transform: uppercase;
			margin-bottom: 12px;
		}

		.quick-quote-result-card .quote-spec-summary {
			font-size: 12.5px;
			line-height: 1.55;
			color: #555555;
			background: #f7f9fc;
			border-radius: 8px;
			padding: 10px 12px;
			margin-bottom: 14px;
		}

		.quick-quote-result-card .quote-spec-summary strong {
			color: #124078;
		}

		.quick-quote-result-card .quote-unit-price-box {
			margin-bottom: 4px;
		}

		.quick-quote-result-card .quote-unit-price-value {
			font-size: 36px;
			font-weight: 800;
			color: #e53935;
			line-height: 1.1;
		}

		.quick-quote-result-card .quote-total-box {
			font-size: 14.5px;
			color: #444;
			margin-bottom: 20px;
		}

		.quick-quote-result-card .quote-total-value {
			font-weight: 700;
			color: #124078;
			font-size: 17px;
		}

		.quick-quote-actions {
			display: flex;
			gap: 10px;
			margin-top: auto;
		}

		.quick-quote-actions .btn-quote-zalo {
			background: #78c238;
			color: #ffffff !important;
			font-weight: 700;
			font-size: 12.5px;
			padding: 12px 10px;
			border-radius: 8px;
			flex: 1;
			text-decoration: none;
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 6px;
			transition: background 0.2s, transform 0.2s;
			border: none;
		}

		.quick-quote-actions .btn-quote-zalo:hover {
			background: #68ab2e;
			transform: translateY(-2px);
		}

		.quick-quote-actions .btn-quote-order {
			background: #e65100;
			color: #ffffff !important;
			font-weight: 700;
			font-size: 12.5px;
			padding: 12px 10px;
			border-radius: 8px;
			flex: 1;
			text-decoration: none;
			display: inline-flex;
			align-items: center;
			justify-content: center;
			transition: background 0.2s, transform 0.2s;
			border: none;
			cursor: pointer;
		}

		.quick-quote-actions .btn-quote-order:hover {
			background: #cc4700;
			transform: translateY(-2px);
		}

		/* Responsive Media Queries */
		@media (max-width: 1200px) {
			.featured-products-grid {
				grid-template-columns: repeat(4, 1fr);
			}

			.categories-9cols-grid {
				grid-template-columns: repeat(6, 1fr);
			}
		}

		@media (max-width: 992px) {
			.featured-products-grid {
				grid-template-columns: repeat(3, 1fr);
			}

			.categories-9cols-grid {
				grid-template-columns: repeat(4, 1fr);
			}

			.quick-quote-result-card {
				margin-top: 24px;
			}
		}

		@media (max-width: 576px) {
			.featured-products-grid {
				grid-template-columns: repeat(2, 1fr);
				gap: 10px;
			}

			.categories-9cols-grid {
				grid-template-columns: repeat(3, 1fr);
				gap: 8px;
				row-gap: 14px;
			}

			.quick-calc-banner {
				padding: 24px 16px;
			}

			.quick-quote-actions {
				flex-direction: column;
			}
		}
	

/* Extracted from index_backup_wireframe.blade.php */

							.modern-news-section {
								--purple: #7F77DD;
								--purple-dark: #5F56C9;
								--purple-light: #EEEDFE;
								--purple-text: #3C3489;
								--ink: #1C1D21;
								--ink-soft: #5C5E68;
								--ink-faint: #9497A3;
								--line: #E7E7EE;
								--card: #FFFFFF;
								--radius: 16px;
								--shadow: 0 1px 2px rgba(20, 20, 43, 0.04), 0 10px 24px -12px rgba(20, 20, 43, 0.10);
								--shadow-hover: 0 1px 2px rgba(20, 20, 43, 0.06), 0 20px 40px -14px rgba(20, 20, 43, 0.18);
								font-family: 'Be Vietnam Pro', sans-serif;
								background: #ffffff;
								padding: 30px 0 60px;
								border-radius: var(--radius);
							}

							.modern-news-section .head {
								text-align: center;
								margin-bottom: 40px;
							}

							.modern-news-section h2.section-title-new {
								color: #de0985 !important;
								font-size: 24px;
								font-weight: 700;
								letter-spacing: -0.01em;
								margin: 0 0 10px;
								text-transform: uppercase;
								border: none;
								padding: 0;
							}

							.modern-news-section .grid {
								display: grid;
								grid-template-columns: repeat(4, 1fr);
								gap: 22px;
							}

							.modern-news-section .card {
								background: var(--card);
								border: 1px solid var(--line);
								border-radius: var(--radius);
								overflow: hidden;
								box-shadow: var(--shadow);
								display: flex;
								flex-direction: column;
								transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
								text-decoration: none;
								color: inherit;
								height: 100%;
							}

							.modern-news-section .card:hover {
								transform: translateY(-4px);
								box-shadow: var(--shadow-hover);
								border-color: transparent;
							}

							.modern-news-section .thumb {
								position: relative;
								width: 100%;
								aspect-ratio: 16/11;
								overflow: hidden;
								background: var(--purple-light);
							}

							.modern-news-section .thumb img {
								width: 100%;
								height: 100%;
								object-fit: cover;
								display: block;
								transition: transform .5s cubic-bezier(.2, .7, .2, 1);
							}

							.modern-news-section .card:hover .thumb img {
								transform: scale(1.06);
							}

							.modern-news-section .tag {
								position: absolute;
								top: 14px;
								left: 14px;
								background: rgba(20, 20, 43, 0.55);
								backdrop-filter: blur(6px);
								color: #fff;
								font-size: 12px;
								font-weight: 600;
								letter-spacing: .02em;
								padding: 6px 12px;
								border-radius: 99px;
								z-index: 2;
							}

							.modern-news-section .body {
								padding: 20px 20px 22px;
								display: flex;
								flex-direction: column;
								flex: 1;
							}

							.modern-news-section .meta {
								display: flex;
								align-items: center;
								gap: 14px;
								font-size: 12px;
								color: var(--ink-faint);
								margin-bottom: 9px;
							}

							.modern-news-section .meta span {
								display: flex;
								align-items: center;
								gap: 5px;
							}

							.modern-news-section .meta i {
								font-size: 13px;
							}

							.modern-news-section h3 {
								font-size: 16.5px;
								font-weight: 700;
								line-height: 1.35;
								margin: 0 0 9px;
								letter-spacing: -0.005em;
								color: var(--ink);
								display: -webkit-box;
								-webkit-line-clamp: 2;
								-webkit-box-orient: vertical;
								overflow: hidden;
							}

							.modern-news-section .excerpt {
								font-size: 15.5px;
								color: var(--ink-soft);
								line-height: 1.6;
								margin: 0 0 16px;
								display: -webkit-box;
								-webkit-line-clamp: 3;
								-webkit-box-orient: vertical;
								overflow: hidden;
							}

							.modern-news-section .more {
								margin-top: auto;
								display: inline-flex;
								align-items: center;
								gap: 6px;
								font-size: 15.5px;
								font-weight: 600;
								color: var(--purple-text);
							}

							.modern-news-section .more i {
								font-size: 15px;
								transition: transform .2s ease;
							}

							.modern-news-section .card:hover .more i {
								transform: translateX(3px);
							}

							.modern-news-section .footer-row {
								display: flex;
								justify-content: center;
								margin-top: 44px;
							}

							.modern-news-section .viewall {
								display: inline-flex;
								align-items: center;
								gap: 8px;
								font-size: 14px;
								font-weight: 600;
								color: var(--card);
								background: var(--purple);
								padding: 12px 26px;
								border-radius: 99px;
								text-decoration: none;
								box-shadow: 0 10px 20px -8px rgba(127, 119, 221, 0.55);
								transition: background .2s ease, transform .2s ease;
							}

							.modern-news-section .viewall:hover {
								background: var(--purple-dark);
								transform: translateY(-1px);
								color: #fff;
							}

							@media(max-width:980px) {
								.modern-news-section .grid {
									grid-template-columns: repeat(2, 1fr);
								}
							}

							@media(max-width:600px) {
								.modern-news-section .grid {
									grid-template-columns: 1fr;
								}

								.modern-news-section {
									padding: 30px 15px;
								}
							}
						

/* Extracted from tai_vector_lich_ban.blade.php */

        .turnstile-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }

        /* #turnstile-widget {
            transition: opacity 0.45s cubic-bezier(.51, 1.11, .39, .94), transform 0.45s cubic-bezier(.51, 1.11, .39, .94);
        }

        #turnstile-widget.turnstile-hide {
            opacity: 0;
            transform: translateX(80px) scale(0.95);
            pointer-events: none;
        } */

        #form-alert {
            position: fixed;
            top: 22%;
            right: 32px;
            transform: translateY(-50%) translateX(380px);
            z-index: 9999;
            max-width: 350px;
            min-width: 210px;
            background: #fff2f2;
            border: 1.5px solid #f24848;
            border-radius: 12px;
            color: #b12828;
            padding: 18px 22px 18px 20px;
            font-size: 1rem;
            box-shadow: 0 4px 24px rgba(242, 72, 72, 0.18);
            text-align: left;
            opacity: 0;
            pointer-events: none;
            transition: transform 0.5s cubic-bezier(.65, .05, .36, 1), opacity 0.28s;
            display: block;
        }

        #form-alert.active {
            transform: translateY(-50%) translateX(0);
            opacity: 1;
            pointer-events: auto;
        }

        #form-alert strong {
            font-weight: 600;
            font-size: 1.07em;
            display: block;
            margin-bottom: 3px;
        }
    

/* Extracted from tinh_gia.blade.php */

/* Clean & Professional UI */
.premium-sidebar {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.premium-sidebar .list-group-item {
    border: none;
    border-bottom: 1px solid #f1f5f9;
    border-radius: 0 !important;
    margin-bottom: 0;
    padding: 14px 20px;
    background: transparent;
    color: #475569;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}
.premium-sidebar .list-group-item:last-child {
    border-bottom: none;
}
.premium-sidebar .list-group-item:hover {
    background: #f8fafc;
    color: #de0985;
}
.premium-sidebar .list-group-item.active {
    background: #fdf2f8;
    border-left: 3px solid #de0985;
    color: #de0985;
    font-weight: 700;
}
.premium-sidebar .list-group-item i {
    opacity: 0.6;
    width: 24px;
    text-align: center;
    margin-right: 8px;
}
.premium-sidebar .list-group-item.active i {
    opacity: 1;
}

.premium-main-content {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 15px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}
.premium-main-content .form-control,
.premium-main-content .form-select {
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 14px;
    color: #334155;
    box-shadow: none;
    height: auto !important;
    min-height: 42px;
}
.premium-main-content .form-control:focus,
.premium-main-content .form-select:focus {
    border-color: #de0985;
    box-shadow: 0 0 0 2px rgba(222, 9, 133, 0.1);
}
.premium-main-content .form-label {
    font-weight: 600;
    color: #475569;
    font-size: 13px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

/* Professional Service Cards */
.featured-service-card {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
    padding: 24px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 3px solid transparent;
}
.featured-service-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border-top-color: #de0985;
    transform: translateY(-4px);
}
.fsc-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdf2f8; /* Soft pink background */
    color: #de0985;
    font-size: 28px;
    margin: 0 auto 16px auto;
    transition: transform 0.3s ease;
}
.featured-service-card:hover .fsc-icon-wrapper {
    transform: scale(1.05);
    background: #de0985;
    color: #ffffff;
}
.featured-service-card h5 {
    font-size: 16px;
    color: #1e293b;
    margin-bottom: 10px;
}
.featured-service-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

