@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

/* Gilroy */
@font-face {
  font-family: "Gilroy400";
  src: url("../assets/fonts/gilroy/Gilroy-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy600";
  src: url("../assets/fonts/gilroy/Gilroy-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy800";
  src: url("../assets/fonts/gilroy/Gilroy-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* Druk */
@font-face {
  font-family: "Druk";
  src: url("../assets/fonts/DrukWideBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* Didot */
@font-face {
  font-family: "Didot";
  src: url("../assets/fonts/TheanoDidot-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: rgb(3, 3, 3);
  font-family: "Gilroy400", sans-serif;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}

.container {
  max-width: 1620px;
  width: 100%;
  margin: 0 auto;
}
button {
  cursor: pointer;
  border: none;
}

nav {
  border-bottom: 1px solid rgb(62, 62, 62);
  padding: 20px 0;
  background: rgb(3, 3, 3);
}

.nav_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav_contacts {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav_contacts a,
.nav_contacts div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav_contacts p {
  color: rgb(255, 255, 255);
  transition: all 0.5s ease;
  font-family: Gilroy400;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 2%;
  text-align: left;
  text-transform: uppercase;
}
.nav_contacts a:hover p {
  transition: all 0.5s ease;
  color: rgb(255, 105, 21);
}
.nav_contacts svg * {
  transition: all 0.5s ease;
}
.nav_contacts a:hover svg * {
  transition: all 0.5s ease;
  stroke: rgb(255, 105, 21);
}
.lang_toggler {
  display: flex;
  align-items: center;
  gap: 11px;
}
.lang_toggler p {
  color: rgb(255, 255, 255);
  font-family: Inter;
  font-size: 13px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: left;
  cursor: pointer;
  transition: all 0.4s ease;
}
.lang_toggler p:hover {
  transition: all 0.4s ease;
  color: rgb(255, 105, 21);
}

.lang_toggler div {
  background: rgb(62, 62, 62);
  width: 1px;
  height: 16px;
}

.lang_toggler_active {
  color: rgb(255, 105, 21) !important;
  font-family: Inter;
  font-size: 13px;
  font-weight: 500 !important;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: left;
  border-bottom: 1px solid rgb(255, 105, 21);
}
.nav_bag {
  cursor: pointer;
  position: relative;
}
.nav_bag svg {
  width: 33px;
  height: 39px;
}
.nav_bag_count {
  position: absolute;
  width: 16.01px;
  height: 16.01px;
  background: rgb(255, 105, 21);
  border-radius: 50%;
  display: none;
}

.nav_bag_count.visible {
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  right: -20px;
  top: -10px;
}

.nav_bag_count p {
  color: rgb(255, 255, 255);

  font-size: 9px;
  font-weight: 700;
  line-height: 11px;
  letter-spacing: 0%;
  text-align: center;
}

header {
  background: url(../assets/images/header-bg.png);
  background-size: cover;
  padding: 110px 0;
  overflow: hidden;
}

.header_wrapper {
  width: 100%;
  max-width: 1740px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 0 auto;
}

.header_content {
  backdrop-filter: blur(50px);
  background: rgba(0, 0, 0, 0.5);
  height: 578px;
  width: 57%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.header_content h1 {
  color: rgb(255, 255, 255);
  font-family: "Druk";
  font-size: 80px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 24px;
}

.header_content p {
  color: rgb(255, 255, 255);
  font-family: "Gilroy400";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: left;
}

.header_galley {
  display: flex;
  align-items: center;
  gap: 50px;
  position: absolute;
  right: -300px;
}

.expositions {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}
.expositions_left {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;

  background: #2a2a2a;
}
.expositions_right {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgb(205, 64, 64);
}

.expositions_wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.expositions_wrapper_left {
  width: 50%;
  padding-right: 80px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.expositions_wrapper_right {
  width: 50%;
  display: flex;
  height: 679px;
  align-items: center;
  justify-content: center;
  background: rgb(0, 0, 0);
  overflow: hidden;
}
.expositions_wrapper_right img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.expositions_wrapper_left h3 {
  margin-bottom: 58px;
  color: rgb(255, 255, 255);
  font-family: "Didot";
  font-size: 54px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: left;
}
.expositions_wrapper_left h3 span {
  background: rgb(205, 64, 64);
  line-height: 100%;
  height: 65px;
}

.expositions_wrapper_left p {
  color: rgb(255, 255, 255);
  font-family: "Gilroy400";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: left;
}

.arriwals {
  background: url(../assets/images/arriwals-bg.png);
  background-size: cover;
  padding: 100px 0;
}

.arriwals_title h2 {
  color: rgb(255, 255, 255);
  font-family: "Didot";
  font-size: 54px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 50px;
}

.arriwals_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.arriwals_grid_item_hidden {
  display: none;
}

.arriwals_grid_item {
  overflow: hidden;
  position: relative;
  border: 10px solid rgb(93, 93, 96);
  display: flex;
  align-items: center;
}

.arriwals_grid_item img {
  width: 100%;
}
.arriwals_grid_item_actions {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease;
}
.arriwals_grid_item:hover .arriwals_grid_item_actions {
  opacity: 1;
  visibility: visible;
  transition: all 1s ease;
}

.arriwals_grid_item_actions h2 {
  color: rgb(255, 255, 255);
  font-family: "Gilroy400";
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
}

.arriwals_grid_item_actions h4 {
  color: rgb(255, 255, 255);
  font-family: "Gilroy800";
  font-size: 18px;
  font-weight: 800;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
  margin: 24px 0 16px;
}

.card_remove_actions,
.card_add_actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  flex-direction: row;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.card_remove_actions p {
  color: rgb(255, 0, 0);
  font-family: "Gilroy400";
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.card_add_actions p {
  color: rgb(255, 105, 21);
  font-family: "Gilroy400";
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.card_remove_actions svg,
.card_add_actions svg,
.card_remove_actions img,
.card_add_actions img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.contacts_us {
  padding: 120px 0;
}

.contacts_us_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contacts_us_form {
  width: 48%;
  padding-left: 150px;
  background: rgb(20, 20, 20);
  height: 764px;
  display: flex;
  align-items: center;
  justify-content: start;
}

.contacts_us_form_form {
  max-width: 450px;
}
.contacts_us_form_form_title h3 {
  color: rgb(255, 255, 255);
  font-family: "Didot";
  font-size: 54px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 32px;
}

.contacts_us_form_form_title p {
  color: rgb(255, 255, 255);
  font-family: "Gilroy400";
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 40px;
}

.input_item p {
  color: rgb(255, 255, 255);
  font-family: "Gilroy400";
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 8px;
}

.input_item input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgb(62, 62, 62);
  height: 54px;
  background: transparent;
  outline: none;
  padding-left: 20px;
  color: #fff;
  font-family: "Gilroy400";
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0%;
  text-align: left;
}
.input_item input::placeholder {
  color: rgb(193, 193, 193);
}

.input_item {
  margin-bottom: 28px;
}

.phone_input .phone_inputs_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.phone_input select {
  box-sizing: border-box;
  border: 1px solid rgb(62, 62, 62);
  width: 25%;
  height: 54px;
  background: transparent;
  padding-left: 16px;
  padding-right: 16px;
  color: rgb(255, 255, 255);
  font-family: "Gilroy400";
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  outline: none;
  cursor: pointer;
}
.phone_input select option {
  background: rgb(20, 20, 20);
  border: 1px solid rgb(62, 62, 62);
  cursor: pointer;
  border-radius: 0;
}

.phone_input div input {
  width: 100%;
}

/* Country Selector Styles */
.country-selector-wrapper {
  position: relative;
  width: 120px;
  flex-shrink: 0;
}

.country-selector-button {
  box-sizing: border-box;
  border: 1px solid rgb(62, 62, 62);
  width: 100%;
  height: 54px;
  background: transparent;
  padding: 0 16px;
  color: rgb(255, 255, 255);
  font-family: "Gilroy400";
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.country-selector-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 18px;
  flex-shrink: 0;
}

.country-flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.country-selector-code {
  flex: 1;
  text-align: left;
  min-width: 0;
}

.country-selector-arrow {
  width: 12px;
  height: 8px;
  color: rgb(255, 255, 255);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.country-selector-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 280px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(200, 200, 200);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.country-selector-dropdown.open {
  max-height: 400px;
  opacity: 1;
  visibility: visible;
}

.country-selector-button[aria-expanded="true"] .country-selector-arrow {
  transform: rotate(180deg);
}

.country-selector-search {
  width: 100%;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid rgb(230, 230, 230);
  padding: 12px 16px;
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  font-family: "Gilroy400";
  font-size: 14px;
  outline: none;
  display: block;
}

.country-selector-search::placeholder {
  color: rgb(150, 150, 150);
  opacity: 0.7;
}

.country-selector-list {
  max-height: 300px;
  overflow-y: auto;
}

.country-selector-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s ease;
  border-bottom: 1px solid rgb(240, 240, 240);
}

.country-selector-item:last-child {
  border-bottom: none;
}

.country-selector-item:hover {
  background: rgb(245, 245, 245);
}

.country-selector-item .country-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 18px;
  flex-shrink: 0;
}

.country-selector-item .country-name {
  flex: 1;
  color: rgb(0, 0, 0);
  font-family: "Gilroy400";
  font-size: 14px;
  text-align: left;
}

.country-selector-item .country-code {
  color: rgb(100, 100, 100);
  font-family: "Gilroy400";
  font-size: 14px;
  flex-shrink: 0;
}

.country-selector-input {
  display: none;
}

.send_btn {
  box-sizing: border-box;
  border: 1px solid rgb(255, 105, 21);
  background: rgb(255, 105, 21);
  padding: 20px 33px 20px 33px;
  color: rgb(255, 255, 255);
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  cursor: pointer;
  margin-top: 30px;
}

.contacts_us_img {
  width: 52%;
  height: 764px;
  object-fit: cover;
}

.pre_footer {
  padding-bottom: 120px;
}
.pre_footer_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.location {
  background: rgb(255, 247, 226);
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: start;
  height: 636px;
  justify-content: space-between;
}

.location_item_title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  opacity: 0.5;
}
.location_item_title h4 {
  color: rgb(0, 0, 0);
  font-family: "Didot";
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: left;
}

.location_item p {
  color: rgb(0, 0, 0);
  font-family: "Gilroy400";
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: left;
}

.closed {
  display: flex;
  align-items: center;
  gap: 12px;
}
.closed p {
  color: rgb(255, 0, 0);
  font-family: "Gilroy400";
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: left;
}

.location_items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.pre_footer_c_img {
  width: 100%;
  height: 636px;
  object-fit: cover;
}

.pre_footer_right_img {
  width: 100%;
  height: 318px;
  object-fit: cover;
}

.pre_footer_right {
  background: rgb(20, 20, 20);
}
.pre_footer_right_content {
  padding: 40px 24px 30px 40px;
}

.pre_footer_right_content_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
.winter-sale-badge {
  position: relative;
  display: inline-block;
}
.winter-sale-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(255, 255, 255);
  font-family: "Gilroy400", sans-serif;
  font-size: 24px;
  font-weight: 400;
  white-space: nowrap;
}

.pre_footer_right_content_title h3 {
  color: rgb(255, 255, 255);
  font-family: "Gilroy600";
  font-size: 32px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
}

.pre_footer_right_content p {
  color: rgb(255, 255, 255);
  font-family: "Gilroy400";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: left;
}

footer {
  border-top: 1px solid rgb(62, 62, 62);
  padding: 20px 0;
}
footer p {
  color: rgb(255, 255, 255);
  font-family: Manrope;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 2%;
  text-align: center;
}

/* order page */

.order_container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 70px 0 140px;
}
.order_container_title h1 {
  color: rgb(255, 255, 255);
  font-family: "Gilroy600";
  font-size: 45px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 40px;
}

.order_container_wrapper {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}
#checkout-form {
  display: contents;
}

.order_form {
  width: 30%;
  box-sizing: border-box;
  border: 1px solid rgb(62, 62, 62);
  background: rgb(20, 20, 20);
  padding: 40px;
}


.input_item p span {
  color: rgb(255, 21, 21);
}

.input_item input::placeholder,
.input_item textarea::placeholder {
  color: rgb(193, 193, 193);
  opacity: 0.5;
}

.input_item textarea {
  box-sizing: border-box;
  border: 1px solid rgb(62, 62, 62);
  width: 100%;
  padding: 15px 20px 15px 20px;
  height: 101px;
  background: transparent;
  resize: none;
  outline: none;
  color: #fff;

  font-family: "Gilroy400";
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0%;
  text-align: left;
}

.order_calculating {
  width: 70%;
  box-sizing: border-box;
  border: 1px solid rgb(62, 62, 62);
  background: rgb(20, 20, 20);
  padding: 25px;
}

.order_calculating h3 {
  color: rgb(255, 255, 255);
  font-family: "Gilroy600";
  font-size: 28px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 25px;
}

.orders_list_item_img img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

.orders_list_item_desc div h5 {
  color: rgb(255, 255, 255);
  font-family: "Gilroy600";
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 5px;
}

.orders_list_item_desc div p {
  color: rgb(255, 255, 255);
  font-family: "Gilroy400";
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: left;
}

.orders_list_item {
  display: flex;
  align-items: start;
  gap: 15px;
}
.orders_list_item_content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}
.orders_list_item_row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
}
.orders_list_item_desc {
  display: flex;
  align-items: start;
  flex: 1;
}
.orders_list_item_price {
  flex-shrink: 0;
}

.orders_list_item_price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: rgb(255, 255, 255);
  font-family: "Gilroy400";
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: right;
}

.orders_list_item {
  margin-bottom: 25px;
}

.orders_list_item_description {
  width: 100%;
}

/* Стили для сворачиваемого описания */
.description-wrapper {
  width: 100%;
  margin-top: 10px;
}

.description-content {
  color: white;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  position: relative;
  font-family: "Gilroy400";
}

.description-collapsed {
  max-height: 3.6em; /* Примерно 2 строки (1.8em * 2) */
  line-height: 1.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.description-expanded {
  max-height: 5000px; /* Большое значение для полного раскрытия */
  -webkit-line-clamp: unset;
  line-clamp: unset;
  display: block;
  -webkit-box-orient: unset;
}

.description-toggle {
  background: transparent;
  border: none;
  color: rgb(255, 105, 21);
  font-family: "Gilroy400";
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  padding: 5px 0;
  margin-top: 5px;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.description-toggle:hover {
  color: rgb(237, 85, 0);
}

.description-toggle:focus {
  outline: none;
}
.order_total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  gap: 15px;
}

.order_total h4 {
  color: rgb(255, 255, 255);
  font-family: "Gilroy400";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: left;
}

.order_total p {
  color: rgb(255, 255, 255);
  font-family: "Gilroy600";
  font-size: 19px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: left;
}

.order_total div {
  width: 60%;
  border: 1px dashed rgb(209, 209, 209);
  opacity: 0.3;
}

.order_calculating_title h3 {
  color: rgb(255, 255, 255);
  font-family: "Gilroy400";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 20px;
}

.radio_option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.radio_option input {
  width: 21px;
  height: 21px;
  cursor: pointer;
}
.radio_option p {
  color: rgb(255, 255, 255);
  opacity: 0.7;

  font-family: "Gilroy400";
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0%;
  text-align: left;
}

.radio_option_sec {
  padding-left: 30px;
}
.radio_optios_list {
  margin-bottom: 20px;
}
.mt_25 {
  margin-top: 25px;
}
.order_policy {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-top: 25px;
  margin-bottom: 25px;
}
.order_policy input {
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.order_policy p,
.order_policy a {
  color: rgb(255, 255, 255, 0.7);
  font-family: "Gilroy400";
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: left;
}
.order_policy a {
  text-decoration: underline;
}
.error_message {
  margin-top: 5px;
  display: none;
}
.error_message span {
  color: red;
  font-family: Gilroy400;
  font-size: 13px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
}
.order_submit {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}

.success_contact_form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.success_contact_form h4 {
  color: rgb(255, 255, 255);
  font-family: "Gilroy600";
  font-size: 35px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.success_contact_form p {
  color: rgb(255, 255, 255);
  font-family: "Gilroy400";
  font-size: 17px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}
.hidden {
  display: none;
}

button {
  transition: all 0.4s ease;
}

.send_btn:hover {
  transition: all 0.4s ease;
  border: 1px solid rgb(255, 105, 21);
  background: rgb(237, 85, 0);
}

footer .nav_contacts {
  display: none;
}

@media only screen and (max-width: 1720px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .nav_wrapper {
    padding-right: 40px;
  }
  .header_content h1 {
    font-size: 60px;
  }
}

@media only screen and (max-width: 1500px) {
  .header_content h1 {
    font-size: 50px;
  }
  .header_content {
    width: 48%;
  }

  .order_container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (max-width: 1000px) {
  .order_container_wrapper {
    flex-direction: column;
  }
  .order_form,
  .order_calculating {
    width: 100%;
  }
  .header_wrapper {
    flex-direction: column-reverse;
  }
  .header_content {
    width: 100%;
    gap: 40px;
  }
  .header_galley {
    position: static;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .expositions_wrapper {
    flex-direction: column-reverse;
    padding: 0;
    padding-top: 50px;
  }
  .expositions_wrapper_left,
  .expositions_wrapper_right {
    width: 100%;
  }
  .expositions_left {
    width: 100%;
    height: 50%;
    bottom: 0;
    top: auto;
  }
  .expositions_right {
    top: 0;
    width: 100%;
    height: 50%;
  }
  .expositions_wrapper_left {
    padding: 40px 15px;
  }
  .contacts_us_wrapper {
    flex-direction: column-reverse;
    padding: 0;
  }
  .contacts_us {
    padding: 0;
  }
  .contacts_us_form,
  .contacts_us_img {
    width: 100%;
    height: auto;
  }
  .contacts_us_form {
    padding: 40px 15px;
  }
  .contacts_us_form_form {
    max-width: none;
    width: 100%;
  }
  .pre_footer_wrapper {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }
  .location {
    height: auto;
    gap: 32px;
    padding: 40px 16px;
  }
  .pre_footer_c_img,
  .pre_footer_right_img {
    height: auto;
  }
}

.show_more_btn_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.show_more_btn {
  background: transparent;
  box-sizing: border-box;
  border: 1px solid rgb(255, 105, 21);
  padding: 20px 36px 20px 36px;
  color: rgb(255, 105, 21);
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  display: none;
}

@media only screen and (max-width: 600px) {
  .arriwals_grid_list_hidden {
    display: none;
  }
  .show_more_btn {
    display: block;
  }
  .header_content {
    height: auto;
    padding: 24px 16px 24px 16px;
    background: rgba(0, 0, 0, 0.5);
    gap: 0;
    margin-top: 40px;
  }
  br {
    display: none;
  }
  .header_content h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0%;
    margin-bottom: 12px;
  }
  .header_content p {
    font-size: 15px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0%;
  }
  .nav_contacts {
    display: none;
  }
  nav {
    padding: 16px 0;
  }
  .nav_wrapper {
    padding: 0 16px;
  }
  .nav_logo {
    display: flex;
    align-items: center;
  }
  .nav_logo img {
    width: 52px;
  }
  .nav_bag svg {
    width: 20px;
    height: auto;
  }
  .nav_bag_count {
    right: -10px;
  }
  header {
    width: 100%;
    padding: 40px 0 0;
  }
  .header_galley {
    gap: 10px;
    padding: 0 16px;
  }
  .header_galley img {
    width: 50%;
  }
  .expositions_wrapper_right {
    height: 360px;
  }
  .expositions_wrapper_left h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 31px;
  }

  .expositions_wrapper_left p {
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
  }
  .arriwals {
    padding: 40px 0;
  }
  .arriwals .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  .arriwals_title h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 24px;
  }
  .arriwals_grid {
    display: flex;
    flex-direction: column;
  }

  .contacts_us_form {
    padding: 24px 15px 40px;
  }

  .contacts_us_form_form_title h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0%;
    margin-bottom: 12px;
  }

  .contacts_us_form_form_title p {
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0%;
    margin-bottom: 24px;
  }
  .send_btn {
    margin-top: 0;
  }
  .location_item p {
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
  }
  .pre_footer_right {
    display: flex;
    flex-direction: column-reverse;
  }
  .pre_footer_right_content {
    padding: 40px 16px;
  }
  .pre_footer_right_content_title {
    margin-bottom: 24px;
  }

  .pre_footer_right_content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0%;
  }
  .pre_footer {
    padding-bottom: 0;
  }
  footer p {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 2%;
    max-width: 247px;

    margin: 0 auto;
  }

  footer .nav_contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
  }

  footer .nav_contacts p {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 2%;
    max-width: 100%;
  }

  .order_container {
    padding: 40px 15px 70px;
  }

  .order_container_title h1 {
    font-size: 24px;
    font-weight: 500;
    line-height: 31px;
    letter-spacing: 0%;
    margin-bottom: 24px;
  }
  .order_form {
    padding: 40px 15px;
  }
  .input_item {
    margin-bottom: 24px;
  }
  .order_form .input_item:nth-child(7) {
    margin-bottom: 0;
  }
  .orders_list_item_desc {
    flex-direction: column;
    gap: 5px;
  }
  .order_total div {
    width: 48%;
  }
  .phone_input select {
    width: 28%;
  }
  .country-selector-wrapper {
    width: 100px;
    min-width: 100px;
  }
  .country-selector-dropdown {
    width: 240px;
  }

  .arriwals_grid_item_actions {
    position: static;
    opacity: 1;
    visibility: visible;
    background: transparent;
    padding: 20px 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .arriwals_grid_item {
    flex-direction: column;
  }
  .arriwals_grid_item {
    border: none;
  }
  .arriwals_grid_item_img {
    border: 10px solid rgb(93, 93, 96);
  }
  .arriwals_grid_item_actions h2 {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: left;
    width: 100%;
    margin-bottom: 16px;
  }
  .arriwals_grid_item_actions h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: left;
  }
}

/* Product Modal Styles */
.product-item--popup {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.5);
}
.product-item--popup.visible {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgb(0 0 0 / 30%);
	backdrop-filter: blur(10px);
}
.product-item--popup_content {
	background: #141414;
	margin: auto;
	padding: 30px;
	max-width: 928px;
	display: flex;
	column-gap: 40px;
	color: #fff;
	font-family: Gilroy400;
	position: relative;
}
.product-item--popup_content .close {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	right: 8px;
	top: 8px;
	font-family: 'Gilroy400';
	font-size: 40px;
	font-weight: 100;
	height: 20px;
	width: 20px;
	line-height: 1;
	cursor: pointer;
	color: #fff;
	z-index: 10;
}
.product-item--popup_data,
.product-item--popup_meta {
	display: flex;
	flex-direction: column;
	row-gap: 22px;
}
.product-item--popup_meta > div {
	color: #C1C1C1;
	font-family: Gilroy400;
	font-size: 22px;
	font-style: normal;
}
.product-item--popup_content h2 {
	font-size: 42px;
	font-style: normal;
	font-family: Gilroy600;
	color: #fff;
}
.product-item--popup_content p {
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%;
	color: #fff;
}
.product-item--popup_item_img-cont {
	flex: 1 0 408px;
	max-width: 408px;
}
.product-item--popup_item_img-cont img {
	max-width: 100%;
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.product-item--popup_content .card_remove_actions,
.product-item--popup_content .card_add_actions {
	display: inline-flex;
	color: #fff;
	font-family: Gilroy400;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	padding: 20px 36px;
	align-self: flex-start;
	gap: 10px;
	justify-content: center;
	align-items: center;
	min-width: 225px;
	height: 60px;
	text-decoration: none;
	flex-direction: row;
	flex-wrap: nowrap;
	white-space: nowrap;
}
.product-item--popup_content .card_remove_actions svg,
.product-item--popup_content .card_add_actions svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.product-item--popup_content .card_remove_actions span,
.product-item--popup_content .card_add_actions span {
	white-space: nowrap;
	flex-shrink: 0;
}
.product-item--popup_content .card_add_actions {
	border: 1px solid #FF6915;
	background: #FF6915;
	transition: all .3s ease;
}
.product-item--popup_content .card_remove_actions {
	border: 1px solid rgb(255, 0, 0);
	background: rgb(255, 0, 0);
	transition: all .3s ease;
}
.product-item--popup_content .card_add_actions:hover {
	box-shadow: 0 0 6px 3px rgb(255 105 21 / 50%);
	transition: all .3s ease;
}
.product-item--popup_content .card_add_actions:disabled,
.product-item--popup_content .card_add_actions.disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}
.product-item--popup_content .card_add_actions:disabled:hover,
.product-item--popup_content .card_add_actions.disabled:hover {
	box-shadow: none;
}
.card_add_actions.no-events {
	pointer-events: none;
}

/* Rental dates selection styles */
.rental_dates_selection {
	margin: 20px 0;
}
.rental_date_fields {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	margin-bottom: 15px;
}
.rental_date_fields > div {
	flex: 1;
	min-width: 200px;
}
.rental_date_field_wrapper {
	position: relative;
	flex: 1;
	min-width: 200px;
}
.rental_date_fields label {
	display: block;
	margin-bottom: 8px;
	font-weight: bold;
	color: #fff;
	font-family: Gilroy400;
	font-size: 16px;
}
.rental_date_fields input[type="date"] {
	width: 100%;
	padding: 10px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 4px;
	background: #fff;
	color: #000;
	font-family: Gilroy400;
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	pointer-events: none;
}
.rental_date_button {
	width: 100%;
	padding: 10px 40px 10px 10px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 4px;
	background: #fff;
	color: #000;
	font-family: Gilroy400;
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	text-align: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
	position: relative;
}
.rental_date_button_text {
	flex: 1;
}
.rental_date_button_icon {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #666;
	flex-shrink: 0;
}
.rental_date_button:hover {
	border-color: #999;
}
.rental_date_button:hover .rental_date_button_icon {
	color: #000;
}
.rental_date_button:active {
	background: #f5f5f5;
}
.rental_date_field_wrapper {
	position: relative;
}
/* Custom date selector styles */
.custom_date_selector {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 15px;
	box-sizing: border-box;
	z-index: 10000;
	display: none;
	margin-top: 5px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.custom_date_selector.visible {
	display: block !important;
}
.custom_date_selector_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}
.custom_date_selector_header button {
	background: transparent;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #000;
	padding: 5px 10px;
	transition: color 0.2s;
}
.custom_date_selector_header button:hover {
	color: #0073aa;
}
.custom_date_selector_header button:disabled {
	color: #ccc;
	cursor: not-allowed;
}
.custom_date_month_year {
	font-weight: bold;
	font-size: 16px;
	color: #000;
	font-family: Gilroy400;
}
.custom_date_weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 3px;
	margin-bottom: 8px;
}
.custom_date_weekdays span {
	text-align: center;
	font-size: 11px;
	font-weight: bold;
	color: #666;
	font-family: Gilroy400;
	padding: 3px 2px;
}
.custom_date_days_grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 5px;
}
.custom_date_day {
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid transparent;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	color: #000;
	font-family: Gilroy400;
	transition: all 0.2s;
	background: transparent;
	font-weight: 400;
}
.custom_date_day:hover:not(.disabled):not(.selected) {
	background: #f0f0f0;
	border-color: #ccc;
}
.custom_date_day.selected {
	background: #0073aa;
	color: #fff;
	border-color: #0073aa;
	font-weight: bold;
}
.custom_date_day.disabled {
	color: #ccc;
	cursor: not-allowed;
	opacity: 0.5;
	font-weight: 300;
}
.custom_date_day.other_month {
	color: #000000;
	font-weight: 300;
}
.custom_date_day.today {
	border-color: #0073aa;
	font-weight: bold;
	color: #000;
}
.custom_date_day:not(.disabled):not(.other_month):not(.selected) {
	color: #000;
	font-weight: 400;
}
.custom_date_day.in_period {
	background: #e3f2fd;
	color: #000;
}
.custom_date_day.in_period.period_start {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
.custom_date_day.in_period.period_end {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}
.custom_date_day.in_period.selected {
	background: #0073aa;
	color: #fff;
}
.rental_days_count {
	font-weight: bold;
	color: #0073aa;
	font-family: Gilroy400;
}
.rental_price_display {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	font-family: Gilroy400;
}
.total_rental_price {
	color: #0073aa;
	font-size: 20px;
}

@media only screen and (max-width: 767.99px) {
	.product-item--popup_content {
		flex-direction: column;
		max-width: 90%;
		justify-content: space-between;
		row-gap: 15px;
		padding: 20px;
	}
	.product-item--popup_content h2 {
		font-size: 26px;
	}
	.product-item--popup_data,
	.product-item--popup_meta {
		row-gap: 10px;
	}
	.product-item--popup_meta > div {
		font-size: 16px;
	}
	.product-item--popup_content p {
		font-size: 14px;
	}
	.product-item--popup_content .card_remove_actions,
	.product-item--popup_content .card_add_actions {
		padding: 12px 20px;
		min-width: 195px;
	}
	.product-item--popup_item_img-cont {
		flex: 1 0 auto;
		max-width: 100%;
	}
	.product-item--popup_item_img-cont img {
		max-height: 200px;
	}
	.product-item--popup_content .close {
		right: 1px;
		top: 3px;
		font-size: 26px;
	}
}

/* Stripe Payment Styles */
.payment_box {
	margin-top: 20px;
}

.payment_method_stripe_cc label {
	cursor: pointer;
}

/* Stripe Payment Form Styles */
.wc_payment_methods {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wc_payment_method {
	margin-bottom: 0;
}

.wc_payment_method label {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgb(255, 255, 255);
	font-family: "Gilroy400";
	font-size: 15px;
	font-weight: 400;
	cursor: pointer;
	margin-bottom: 16px;
}

.wc-stripe-card-icons-container {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}

.wc-stripe-card-icon {
	width: 32px;
	height: 20px;
	object-fit: contain;
}

.payment_box {
	background: rgb(30, 30, 30);
	border: 1px solid rgb(62, 62, 62);
	padding: 20px;
	margin-top: 10px;
	border-radius: 4px;
}

.wc-stripe_cc-container {
	width: 100%;
}

/* Stripe Card Form Styles (как в WooCommerce) */
.stripe-card-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.stripe-card-row {
	display: flex;
	gap: 15px;
	width: 100%;
}

.stripe-card-field {
	box-sizing: border-box;
	border: 1px solid rgb(62, 62, 62);
	padding: 0;
	background: rgb(20, 20, 20);
	border-radius: 4px;
	color: #fff;
	font-family: "Gilroy400";
	font-size: 16px;
	min-height: 54px;
	display: block;
	position: relative;
}

/* Стили для Stripe Elements (как в WooCommerce) */
.stripe-card-field .__PrivateStripeElement {
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	display: block !important;
	background: transparent !important;
	position: relative !important;
	opacity: 1 !important;
	clear: both !important;
	height: 54px !important;
}

.stripe-card-field .__PrivateStripeElement iframe {
	border: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
	min-width: 100% !important;
	overflow: hidden !important;
	display: block !important;
	user-select: none !important;
	height: 54px !important;
	opacity: 1;
}

.stripe-card-number {
	flex: 1;
	width: 100%;
}

.stripe-card-expiry {
	flex: 1;
	min-width: 120px;
}

.stripe-card-cvc {
	flex: 1;
	min-width: 100px;
}

.stripe-card-field .StripeElement {
	width: 100%;
	color: #fff;
}

.stripe-card-field .StripeElement--focus {
	border-color: rgb(255, 105, 21);
}

.stripe-card-field .StripeElement--invalid {
	border-color: rgb(255, 21, 21);
}

.stripe-card-field .StripeElement--complete {
	border-color: rgb(0, 200, 0);
}

/* Старые стили для обратной совместимости */
#wc-stripe-card-element {
	box-sizing: border-box;
	border: 1px solid rgb(62, 62, 62);
	width: 100%;
	padding: 15px 20px;
	background: rgb(20, 20, 20);
	border-radius: 4px;
	color: #fff;
	font-family: "Gilroy400";
	font-size: 16px;
	min-height: 54px;
	display: flex;
	align-items: center;
}

#wc-stripe-card-element .StripeElement {
	width: 100%;
	color: #fff;
}

