.account-sec {
  position: relative;
  padding: 100px 0 160px;
  z-index: 1;
}
.account-sec::before {
  content: "";
  width: 100%;
  height: 400px;
  background: linear-gradient(
    180deg,
    rgba(201, 148, 38, 0.25) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.acc-sec-title {
  font-family: "OutfitMedium";
  font-size: 26px;
  line-height: 32px;
  font-weight: 500;
  margin: 0 0 24px;
  text-transform: capitalize;
}
.acc-sec-title.text-transform-unset {
  text-transform: unset;
}

.acc-sec-subtitle {
  display: block;
  font-family: "OutfitExtraBold";
  font-size: 16px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sd-custom-toast {
  background-color: var(--black) !important;
  border: none !important;
  border-radius: 6px;
  padding: 32px 40px !important;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 10px;
}

.sd-custom-toast .woocommerce-info {
  background: transparent !important;
  border: none;
  padding: 0;
  padding-left: 44px;
  display: flex;
  align-items: center;
  justify-content: "";
  gap: 12px;
  font-family: "OutfitRegular" !important;
  font-size: 18px !important;
  line-height: 1.5 !important;
  color: var(--white) !important;
  margin: 0 !important;
  position: relative;
}
.sd-custom-toast .woocommerce-info::before {
  content: "" !important;
  width: 32px;
  height: 32px;
  background-image: url("../images/icons/coupon-gradient.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.sd-toast .toast-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sd-toast .toast-message {
  flex: 1;
  font-family: "OutfitRegular";
  font-size: 18px;
  line-height: 1.5;
  color: var(--white);
}

.sd-custom-toast .woocommerce-info a {
  display: block;
  color: var(--white) !important;
  line-height: 1.5;
}

.sd-custom-toast .woocommerce-info a:hover {
  color: var(--sd-mustard) !important;
}

.sd-custom-toast.free-shipping {
  background-color: var(--white) !important;
  border: 1px solid rgb(199 150 68 / 50%) !important;
  /* box-shadow: 0px -1px 4px #F8CA6A; */
  flex-direction: row !important;
  align-items: center;
  gap: 12px !important;
  font-size: 18px;
  color: var(--sd-textColor) !important;
  line-height: 1.5;
}

.sd-custom-toast .toast-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

form.checkout_coupon {
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sd-cart-table {
  width: 100%;
  margin: 60px 0 40px;
}
.sd-cart-table th {
  padding: 24px 12px;
  font-family: "OutfitMedium";
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: var(--sd-dark-mustard);
  text-transform: uppercase;
  border-bottom: 1px solid rgb(166 166 166 / 25%);
}
.sd-cart-table td {
  padding: 24px 12px;
  color: var(--sd-textColor);
  border-bottom: 1px solid rgb(166 166 166 / 25%);
}
.sd-cart-table td.borderless {
  border: none;
}
.sd-cart-table .cart-product {
  display: flex;
  align-items: center;
  justify-content: "";
  gap: 24px;
}
.sd-cart-table .cart-product .cart-prod-image {
  width: 112px;
  height: 112px;
  background-color: var(--white);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sd-cart-table .cart-prod-details {
  flex: 1;
  font-family: "OutfitRegular";
  font-size: 22px;
  line-height: 1.5;
  color: #a1a1a1;
}
.cart-prod-name {
  width: 100%;
  display: block;
  font-weight: 400;
  color: var(--sd-textColor);
  overflow: hidden;
  /* white-space: nowrap; */
  text-overflow: ellipsis;
}
.cart-prod-additional-items {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cart-prod-additional-items a {
  font-size: 14px;
  color: #a1a1a1;
}
.sd-cart-table .cart-prod-price {
  /* display: block; */
  font-family: "OutfitExtraBold";
  font-size: 18px;
  line-height: 1.5;
}
.sd-cart-table .cart-prod-price.alt-lh {
  line-height: 33px;
}
.sd-cart-table .cart-prod-price.alt {
  font-family: "OutfitMedium";
  font-size: 16px;
  color: #a1a1a1;
}
.sd-cart-table .cart-prod-action {
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 6px !important;
  transition: all 0.3s ease;
}
.sd-cart-table .cart-prod-action:hover {
  background-color: rgba(237, 29, 37, 0.15);
}
.sd-cart-table .cart-product-info:hover {
  background-color: rgba(199, 150, 68, 0.1);
}
.sd-cart-table .cart-product-info:hover .cart-prod-name {
  color: var(--sd-dark-mustard);
}

.sd-cart-table .product-thumbnail a {
  width: 100%;
  height: 80px;
  display: block;
}

.sd-cart-table .product-thumbnail a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.sd-prod-quantity-wrapper {
  width: 100%;
  display: flex;
}
.sd-prod-quantity-wrapper .prod-quantity-action {
  padding: 8px 12px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.sd-prod-quantity-wrapper input:not(.prod-quantity-action) {
  margin-left: -1px !important;
  margin-right: -1px !important;
}
.sd-prod-quantity-wrapper .prod-quantity-action:hover svg > path {
  fill: var(--sd-dark-mustard);
}
.sd-prod-quantity-wrapper .prod-quantity-action:hover svg > g > path {
  stroke: var(--sd-dark-mustard);
}
/* .sd-prod-quantity-wrapper input, .sd-prod-quantity-wrapper .account-form-field-wrapper .account-form-field textarea, .account-form-field-wrapper .account-form-field .sd-prod-quantity-wrapper textarea {
  max-width: 60px;
  border: 1px solid #d2d3d5;
  border-radius: 0;
  padding: 8px;
  font-family: "OutfitRegular";
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  margin-top: -1px;
  margin-bottom: -1px;
} */
.sd-prod-quantity-wrapper input::-webkit-inner-spin-button,
.sd-prod-quantity-wrapper
  .account-form-field-wrapper
  .account-form-field
  textarea::-webkit-inner-spin-button,
.account-form-field-wrapper
  .account-form-field
  .sd-prod-quantity-wrapper
  textarea::-webkit-inner-spin-button {
  appearance: none;
}

.sd-coupon-wrapper {
  width: 100%;
  display: flex;
  gap: 18px;
}
.sd-coupon-wrapper .sd-coupon {
  flex: 1;
  border-width: 0 0 1px 0 !important;
  border-style: solid !important;
  border-color: #a1a1a1 !important;
  font-family: "OutfitRegular" !important;
  font-size: 18px !important;
  line-height: 24px !important;
}

.other-products-wrapper {
  max-width: 50%;
}
.other-products-wrapper .other-products {
  display: flex;
  gap: 8px;
  margin: 0;
}
.other-products-wrapper .other-products .other-product {
  flex: 1;
  max-width: 33%;
  text-align: center;
  /* background-color: var(--white);
  border: 1px solid var(--sd-borderColorV4); */
}
.other-products-wrapper .other-products .other-product .other-prod-image {
  width: 100%;
  height: 150px;
  background-color: var(--white);
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
  /* padding: 16px; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.other-products-wrapper .other-products .other-product .other-prod-image img {
  max-height: 100%;
  width: auto;
}
.other-product .other-prod-content {
  padding: 12px;
}
.other-product .other-prod-name a {
  font-family: "OutfitMedium";
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: var(--sd-textColor) !important;
  display: block;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.other-product .other-prod-name a:hover {
  color: var(--sd-dark-mustard) !important;
}
.other-product .other-prod-price {
  font-family: "OutfitExtraBold";
  font-size: 22px;
  line-height: 1.5;
  color: var(--sd-dark-mustard);
  margin: 0 0 12px;
}
.other-product .other-prod-content .sd-link {
  font-size: 14px;
}

.other-product .woocommerce-variation.single_variation {
  color: var(--sd-textColor);
}

.other-product
  .woocommerce-variation.single_variation
  .woocommerce-variation-price {
  font-family: "OutfitMedium";
  font-size: 16px;
}

.other-prod-content .variations .woocommerce-prod-options-wrapper {
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
}
.add-btn-wrap{
  margin-bottom: 0px !important;
}
.other-prod-content .variations .woocommerce-prod-options-wrapper .label {
  display: none;
}

.other-product .sd-link {
  justify-content: center;
  font-size: 12px;
  margin-top: 12px;
}

.other-product .single_variation_wrap {
  margin-top: 12px;
}

.other-product .single_variation_wrap .sd-prod-quantity-wrapper {
  display: none !important;
}

.other-product .sd-btn {
  padding: 12px;
  font-size: 12px;
}

.other-product .sd-btn .icon-in-btn {
  width: 16px;
  height: 16px;
}

.other-product .single_variation_wrap .sd-btn,
.other-product .other-prod-content .sd-link {
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.other-product:hover .single_variation_wrap .sd-btn,
.other-product:hover .other-prod-content .sd-link {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cart-total-wrapper {
  flex: 1;
}
.cart-total-wrapper .cart-totals {
  border: 1px solid #d9d9d9;
  padding: 24px;
  margin-bottom: 40px;
}
.cart-total-wrapper .cart-totals .total-price-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-family: "OutfitRegular";
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .cart-total-wrapper .cart-totals .total-price-info.shipping {
    flex-direction: column;
    gap: 8px;
  }
}
.cart-total-wrapper .cart-totals .total-price-info.final {
  font-weight: 700;
}
.cart-total-wrapper .cart-totals .total-price-info:not(:last-child) {
  margin-bottom: 16px;
}
.cart-total-wrapper .cart-totals .total-price-info p {
  margin: 0;
}
.new-woocommerce-checkout .woocommerce-NoticeGroup-checkout {
  margin-top: 60px;
}
.new-sd-checkout-wrapper {
  width: 100%;
  display: flex;
  margin-top: 60px;
}
.new-sd-checkout-wrapper .sd-checkout-form {
  flex: 1;
  margin-right: 60px;
}
.new-sd-checkout-wrapper .checkout-info-wrapper {
  width: 40%;
}

@media screen and (max-width: 991px) {
  .new-sd-checkout-wrapper {
    flex-direction: column;
  }
  .new-sd-checkout-wrapper .sd-checkout-form {
    margin-right: 0px;
  }
  .new-sd-checkout-wrapper .checkout-info-wrapper {
    width: 100%;
  }
}

.account-form-field-wrapper {
  display: flex;
  gap: 24px;
}
.account-form-field-wrapper:not(:last-of-type) {
  margin-bottom: 24px;
}
.account-form-field-wrapper .account-form-field {
  flex: 1;
  display: flex;
  align-items: start;
  justify-content: "";
  flex-direction: column;
  position: relative;
}
.account-form-field-wrapper .account-form-field > label:first-of-type {
  font-family: "OutfitLight";
  font-size: 18px;
  line-height: 1.5;
  display: block;
  margin-bottom: 8px;
}
.account-form-field-wrapper .account-form-field label span {
  color: var(--sd-red);
}
.account-form-field-wrapper .account-form-field input,
.account-form-field-wrapper .account-form-field textarea,
.student-search input {
  width: 100%;
  background-color: var(--white);
  border: 1px solid var(--sd-borderColorV2);
  padding: 12px 24px;
  color: var(--sd-textColor);
  font-family: "OutfitRegular";
  font-size: 16px;
  line-height: 1.75;
}
.account-form-field-wrapper .account-form-field input:focus,
.account-form-field-wrapper .account-form-field textarea:focus,
.student-search input:focus {
  border-color: var(--sd-mustard);
}
.account-form-field-wrapper .account-form-field input.has-icon,
.account-form-field-wrapper .account-form-field textarea.has-icon {
  padding-right: 56px;
}
.account-form-field-wrapper
  .account-form-field
  input.has-icon
  + .password-toggle,
.account-form-field-wrapper
  .account-form-field
  textarea.has-icon
  + .password-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sd-dark-mustard);
  position: absolute;
  bottom: 14px;
  right: 16px;
  cursor: pointer;
}
.account-form-field-wrapper
  .account-form-field.reset-form-field
  .password-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sd-dark-mustard);
  position: absolute;
  top: 3em;
  right: 16px;
  cursor: pointer;
}
.input-field {
  width: 100%;
  position: relative;
}
.account-form-field-wrapper .account-form-field.search-field input,
.account-form-field-wrapper .account-form-field.search-field textarea {
  padding-right: 56px;
}
.account-form-field-wrapper .account-form-field.search-field .search-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.order-info {
  margin-bottom: 40px;
  width: 100%;
  background-color: var(--white);
  border: 1px solid var(--sd-borderColorV2);
  padding: 32px 48px;
}
.order-info .order-detail {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 100px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--sd-borderColorV2);
  font-family: "OutfitRegular";
  font-size: 18px;
  line-height: 24px;
}
.order-info .order-detail p {
  margin: 0;
}
.order-info .order-detail > span {
  display: inline-block;
  font-size: 16px;
  line-height: 1.15;
  opacity: 0.75;
}
.order-info .order-detail:first-child {
  padding-top: 0;
}
.order-info .order-detail:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.order-info .order-detail.header {
  font-family: "OutfitMedium";
  color: var(--sd-dark-mustard);
}
.order-info .order-detail.total {
  font-family: "OutfitBold";
}
.order-info .order-detail.border-btm-0 {
  padding-bottom: 0;
  border-bottom: 0;
}
.order-detail.border-top {
  border-top: 1px dashed var(--sd-borderColorV2);
}
.order-detail .total-price-info {
  width: 100%;
}
.order-detail .total-price-info #shipping_method {
  margin-top: 16px;
}

.checkout-payment {
  margin-top: 40px;
}

.payment-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: "";
  gap: 40px;
  margin-bottom: 24px;
}
.payment-title-wrapper .acc-sec-title {
  flex: 1;
  margin: 0;
}
.payment-title-wrapper .payment-cards-wrapper {
  display: flex;
  gap: 8px;
}
.payment-title-wrapper .payment-cards-wrapper .payment-card-display {
  width: 40px;
}
.payment-wrapper {
  margin-bottom: 40px;
}
.payment-accordion-trigger {
  position: relative;
  padding: 16px 24px;
  padding-left: 48px; /* 16px+24px(check icon size)+8px */
  display: flex;
  align-items: center;
  justify-content: "";
  gap: 8px;
  border: 1px solid var(--sd-borderColorV2);
  cursor: pointer;
}
.new-account-header span {
  font-weight: 700;
  font-size: 16px;
  line-height: 20.1px;
  color: #1f1f1f;
}
.payment-accordion-icon{
  width: 24px;
  height: 24px;
  border: 1px solid var(--sd-mustard);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}
.payment-accordion-trigger .payment-accordion-icon::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: transparent;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.payment-accordion-trigger.open {
  background-color: rgba(199, 150, 68, 0.15);
}
.payment-accordion-trigger.open .payment-accordion-icon::before {
  background-color: var(--sd-mustard);
}
.payment-accordion-trigger.open + .payment-accordion-details {
  display: block;
}
.payment-accordion-trigger:hover:not(.open) .payment-accordion-icon::before {
  background-color: rgba(199, 150, 68, 0.35);
}

.payment-card-accordion:not(:first-of-type) .payment-accordion-trigger {
  margin-top: -1px;
}

.payment-accordion-details {
  padding: 24px;
  border: 1px solid var(--sd-borderColorV2);
  margin-top: -1px;
  display: none;
}

.sd-order-details:not(:last-child) {
  margin-bottom: 60px;
}

.order-information .order-row {
  background-color: rgba(199, 150, 68, 0.05);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: "";
  gap: 32px;
  color: var(--sd-textColor);
}
.order-information .order-row:nth-child(even) {
  background-color: rgba(166, 104, 0, 0.15);
}
.order-information .order-row p {
  margin: 0;
}
.order-information .order-row .label {
  font-family: "OutfitMedium";
  font-size: 18px;
  line-height: 1.5;
  flex: 1;
}
.order-information .order-row .text {
  width: 38%;
  font-family: "OutfitRegular";
  font-size: 18px;
  line-height: 1.5;
  word-break: break-word;
}
.order-information .order-row .text.md-wt {
  font-family: "OutfitMedium";
}
.order-information .order-row .text:not(.md-wt) {
  opacity: 0.7;
}
.account-wrapper {
  /* display: flex; */
  gap: 40px;
  /* width: 100%; */

}
.account-wrapper .account-tab-content {
  flex: 1;
  overflow: hidden;
  /* margin-left: 270px; */
  width: 100%;
  /* margin-top: -718px;
  height: 750px; */
}
.account-wrapper .account-tab-content .account-header {
  font-family: "OutfitExtraBold";
  font-size: 22px;
  line-height: 26px;
  margin: 0 0 24px;
}
.account-wrapper .account-tab-content .account-sub-header {
  font-family: "OutfitRegular";
  font-size: 22px;
  line-height: 26px;
  margin: 0;
}

.account-tabs {
  width: 230px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 220px;
}
.account-tabs .account-tab {
  display: flex;
  align-items: center;
  justify-content: "";
  padding: 24px 0;
  border-bottom: 1px solid #c4c4c4;
  font-family: "OutfitMedium";
  font-size: 20px;
  line-height: 24px;
  color: var(--sd-textColor);
  gap: 24px;
}
.account-tabs .account-tab span {
  display: block;
}
.account-tabs .account-tab .account-tab-name {
  flex: 1;
  text-transform: capitalize;
  transition: all 0.3s ease;
}
.account-tabs .account-tab .account-tab-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: "";
  position: relative;
}
.account-tabs .account-tab:hover {
  color: var(--sd-mustard);
}
.account-tabs .account-tab:hover svg path {
  fill: var(--sd-mustard);
  opacity: 0.75;
}
.account-tabs .account-tab.active,
.account-tabs .account-tab.is-active {
  color: var(--sd-dark-mustard);
}
.account-tabs .account-tab.is-active svg path {
  fill: var(--sd-dark-mustard);
  opacity: 1;
}
.account-tabs .account-tab:first-child {
  border-top: 1px solid #c4c4c4;
}

.sd-account-link {
  font-family: "OutfitRegular";
  font-size: 22px;
  line-height: 26px;
  color: var(--sd-mustard);
  transition: all 0.2s ease;
}
.underline {
  text-decoration: underline !important;
}
.sd-account-link:hover {
  color: var(--sd-dark-mustard);
}
.sd-account-link.extra-bold {
  font-family: "OutfitExtraBold";
  text-decoration: underline;
}
.sd-account-wrapper{
  display: flex !important;
  justify-content: center ;
}

@media screen and (max-width: 991px) {
  .sd-account-wrapper{
    display: flex;
    justify-content: end !important;
  }
}

.account-table {
  width: 100%;
  margin-top: 36px;
}
.account-table thead {
  background-color: var(--sd-textColor);
}
.account-table thead th {
  padding: 32px 16px !important;
  font-family: "OutfitMedium" !important;
  font-size: 20px;
  line-height: 24px !important;
  font-weight: 500 !important;
  color: var(--white);
  text-align: left;
}
.no_wrap thead th{
  white-space: nowrap;

}
.account-table tbody tr {
  background-color: rgba(199, 150, 68, 0.05);
  position: relative;
}
.account-table tbody tr:nth-child(even) {
  background-color: rgba(199, 150, 68, 0.1);
}
.account-table tbody tr.latest {
  background-color: #e1edff;
  box-shadow: inset 0 0 0 4px #c6d9ff;
}
.account-table tbody tr.latest::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--sd-blueV2);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
}
.account-table tbody td {
  padding: 32px 16px !important;
  font-family: "OutfitRegular" !important;
  font-size: 18px;
  line-height: 24px !important;
  border: none !important;
}
.no_wrap tbody td{
  white-space: nowrap;
}
.account-table th:first-child,
.account-table td:first-child {
  padding-left: 32px !important;
}
.account-table th:last-child,
.account-table td:last-child {
  padding-right: 32px !important;
}
.account-table .sd-order-link {
  font-family: "OutfitMedium";
  color: var(--sd-textColor);
  transition: all 0.3s ease;
}
.account-table .sd-order-link:hover {
  color: var(--sd-dark-mustard);
}
.account-table .sd-order-status.pending {
  color: #c6932b;
}
.account-table .sd-order-status.completed {
  color: var(--sd-green);
}
.account-table .sd-order-status.failed {
  color: var(--sd-red);
}
.account-table .sd-order-status.processing {
  color: #1e93ea;
}
.account-table .sd-order-status.cancelled {
  color: #c3bfbf;
}
.account-table .sd-order-status.refunded {
  color: #27c7c3;
}
.account-table .sd-order-status.void {
  color: #a058d2;
}
.account-table .sd-order-status.in-transit {
  color: #6f58ff;
}
.account-table .sd-order-status.on-hold {
  color: #ffb816;
}
.account-table .account-table-actions {
  display: flex;
  align-items: center;
  justify-content: "";
  gap: 8px;
  flex-wrap: wrap;
}

.account-actions {
  display: flex;
  align-items: center;
  justify-content: "";
  gap: 24px;
  margin-top: 45px;
}

.account-content {
  font-family: "OutfitRegular";
  font-size: 18px;
  line-height: 24px;
  color: var(--sd-textColor);
}

.sd-addresses-wrapper {
  display: flex;
  gap: 60px 80px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.sd-addresses-wrapper .sd-address-box {
  flex-basis: calc(50% - 40px);
  background-color: transparent;
  border: 1px solid #dfdfdf;
  padding: 32px;
  position: relative;
}
.sd-addresses-wrapper .sd-address-box.default {
  border-color: var(--sd-dark-mustard);
}
.sd-addresses-wrapper .sd-address-box .edit {
  width: 28px;
  height: 28px;
  background-color: transparent;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 32px;
  right: 32px;
  opacity: 0.75;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
}
.sd-addresses-wrapper .sd-address-box .edit:hover {
  opacity: 1;
}
.sd-addresses-wrapper .sd-address-box .address-type {
  font-family: "OutfitMedium";
  font-size: 30px;
  line-height: 40px;
  font-weight: 500;
  padding-top: 20px;
  position: relative;
}
.sd-addresses-wrapper .sd-address-box .address-type .address-tag {
  font-family: "OutfitMedium";
  font-size: 16px;
  line-height: 20px;
  color: var(--sd-dark-mustard);
  position: absolute;
  top: 0;
  left: 0;
}
.sd-addresses-wrapper .sd-address-box address {
  font-family: "OutfitRegular";
  font-size: 22px;
  line-height: 26px;
  color: var(--sd-textColor);
  font-style: normal;
  opacity: 0.75;
  margin: 16px 0 0;
}

.sd-login-wrapper {
  display: flex;
  gap: 50px;
}
.sd-login-wrapper .form-container {
  flex: 1;
  position: relative;
}
.sd-login-wrapper .form-container .form-essentials {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sd-login-wrapper .form-container .form-content p,
.sd-login-wrapper .form-container .sd-inline-link {
  font-family: "OutfitRegular";
  font-size: 16px;
  line-height: 26px;
}
.sd-login-wrapper .form-container button {
  min-width: 180px;
}
.w-100{
  width: 100%;
}
.sd-login-wrapper.locksmith {
  max-width: 85%;
  margin: 0 auto;
  align-items: flex-start;
}
.sd-login-wrapper.locksmith .form-container {
  padding: 80px 64px;
  border: 1px solid transparent;
}
.form-container-verifyotp{
  max-width: 500px;
  margin: 0 auto;
}
.status-message-success{
  font-family: "Outfit";
    font-size: 14px;
    line-height: 1.25;
    font-weight: 400;
    color: var(--sd-green);
    margin-top: 6px;

}
.status-message-error{
  font-family: "Outfit";
    font-size: 14px;
    line-height: 1.25;
    font-weight: 400;
    color: var(--sd-red);
    margin-top: 6px;
}




.sd-login-wrapper.locksmith .form-container.register {
  border-color: var(--sd-mustard);
}
.sd-login-wrapper.locksmith .form-container.register .shield-container {
  width: 42px;
  height: 42px;
  background-color: var(--sd-mustard);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -21px; /* Half of the height */
  left: 24px;
}
.sd-login-wrapper.locksmith .form-container.register::before {
  content: "";
  width: 56px;
  height: 56px;
  background-color: rgba(199, 150, 68, 0.14);
  border-radius: 50%;
  position: absolute;
  top: -28px;
  left: 17px;
}

.sd-login-wrapper.woocommerce-login form .account-form-field-wrapper,
.sd-login-wrapper.woocommerce-login form .form-essentials {
  max-width: 50%;
}

.sd-login-wrapper.woocommerce-login form > span {
  display: block;
  margin-bottom: 24px;
}

.ls-account-sec {
  display: flex;
}
.ls-account-sec .ls-acc-sidebar {
  width: 30%;
  background-color: var(--sd-textColor);
  padding: 48px 64px 128px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  transition: all 0.5s ease;
}
.ls-account-sec .ls-acc-sidebar .locksmith-info {
  width: 230px;
  display: flex;
  align-items: center;
  justify-content: "";
  flex-direction: column;
  font-family: "OutfitRegular";
  font-size: 16px;
  line-height: 30px;
  color: var(--white);
  margin-bottom: 40px;
}
.ls-account-sec .ls-acc-sidebar .locksmith-info .locksmith-name {
  font-family: "OutfitBold";
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: var(--white);
  margin: 16px 0 0;
}
.ls-account-sec .ls-acc-sidebar .locksmith-info span:not(.ls-verification) {
  opacity: 0.7;
}
.ls-account-sec .ls-acc-sidebar .account-tab {
  border-color: rgba(196, 196, 196, 0.1);
  color: var(--white);
}
.ls-account-sec
  .ls-acc-sidebar
  .account-tab
  .account-tab-icon.notification-dot::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--sd-red);
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
}
.ls-account-sec .ls-acc-sidebar .account-tab:hover .account-tab-name {
  color: var(--sd-mustard);
}
.ls-account-sec .ls-acc-sidebar .account-tab:hover .account-tab-icon svg path {
  stroke: var(--sd-mustard);
  fill: none;
}
.ls-account-sec
  .ls-acc-sidebar
  .account-tab:hover
  .account-tab-icon
  svg.line-fill
  path {
  fill: var(--sd-mustard);
  stroke: none;
}
.ls-account-sec .ls-acc-sidebar .account-tab.active .account-tab-name {
  color: var(--sd-mustard);
}
.ls-account-sec .ls-acc-sidebar .account-tab.active .account-tab-icon svg g {
  opacity: 1;
}
.ls-account-sec .ls-acc-sidebar .account-tab.active .account-tab-icon svg path {
  stroke: var(--sd-mustard);
  fill: none;
}
.ls-account-sec
  .ls-acc-sidebar
  .account-tab.active
  .account-tab-icon
  svg.line-fill
  path {
  fill: var(--sd-mustard);
  stroke: none;
}
.ls-account-sec .ls-acc-sidebar .toggle-sidebar {
  width: 22px;
  height: 22px;
  background-color: var(--white);
  border-radius: 50%;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  right: -11px; /* Half of the width */
  cursor: pointer;
  z-index: 3;
}
.ls-account-sec .ls-acc-sidebar .toggle-sidebar:hover img {
  transform: translateX(-2px);
  transition: all 0.3s ease;
}
.ls-account-sec .ls-acc-sidebar .toggle-sidebar.clicked img {
  transform: rotate(180deg);
}
.ls-account-sec .ls-acc-sidebar.collapse {
  width: 90px;
  padding: 40px 18px;
}
.ls-account-sec .ls-acc-sidebar.collapse .locksmith-info {
  width: 100%;
  margin-bottom: 0;
}
.ls-account-sec
  .ls-acc-sidebar.collapse
  .locksmith-info
  .locksmith-img-wrapper {
  width: 50px;
  height: 50px;
  border-width: 3px;
}
.ls-account-sec
  .ls-acc-sidebar.collapse
  .locksmith-info
  .locksmith-img-wrapper
  .ls-verification {
  width: 12px;
  height: 12px;
}
.ls-account-sec .ls-acc-sidebar.collapse .locksmith-info .locksmith-name,
.ls-account-sec
  .ls-acc-sidebar.collapse
  .locksmith-info
  span:not(.ls-verification) {
  display: none;
}
.ls-account-sec .ls-acc-sidebar.collapse .account-tabs {
  width: 100%;
}
.ls-account-sec .ls-acc-sidebar.collapse .account-tabs .account-tab {
  justify-content: center;
  border: none;
}
.ls-account-sec
  .ls-acc-sidebar.collapse
  .account-tabs
  .account-tab
  .account-tab-name {
  display: none;
}
.ls-account-sec .ls-acc-sidebar.collapse + .ls-acc-info-wrapper {
  padding-left: 0;
  padding-right: 0;
}
.ls-account-sec .ls-acc-sidebar.collapse + .ls-acc-info-wrapper .ls-acc-info {
  max-width: 65%;
  margin: 0 auto;
}
.ls-account-sec .ls-acc-info-wrapper {
  flex: 1;
  padding: 100px 70px 160px;
  position: relative;
}
.ls-account-sec .ls-acc-info-wrapper::before {
  content: "";
  width: 100%;
  height: 500px;
  background: linear-gradient(
    180deg,
    rgba(183, 183, 183, 0.25) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.ls-account-sec .ls-acc-info-wrapper .ls-acc-info {
  max-width: 920px;
}

.ls-acc-info-form {
  margin-top: 40px;
}
.ls-acc-info-form .ls-acc-info-group {
  margin-bottom: 60px;
}
.ls-acc-info-form .ls-acc-info-form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sd-pills-wrapper {
  margin-top: 16px;
}
.sd-pills-wrapper .sd-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.sd-pills-wrapper .sd-pills .sd-pill {
  background-color: #ebebeb;
  padding: 6px 20px 6px 24px;
  display: flex;
  align-items: center;
  justify-content: "";
  gap: 10px;
  font-family: "OutfitRegular";
  font-size: 16px;
  line-height: 30px;
  color: rgba(31, 31, 31, 0.7);
}
.sd-pills-wrapper .sd-pills .sd-pill .remove-pill {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
  cursor: pointer;
}
.sd-pills-wrapper .sd-pills .sd-pill .remove-pill:hover {
  opacity: 1;
}

.sd-file-input {
  width: 100%;
  height: 54px;
  position: relative;
}
.sd-file-input input {
  height: 54px;
  background-color: transparent !important;
  padding-right: 200px !important;
  color: var(--white) !important;
  line-height: 1 !important;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.sd-file-input input::-webkit-file-upload-button,
.sd-file-input
  .account-form-field-wrapper
  .account-form-field
  textarea::-webkit-file-upload-button,
.account-form-field-wrapper
  .account-form-field
  .sd-file-input
  textarea::-webkit-file-upload-button {
  display: none;
}
.sd-file-input .sd-file-btn {
  padding: 4px 24px;
  background-color: var(--sd-dark-mustard);
  display: flex;
  align-items: center;
  justify-content: "";
  gap: 8px;
  font-family: "OutfitRegular";
  font-size: 14px;
  line-height: 26px;
  color: var(--white);
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 1;
}
.sd-file-input .sd-file-btn span {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-request-info-wrapper {
  background-color: #fcfaf6;
  padding: 12px !important;
}
.service-request-info-wrapper .service-request-info {
  background-color: var(--white);
  padding: 28px 24px;
}
.service-request-info-wrapper .service-request-info .service-request-title {
  font-family: "OutfitBold";
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
}
.service-request-info-wrapper .service-request-info .service-request-text {
  display: inline-block;
  font-family: "OutfitRegular";
  font-size: 16px;
  line-height: 22px;
  margin-top: 8px;
  opacity: 0.6;
}
.service-request-info-wrapper
  .service-request-info
  .service-request-text
  + .service-request-text {
  margin-left: 80px;
}
.service-request-info-wrapper .service-request-info .service-request-label {
  display: block;
  font-family: "OutfitMedium";
  font-size: 18px;
  line-height: 28px;
  margin-top: 24px;
  margin-bottom: 8px;
}
.service-request-info-wrapper .service-request-info .service-request-content {
  font-family: "OutfitLight";
  font-size: 18px;
  line-height: 28px;
}
.service-request-info-wrapper
  .service-request-info
  .service-request-info-list
  li {
  display: flex;
  align-items: center;
  justify-content: "";
  gap: 12px;
}
.service-request-info-wrapper
  .service-request-info
  .service-request-info-list
  li:not(:last-child) {
  margin-bottom: 8px;
}
.service-request-info-wrapper
  .service-request-info
  .service-request-info-list
  .service-request-info-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-request-info-wrapper .service-request-actions {
  background-color: var(--white);
  padding: 18px 24px;
  border-top: 1px solid var(--sd-borderColorV4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-request-info-wrapper .service-request-actions .service-request-status {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: "";
  gap: 8px;
}

.service-request-details {
  display: none;
}
.service-request-details.show {
  display: table-row;
}

.reports-actions {
  display: flex;
  align-items: center;
  justify-content: "";
  gap: 40px;
  margin: 40px 0 32px;
}
.reports-actions .buttons {
  display: flex;
}
.reports-actions .selection {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.reports-actions .selection .filters {
  display: flex;
  align-items: center;
  justify-content: "";
  gap: 8px;
}
.reports-actions .selection .filters label {
  display: block;
  font-family: "OutfitRegular";
  font-size: 18px;
  line-height: 1.5;
}
.reports-actions .selection .filters .sd-dropdown-wrapper {
  width: 120px;
}

.reports-list .report-box {
  padding: 32px 40px;
  background-color: rgba(199, 150, 68, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.reports-list .report-box .report-title {
  font-family: "OutfitBold";
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
}
.reports-list .report-box .report-info {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: "";
  gap: 80px;
}
.reports-list .report-box .report-info span {
  font-family: "OutfitRegular";
  font-size: 16px;
  line-height: 22px;
  opacity: 0.7;
}
.reports-list .report-box .report-summary {
  margin: 24px 0;
}
.reports-list .report-box .report-summary p {
  font-family: "OutfitLight";
  font-size: 16px;
  line-height: 28px;
}
.reports-list .report-box:nth-child(even) {
  background-color: rgba(199, 150, 68, 0.05);
}

.back-to-page {
  display: flex;
  align-items: center;
  justify-content: "";
  gap: 4px;
  font-family: "OutfitRegular";
  font-size: 16px;
  line-height: 30px;
  color: var(--sd-dark-mustard);
  text-transform: uppercase;
}
.back-to-page .back-icon {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.back-to-page:hover .back-icon {
  transform: translateX(-8px);
}

.ls-login-header {
  padding: 140px 0 100px;
  /* background: url("../../assets/images/waves.gif"), linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 50%); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  position: relative;
}
.ls-login-header::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, #1f1f1f 0%, rgba(31, 31, 31, 0) 50.08%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.ls-login-header::after {
  content: "";
  width: 100%;
  height: 100px;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.ls-login-header .ls-login-header-content {
  max-width: 50%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.ls-login-header .ls-login-header-content .ls-login-title {
  font-family: "SilkSerifLight";
  font-size: 90px;
  line-height: 90px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 10px;
}

.ls-login-sec {
  padding: 100px 0 200px;
  background-color: var(--sd-textColor);
  color: var(--white);
  position: relative;
}
.ls-login-sec::after {
  content: "";
  width: 100%;
  height: 300px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.register-new {
  max-width: 850px;
  margin: 0 auto;
}

.subscription-status {
  font-family: "OutfitRegular";
  font-size: 18px;
  line-height: 1.5;
}

.subscription-status .active {
  color: var(--sd-green);
}

.subscription-status .inactive {
  color: var(--sd-red);
}


.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-modal-content {
  position: relative;
  width: 80%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
}

.video-close {
  position: absolute;
  top: 0px;
  right: -30px;
  color: #ffffff;
  cursor: pointer;
}

.video-thumb-wrapper {
  position: relative;
  /* max-width: 416px;
        height: 234px; */
  margin-bottom: 12px;

}

.video-thumb {
  width: 100%;
  height: 100%;
  display: block;
}

.yt-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.videoPlayer {
  width: 100%;
  height: 100%;
}

.sd-articles-list2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1296px;

}

.sd-iframe-video-grid {
  width: 1296px;
  height: 2186px;
  opacity: 1;
  position: absolute;
  top: 228px;
  left: 312px;
  transform: rotate(0deg);
  gap: 82px;
}


.sd-article-card1:hover {
  cursor: pointer;
  opacity: 0.8;
  transform: scale(1.02);

}

.sd-article-card1 {
  gap: 12px;
  max-width: 416px;


}

.sd-badge-box {
  max-width: 416px;

}

.sd-badge-bax-text {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0;
  vertical-align: middle;

}

.sd-media-title {
  font-family: "Silk Serif", serif;
  font-weight: 300;
  font-style: normal;
  font-size: 50px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 54px;
}

@media (max-width: 768px) {
  .form-container1 {
    padding: 80px 20px !important;
  }

  .sd-articles-list2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    display: grid;
    max-width: 100%;
  }
}

/* Mobile (390px and below) */
@media (max-width: 470px) {
  .form-container1 {
    padding: 80px 20px !important;
  }

  .sd-articles-list2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    display: grid;
    max-width: 100%;
  }
}

.disabled-row {
    opacity: 0.5;
    background: #f5f5f5;
}

.card-separator {
    border: 0;
    border-top: 2px dashed #ccc;
    margin: 10px 0;
}

/* --- Media Page Shorts & Tabs adjustments --- */
.media-tabs {
    flex-wrap: wrap;
}

.sd-shorts-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1296px;
}

.sd-short-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.sd-short-card:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.sd-short-thumb-wrapper {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
}

.sd-short-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sd-short-details {
    padding: 0 4px;
}

.sd-short-title {
    font-family: inherit;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Tabs: ensure no borders and clear inactive/active styles with underline handled elsewhere */
.media-tabs .tab-btn {
  border: none;
  background: transparent;
  color: var(--sd-text, #111);
  opacity: 0.9;
  outline: none;
}
.media-tabs .tab-btn:not(.active) {
 color: var(--sd-mustard, #d6a73a);
  opacity: 0.8;
}
.media-tabs .tab-btn.active {
  color: var(--sd-mustard);
}

/* Responsive grid for shorts */
@media (max-width: 1200px) {
    .sd-shorts-list {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 991px) {
    .sd-shorts-list {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .sd-shorts-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 575px) {
    .sd-shorts-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}

.media-tabs { display:flex; margin-bottom:30px; align-items:center; position:relative; }
.media-tabs .tab-btn {
  position:relative;
  padding:10px 18px;
  border-radius:6px;
  background:transparent;
  border:none;
  cursor:pointer;
  font-size: 18px;
  font-weight:600;
  color:var(--sd-text,#111);
  transition: color .18s ease;
}
.media-tabs .tab-btn::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -8px;
  height: 3px;
  background: transparent;
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease, background .18s ease;
}
.media-tabs .tab-btn.active {
  color: var(--sd-mustard, #d6a73a);
}
.media-tabs .tab-btn.active::after {
  background: var(--sd-mustard, #d6a73a);
  transform: scaleX(1);
}
.media-tabs .tab-btn:focus { outline: none; }

/* Shorts Video Modal specific overrides */
.video-modal-content.is-short {
    aspect-ratio: 9 / 16;
    height: 80vh; 
    width: auto;
    max-width: 100%;
}

@media (max-width: 768px) {
    .video-modal-content.is-short {
        width: 100vw !important;
        height: 100dvh !important;
        max-width: none !important;
        max-height: none !important;
        aspect-ratio: auto !important;
        border-radius: 0;
    }
    
    .video-modal-content.is-short .video-close {
        top: 20px;
        right: 20px;
        z-index: 10000;
        background: rgba(0,0,0,0.5);
        border-radius: 50%;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
    }
}
/*# sourceMappingURL=account-styles.css.map */
/* Title */
.otp-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

/* Hide default radio button */
.otp-option input[type="radio"] {
    display: none;
}

/* Each option wrapper */
.otp-option {
    display: block;
    margin-bottom: 16px;
    cursor: pointer;
}

/* Big rounded box */
.otp-box {
    background: #222; 
    border: 1px solid #333;
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.25s ease;
}

/* Icon + text block */
.otp-left {
    display: flex;
    align-items: center;
    gap: 14px;
    word-break: break-word
}

/* Icons */
.otp-icon {
    width: 28px;
    height: 28px;
}

/* Text block */
.otp-text .otp-label {
    font-size: 14px;
    color: #caa35d; /* Gold accent */
    display: block;
}

.otp-text .otp-value {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

/* Radio circle on right */

/* Selected State */
/* .otp-option input[type="radio"]:checked + .otp-box {
    border-color: #caa35d;
    background: #2d2d2d;
}

.otp-option input[type="radio"]:checked + .otp-box .otp-radio {
  border-color: #caa35d;
  }
  
  .otp-option input[type="radio"]:checked + .otp-box .otp-radio::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    background: #caa35d;
    border-radius: 50%;
    } */
    .otp-radio {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        /* border: 2px solid #777; */
        position: relative;
        transition: 0.25s ease;
    }
 .radio-icon {
  width: 20px;
  height: 20px;
  display: none;
}


/* When NOT selected, show normal icon */
.otp-option input[type="radio"] + .otp-box .normal {
  display: block;
}

/* When SELECTED, show selected icon */
.otp-option input[type="radio"]:checked + .otp-box .selected {
  display: block;
}

/* And hide normal icon when selected */
.otp-option input[type="radio"]:checked + .otp-box .normal {
  display: none;
}

/* Continue Button */
.otp-continue-btn {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    background: #d4a556;
    color: black;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.25s ease;
}

.otp-continue-btn:hover {
    background: #c38f3e;
}

    .video-modal {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .8);
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .video-modal-content {
        position: relative;
        width: 80%;
        max-width: 900px;
        aspect-ratio: 16 / 9;
    }

    .video-close {
        position: absolute;
        top: 0px;
        right: -30px;
        color: #ffffff;
        cursor: pointer;
    }

    .video-thumb-wrapper {
        position: relative;
        margin-bottom: 12px;
        border-radius: 8px;
        overflow: hidden;
        
    }

    .video-thumb {
        width: 100%;
        height: 100%;
        display: block;
    }

    .yt-play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 48px;
        height: 48px;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }

 .videoPlayer{
    width: 100%;
    height: 100%;
   }
 
.sd-articles-list2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1296px;

}
.sd-iframe-video-grid{
  width: 1296px;
  height: 2186px;
  opacity: 1;
  position: absolute;
  top: 228px;
  left: 312px;
  transform: rotate(0deg);
  gap: 82px;
}


    .sd-article-card1:hover{
        cursor: pointer;
        opacity: 0.8;
        transform: scale(1.02);

    }
    .sd-article-card1{
      gap: 12px;
      max-width: 416px;
      

    }
    .sd-badge-box{
      max-width:416px ;
     
    }
    .sd-badge-bax-text{
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0;
  vertical-align: middle;
  
 }
 .sd-media-title{
  font-family: "Silk Serif", serif;
  font-weight: 300;
  font-style: normal;
  font-size: 50px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 54px;
 }

 @media (max-width: 768px ) {
 .form-container1 {
    padding: 80px 20px !important;
  }
  .sd-articles-list2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    display: grid;
    max-width: 100%;
  }
}

/* Mobile (390px and below) */
@media (max-width: 470px ) {
 .form-container1 {
    padding: 80px 20px !important;
  }
  .sd-articles-list2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    display: grid;
    max-width: 100%;
  }
  /* .sd-login-wrapper.locksmith .form-container {
    padding: 80px 34px;
}
  .container{
    flex-direction: column !important;
  } */
}
.disabled-row {
    opacity: 0.5;
    background: #f5f5f5;
}

.card-separator {
    border: 0;
    border-top: 2px dashed #ccc;
    margin: 10px 0;
}

/* --- Media Page Shorts & Tabs adjustments --- */
.media-tabs {
    flex-wrap: wrap;
}

.sd-shorts-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1296px;
}

.sd-short-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.sd-short-card:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.sd-short-thumb-wrapper {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
}

.sd-short-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sd-short-details {
    padding: 0 4px;
}

.sd-short-title {
    font-family: inherit;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Tabs: ensure no borders and clear inactive/active styles with underline handled elsewhere */
.media-tabs .tab-btn {
  border: none;
  background: transparent;
  color: var(--sd-text, #111);
  opacity: 0.9;
  outline: none;
}
.media-tabs .tab-btn:not(.active) {
 color: var(--sd-mustard, #d6a73a);
  opacity: 0.8;
}
.media-tabs .tab-btn.active {
  color: var(--sd-mustard);
}

/* Responsive grid for shorts */
@media (max-width: 1200px) {
    .sd-shorts-list {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 991px) {
    .sd-shorts-list {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .sd-shorts-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 575px) {
    .sd-shorts-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}

.media-tabs { display:flex; margin-bottom:30px; align-items:center; position:relative; }
.media-tabs .tab-btn {
  position:relative;
  padding:10px 18px;
  border-radius:6px;
  background:transparent;
  border:none;
  cursor:pointer;
  font-size: 18px;
  font-weight:600;
  color:var(--sd-text,#111);
  transition: color .18s ease;
}
.media-tabs .tab-btn::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -8px;
  height: 3px;
  background: transparent;
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease, background .18s ease;
}
.media-tabs .tab-btn.active {
  color: var(--sd-mustard, #d6a73a);
}
.media-tabs .tab-btn.active::after {
  background: var(--sd-mustard, #d6a73a);
  transform: scaleX(1);
}
.media-tabs .tab-btn:focus { outline: none; }

/* Shorts Video Modal specific overrides */
.video-modal-content.is-short {
    aspect-ratio: 9 / 16;
    height: 80vh; 
    width: auto;
    max-width: 100%;
}

@media (max-width: 768px) {
    .video-modal-content.is-short {
        width: 100vw !important;
        height: 100dvh !important;
        max-width: none !important;
        max-height: none !important;
        aspect-ratio: auto !important;
        border-radius: 0;
    }
    
    .video-modal-content.is-short .video-close {
        top: 20px;
        right: 20px;
        z-index: 10000;
        background: rgba(0,0,0,0.5);
        border-radius: 50%;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
    }
}

/* Terms and Conditions Modal Styling */
.terms-container {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 15px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.terms-container h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    text-transform: uppercase;
}

.terms-container h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #000;
}

.terms-container p {
    margin-bottom: 15px;
}

.terms-container ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.terms-container ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.terms-container::-webkit-scrollbar {
    width: 6px;
}

.terms-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.terms-container::-webkit-scrollbar-thumb {
    background: var(--sd-mustard, #d6a73a);
    border-radius: 10px;
}