#wc-stripe-card-element .StripeElement--focus {
	border-color: rgb(255, 105, 21);
}

#wc-stripe-card-element .StripeElement--invalid {
	border-color: rgb(255, 21, 21);
}

#wc-stripe-card-element .StripeElement--complete {
	border-color: rgb(0, 200, 0);
}

#stripe-card-errors {
	color: rgb(255, 21, 21);
	font-family: "Gilroy400";
	font-size: 14px;
	margin-top: 10px;
	min-height: 20px;
}

/* Payment Card Form Styles (Privy-like) */
.payment-card-form {
	margin-bottom: 20px;
}

.p-Grid.p-CardForm {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

/* Контейнер для даты и CVC в одном ряду */
.p-ExpiryCvcRow {
	display: flex;
	flex-direction: row;
	gap: 16px;
	width: 100%;
}

.p-ExpiryCvcRow > .p-GridCell {
	width: 100%;
	flex: 1;
}

@media (min-width: 768px) {
	.p-Grid.p-CardForm {
		display: grid;
		grid-template-columns: repeat(12, 1fr);
		gap: 16px;
	}
}


.p-GridCell {
	width: 100%;
}

@media (min-width: 768px) {
	.p-GridCell {
		grid-column: span 12;
	}
	
	.p-GridCell--md6 {
		grid-column: span 6;
	}
	
	.p-GridCell--md12 {
		grid-column: span 12;
	}
	
	.p-GridCell--lg6 {
		grid-column: span 6;
	}
	
	.p-GridCell--lg12 {
		grid-column: span 12;
	}
}

.p-Field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.p-FieldLabel {
	font-size: 14px;
	font-weight: 500;
	color: #ffffff;
	font-family: "Gilroy400", system-ui, sans-serif;
	display: none;
	margin-bottom: 4px;
}

.Label--empty {
	opacity: 0.7;
}

.p-Input {
	position: relative;
	width: 100%;
}

.p-Input-input {
	width: 100%;
	padding: 12px 16px;
	background: #30313d;
	border: 1px solid rgb(62, 62, 62);
	border-radius: 4px;
	color: #ffffff;
	font-family: "Gilroy400", system-ui, sans-serif;
	font-size: 16px;
	transition: border-color 0.2s;
	text-align: left;
	direction: ltr;
}

.p-Input-input:focus {
	outline: none;
	border-color: #ff6921;
}

.p-Input-input::placeholder {
	color: #aab7c4;
	opacity: 0.6;
	text-align: left;
	direction: ltr;
}

.p-Input-input--textRight {
	text-align: left;
}

.p-CardNumberInput {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
}

.p-CardNumberInput-input {
	padding-right: 90px;
}

.p-CardNumberInput {
	width: 100%;
}

.p-CardNumberInput .p-Input {
	flex: 1;
	width: 100%;
}

.p-CardBrandChoice {
	display: none;
}

.p-CardIcons {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	pointer-events: none;
	z-index: 1;
}

.p-CardBrandIcons {
	display: flex;
	align-items: center;
	gap: 8px;
}

.p-CardBrandIcons-item {
	display: flex;
	align-items: center;
	opacity: 0.7;
}

.p-CardBrandIcons-item svg {
	width: 24px;
	height: 16px;
}

.p-CardCvcInput {
	position: relative;
	width: 100%;
}

.p-CardCvcInput .p-Input {
	width: 100%;
}

.p-CardCvcInput .p-Input-input {
	padding-right: 51px;
}

.p-CardCvcIcons {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 1;
}

.p-CardCvcIcons-group {
	display: flex;
	align-items: center;
}

.p-CardCvcIcons-svg {
	width: 30px;
	height: 20px;
	fill: #aab7c4;
	opacity: 0.6;
}

.u-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

.FadeWrapper {
	display: none;
}

@media (max-width: 767px) {
	.p-Grid.p-CardForm {
		gap: 12px;
	}
	
	.p-Input-input {
		padding: 10px 14px;
		font-size: 14px;
	}
}

/* Place order button styles */
#place_order {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 65px;
	padding: 0;
	border: none;
	border-radius: 6px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.4s ease;
	background: transparent;
}

@media (min-width: 768px) {
	#place_order {
		width: 50%;
	}
}

#place_order .place_order_text {
	flex: 1;
	background: rgb(255, 255, 255);
	color: rgb(255, 105, 21);
	font-family: "Gilroy600", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 65px;
	text-align: center;
	height: 100%;
	transition: all 0.4s ease;
}

#place_order .place_order_arrow {
	width: 18%;
	min-width: 80px;
	background: rgb(255, 105, 21);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	transition: all 0.4s ease;
}

#place_order .place_order_arrow svg {
	width: 24px;
	height: 24px;
}

#place_order:hover .place_order_text {
	background: rgb(240, 240, 240);
}

#place_order:hover .place_order_arrow {
	background: rgb(237, 85, 0);
}

/* Checkout Remove Modal Styles */
@keyframes checkoutRemoveModalAppear {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.checkout-remove-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.55);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.checkout-remove-overlay.visible {
	display: flex;
}

.checkout-remove-modal {
	background: #fff;
	color: #000;
	max-width: 420px;
	width: 90%;
	border-radius: 10px;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	margin: auto;
	animation: checkoutRemoveModalAppear 0.3s ease-out;
}

.checkout-remove-modal header {
	padding: 16px 20px;
	font-weight: 700;
	font-size: 18px;
	border-bottom: 1px solid #eee;
	text-align: right;
	color: #fff;
}

.checkout-remove-modal header h3 {
	margin: 0;
	color: #fff;
	font-family: "Gilroy600", sans-serif;
	font-size: 18px;
	font-weight: 700;
	text-align: right;
}

.checkout-remove-modal .content {
	padding: 18px 20px;
	font-size: 15px;
	line-height: 1.5;
	color: #000;
	font-family: "Gilroy400", sans-serif;
}

.checkout-remove-modal .content p {
	margin: 0;
	color: #000;
}

.checkout-remove-modal .actions {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	padding: 14px 20px;
	background: #fafafa;
	border-top: 1px solid #eee;
}

.checkout-remove-modal .btn {
	padding: 10px 16px;
	border-radius: 6px;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	border: none;
	font-family: "Gilroy400", sans-serif;
	font-size: 15px;
	transition: all 0.3s ease;
}

.checkout-remove-modal .btn-cancel {
	background: #e9ecef;
	color: #111;
}

.checkout-remove-modal .btn-cancel:hover {
	background: #dde2e6;
}

.checkout-remove-modal .btn-remove {
	background: #ff3b30;
	color: #fff;
}

.checkout-remove-modal .btn-remove:hover {
	background: #ff5247;
}
