* {
  box-sizing: border-box;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
}

html, body {
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #4c4e52;
  background-color: #f4f3f3;
  padding-top: 140px; /* keep your header offset */
}

main {
  flex: 1 0 auto;
  display: block;
}

h1, h2, h3, h4, h5 {
  color: #394352;
}

.content-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.content-wrapper.error {
  padding: 40px 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #1b2339;
  background: #111624; /* Ensure header background is solid */
}
header .content-wrapper {
  padding-top: 15px;
  height: 50px;
  display: flex;
}
header h1, header img {
  display: flex;
  flex-grow: 1;
  flex-basis: 0;
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  padding: 24px 0;
}
header nav {
  display: flex;
  flex-grow: 1;
  flex-basis: 0;
  justify-content: center;
  align-items: center;
}
header nav a {
  white-space: nowrap;
  text-decoration: none;
  color: #656c77;
  border-radius: 25px;
  padding: 10px 18px;
  margin: 0 10px;
}
header nav a:hover {
  background-color: #f7f7f7;
  color: #42464e;
}
header .link-icons {
  display: flex;
  flex-grow: 1;
  flex-basis: 0;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
header .link-icons .search .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 40px;
  min-width: 40px;
  height: 40px;
  padding: 9px;
  border-radius: 50%;
  cursor: pointer;
}
header .link-icons .search .icon svg {
  fill: #455163;
}
header .link-icons .search .icon:hover {
  background-color: #f7f7f7;
}
header .link-icons .search input {
  display: none;
  border: 0;
  border-bottom: 1px solid #dddfe2;
  padding: 10px 0;
  max-width: 200px;
  outline: none;
  margin-right: 10px;
}
header .link-icons .search input::placeholder {
  color: #b0b3b8;
}
header .link-icons .responsive-toggle {
  display: none;
  justify-content: center;
  align-items: center;
}
header .link-icons a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #394352;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: 5px;
}
header .link-icons a:hover {
  background-color: #f2f2f2;
}
header .link-icons a svg {
  fill: #455163;
}
header .link-icons a span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #63748e;
  background-color: #f0a65d;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  width: 17px;
  height: 17px;
  font-weight: 500;
  position: absolute;
  top: 2px;
  right: 2px;
}

main .page-title {
  display: block;
  font-weight: normal;
  margin: 0;
  padding: 40px 0 50px 0;
  font-size: 24px;
  text-align: center;
  width: 100%;
}
main .featured {
  display: flex;
  flex-direction: column;
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
main .featured h2 {
  display: inline-block;
  margin: 0;
  width: 1100px;
  font-family: Rockwell, "Courier Bold", Courier, Georgia, Times, "Times New Roman", sans-serif;
  font-weight: 500;
  font-size: 68px;
  color: #FFFFFF;
  padding-bottom: 15px;
  text-shadow: 0px 0px 16px rgba(45, 54, 68, 0.2);
}
main .featured p {
  display: inline-block;
  margin: 0;
  width: 1100px;
  font-size: 24px;
  color: #FFFFFF;
  text-shadow: 0px 0px 6px rgba(45, 54, 68, 0.2);
}
main .recentlyadded h2 {
  display: block;
  font-weight: normal;
  margin: 0;
  padding: 40px 0;
  font-size: 24px;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid #edeff3;
}
main .recentlyadded .products, main .products .products-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px 0 0 0;
}
main .recentlyadded .products .product, main .products .products-wrapper .product {
  display: block;
  overflow: hidden;
  text-decoration: none;
  width: 25%;
  padding-bottom: 60px;
}
main .recentlyadded .products .product .img, main .products .products-wrapper .product .img {
  display: flex;
  align-items: center;
  height: 200px;
  margin-bottom: 5px;
  overflow: hidden;
}
main .recentlyadded .products .product .img img, main .products .products-wrapper .product .img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transform: scale(1);
  transition: transform 1s;
}
main .recentlyadded .products .product .img.small, main .products .products-wrapper .product .img.small {
  height: 150px;
}
main .recentlyadded .products .product .name, main .products .products-wrapper .product .name {
  display: block;
  color: #4c4e52;
  padding: 20px 0 2px 0;
}
main .recentlyadded .products .product .price, main .products .products-wrapper .product .price {
  display: block;
  color: #969aa1;
}
main .recentlyadded .products .product .rrp, main .products .products-wrapper .product .rrp {
  color: #bcc0c7;
  text-decoration: line-through;
}
main .recentlyadded .products .product:hover img, main .products .products-wrapper .product:hover img {
  transform: scale(1.05);
  transition: transform 1s;
}
main .recentlyadded .products .product:hover .name, main .products .products-wrapper .product:hover .name {
  text-decoration: underline;
}
main .recentlyadded .products .product.no-stock, main .products .products-wrapper .product.no-stock {
  opacity: 0.5;
}
main .products .products-wrapper .product {
  width: 33.3333333333%;
}
main > .product {
  display: flex;
  padding: 40px 0;
}
main > .product h1 {
  font-size: 34px;
  font-weight: normal;
  margin: 0;
  padding: 20px 0 10px 0;
}
main > .product .product-img-large {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 500px;
}
main > .product .product-small-imgs {
  display: flex;
  flex-flow: wrap;
}
main > .product .product-small-imgs .product-img-small {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 31%;
  border: 1px solid #edeff3;
  cursor: pointer;
  margin: 20px 12px 0 0;
}
main > .product .product-small-imgs .product-img-small:nth-child(3n) {
  margin-right: 0;
}
main > .product .product-small-imgs .product-img-small.selected {
  border: 1px solid #c9cbcf;
}
main > .product .product-img-large img, main > .product .product-img-small img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
main > .product .product-imgs {
  flex: 1;
  padding: 15px;
}
main > .product .product-wrapper {
  padding-left: 45px;
  flex: 1;
}
main > .product .prices {
  display: flex;
}
main > .product .price {
  display: block;
  font-size: 22px;
  color: #969aa1;
}
main > .product .sub-period-type {
  display: block;
  font-size: 16px;
  color: #969aa1;
}
main > .product .rrp {
  color: #bcc0c7;
  text-decoration: line-through;
  font-size: 22px;
  padding-left: 10px;
}
main > .product .product-form {
  display: flex;
  flex-flow: column;
  max-width: 420px;
  width: 100%;
  margin: 25px 0 40px 0;
}
main > .product .product-form .add-to-wishlist, main > .product .product-form .added-to-wishlist {
  display: inline-flex;
  align-items: center;
  padding: 20px 0 10px 0;
  text-decoration: none;
  appearance: none;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  color: #4c4e52;
}
main > .product .product-form .add-to-wishlist svg, main > .product .product-form .added-to-wishlist svg {
  fill: #4c4e52;
  margin-right: 5px;
}
main > .product .product-form .add-to-wishlist:hover, main > .product .product-form .added-to-wishlist:hover {
  color: #65676c;
}
main > .product .product-form .added-to-wishlist {
  color: #dd3030;
}
main > .product .product-form .added-to-wishlist svg {
  fill: #dd3030;
}
main > .product .product-form .added-to-wishlist:hover {
  color: #d12222;
}
main > .product .product-form .btn {
  margin-top: 10px;
  width: 100%;
}
main > .product .product-form > label:first-child {
  padding-top: 0;
}
main .product-details {
  padding: 0 15px;
}
main .product-details .description-title {
  border-bottom: 1px solid #edeff3;
}
main .product-details .description-title h2 {
  display: inline-flex;
  font-size: 20px;
  font-weight: normal;
  padding: 10px 0 20px 0;
  margin: 0;
  border-bottom: 2px solid #5f6061;
}
main .product-details .description-content {
  padding: 15px 0 40px 0;
}
main .product-details .description-content p {
  margin: 0;
  padding: 10px 0;
  line-height: 1.5;
}
main .product-details .description-content h3 {
  font-size: 18px;
  font-weight: 500;
  padding: 10px 0;
  margin: 0;
}
main .product-details .description-content ul {
  margin-top: 5px;
}
main .product-details .description-content ul li {
  padding: 5px 0;
}
main > .products .products-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}
main > .products .products-header p {
  font-size: 14px;
  font-weight: 500;
  color: #969aa1;
  margin: 0;
}
main > .products .products-form {
  display: flex;
}
main > .products .products-form .products-filters {
  width: 280px;
  padding: 10px 60px 25px 0;
}
main > .products .products-form .products-filters .products-filter {
  border-top: 1px solid #edeff3;
  padding-top: 10px;
  padding-bottom: 15px;
}
main > .products .products-form .products-filters .products-filter:first-child {
  border-top: 0;
  padding-top: 0;
}
main > .products .products-form .products-filters .products-filter .filter-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0 0 7px 0;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}
main > .products .products-form .products-filters .products-filter .filter-title::after {
  content: "";
  background: url('data:image/svg+xml,<svg width="16" height="16" fill="%23b1b4bb" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M201.4 342.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 274.7 86.6 137.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z"/></svg>');
  width: 16px;
  height: 16px;
  margin: 0 0 0 15px;
  transform: rotate(180deg);
}
main > .products .products-form .products-filters .products-filter .filter-title:hover::after {
  background: url('data:image/svg+xml,<svg width="16" height="16" fill="%237e8186" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M201.4 342.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 274.7 86.6 137.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z"/></svg>');
}
main > .products .products-form .products-filters .products-filter label {
  display: flex;
  align-items: center;
  height: 30px;
  font-size: 14px;
  user-select: none;
}
main > .products .products-form .products-filters .products-filter label input {
  margin-right: 10px;
}
main > .products .products-form .products-filters .products-filter label input[type=checkbox] {
  opacity: 0.5;
}
main > .products .products-form .products-filters .products-filter label input[type=checkbox]:checked {
  opacity: 1;
}
main > .products .products-form .products-filters .products-filter label.hidden {
  display: none;
}
main > .products .products-form .products-filters .products-filter .price-range {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 0 0;
}
main > .products .products-form .products-filters .products-filter .price-range input {
  font-size: 14px;
  width: 90px;
  padding: 5px;
}
main > .products .products-form .products-filters .products-filter .show-more {
  display: block;
  text-decoration: none;
  color: #969aa1;
  font-size: 14px;
  padding: 10px 0 0 0;
}
main > .products .products-form .products-filters .products-filter .show-more:hover {
  text-decoration: underline;
}
main > .products .products-form .products-filters .products-filter.closed .filter-title {
  margin: 0;
}
main > .products .products-form .products-filters .products-filter.closed .filter-title::after {
  transform: rotate(0deg);
}
main > .products .products-form .products-filters .products-filter.closed .filter-options {
  display: none;
}
main > .products .products-form .products-view {
  flex: 1;
}
main > .products .buttons {
  text-align: right;
  padding-bottom: 40px;
}
main > .products .buttons a:first-child {
  margin-right: 5px;
}
main .cart table, main .myaccount table {
  width: 100%;
}
main .cart table thead td, main .myaccount table thead td {
  padding: 30px 0;
  border-bottom: 1px solid #edeff3;
  font-weight: 500;
  font-size: 14px;
  color: #898d95;
}
main .cart table thead td:last-child, main .myaccount table thead td:last-child {
  text-align: right;
}
main .cart table tbody td, main .myaccount table tbody td {
  padding: 20px 0;
  border-bottom: 1px solid #edeff3;
}
main .cart table tbody td:last-child, main .myaccount table tbody td:last-child {
  text-align: right;
}
main .cart table tbody td.no-results, main .myaccount table tbody td.no-results {
  text-align: center;
  color: #969aa1;
}
main .cart table .img, main .myaccount table .img {
  width: 80px;
}
main .cart table .remove, main .myaccount table .remove {
  color: #db0b0b;
  font-size: 12px;
  padding-top: 3px;
}
main .cart table .remove:hover, main .myaccount table .remove:hover {
  text-decoration: underline;
}
main .cart table .price, main .cart table .options, main .myaccount table .price, main .myaccount table .options {
  color: #969aa1;
}
main .cart table .options, main .myaccount table .options {
  font-size: 14px;
  max-width: 200px;
}
main .cart table a, main .myaccount table a {
  text-decoration: none;
  color: #4c4e52;
}
main .cart table input[type=number], main .myaccount table input[type=number] {
  width: 68px;
}
main .cart .total, main .myaccount .total {
  text-align: right;
  padding: 30px 0 40px 0;
}
main .cart .total .text, main .myaccount .total .text {
  padding-right: 40px;
  font-size: 18px;
}
main .cart .total .price, main .myaccount .total .price {
  font-size: 18px;
  color: #969aa1;
}
main .cart .total .note, main .myaccount .total .note {
  display: block;
  padding-top: 15px;
  color: #969aa1;
}
main .cart .buttons, main .myaccount .buttons {
  text-align: right;
  padding-bottom: 40px;
}
main .cart .buttons .btn, main .myaccount .buttons .btn {
  margin: 0 0 10px 7px;
}
main .placeorder p {
  text-align: center;
}
main .checkout .container {
  display: flex;
  align-items: flex-start;
}
main .checkout .shipping-details {
  margin-right: 35px;
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-flow: wrap;
  padding-bottom: 40px;
}
main .checkout .shipping-details h2 {
  width: 100%;
  font-weight: normal;
  font-size: 20px;
  padding: 30px 0 20px 0;
  margin: 0 0 10px 0;
  border-bottom: 1px solid #edeff3;
}
main .checkout .shipping-details h2:first-child {
  padding: 20px 0 20px 0;
}
main .checkout .payment-methods {
  display: flex;
  flex-flow: wrap;
  width: 100%;
  justify-content: space-between;
}
main .checkout .payment-methods label {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #edeff3;
  border-radius: 5px;
  height: 60px;
  width: 159px;
  margin: 10px;
  font-weight: 500;
  color: #434f61;
  padding: 0;
  cursor: pointer;
}
main .checkout .payment-methods label .stripe-icon {
  fill: #6671E4;
}
main .checkout .payment-methods label:nth-child(2), main .checkout .payment-methods label:nth-child(8) {
  margin-left: 0;
}
main .checkout .payment-methods label:nth-child(3n) {
  margin-right: 0;
}
main .checkout .payment-methods label:hover {
  border: 1px solid #ced4df;
}
main .checkout .payment-methods input {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
}
main .checkout .payment-methods input:checked + label {
  border: 2px solid #7ed1a1;
}
main .checkout .cart-details {
  width: 90%;
  box-shadow: 0px 0px 6px 1px rgba(45, 54, 68, 0.1);
  border-radius: 4px;
  margin-left: 35px;
  margin-bottom: 50px;
}
main .checkout .cart-details h2 {
  margin: 0;
  padding: 23px 15px;
  font-weight: 500;
  border-bottom: 1px solid #edeff3;
}
main .checkout .cart-details table {
  width: 100%;
  padding: 20px;
}
main .checkout .cart-details table .price {
  text-align: right;
  font-weight: 500;
}
main .checkout .cart-details table td {
  padding: 5px;
}
main .checkout .cart-details .discount-code {
  padding: 0 23px 23px 23px;
}
main .checkout .cart-details .discount-code .result {
  display: block;
  padding-top: 10px;
}
main .checkout .cart-details .shipping-methods {
  border-top: 1px solid #edeff3;
  padding: 23px;
}
main .checkout .cart-details .shipping-methods h3 {
  margin: 0;
  padding: 0 0 10px;
  font-weight: 500;
}
main .checkout .cart-details .shipping-methods .shipping-method {
  padding-top: 10px;
  margin: 0;
}
main .checkout .cart-details .total {
  border-top: 1px solid #edeff3;
  display: flex;
  justify-content: space-between;
  padding: 23px;
  font-size: 18px;
  font-weight: 500;
}
main .checkout .cart-details .alt {
  font-size: 14px;
  color: #a6aab1;
  padding-left: 5px;
}
main .checkout .cart-details .summary {
  border-top: 1px solid #edeff3;
  padding: 23px 0;
}
main .checkout .cart-details .summary div {
  display: flex;
  justify-content: space-between;
  padding: 10px 23px;
}
main .checkout .cart-details .summary div span {
  font-size: 14px;
  font-weight: 500;
}
main .checkout .cart-details .summary .discount span {
  color: #de0000;
}
main .checkout .cart-details .buttons {
  margin: 0 23px 23px 23px;
}
main .checkout .cart-details .buttons .btn {
  width: 100%;
}
main .checkout .cart-details .error {
  display: flex;
  align-items: center;
  margin: 0 23px 23px;
  padding: 8px;
  font-size: 12px;
  background-color: #f8d7da;
  border-radius: 4px;
}
main .checkout .cart-details .error svg {
  fill: #cf1818;
  margin: 0 8px 0 2px;
}
main .myaccount {
  display: flex;
  flex-flow: wrap;
}
main .myaccount .menu {
  padding-right: 35px;
  width: 300px;
}
main .myaccount .menu a {
  display: block;
  text-decoration: none;
  color: #7d8087;
  padding: 15px 0;
  border-bottom: 1px solid #f6f7f9;
}
main .myaccount .menu a:hover {
  color: #333538;
}
main .myaccount .myorders, main .myaccount .mydownloads, main .myaccount .settings, main .myaccount .wishlist {
  flex: 1;
  padding-bottom: 50px;
}
main .myaccount .myorders form {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-end;
}
main .myaccount .myorders .order {
  border-radius: 4px;
  box-shadow: 0px 0px 6px 1px rgba(45, 54, 68, 0.1);
  margin: 30px 0 30px 0;
}
main .myaccount .myorders .order .order-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f6f7f9;
}
main .myaccount .myorders .order .order-header > div {
  display: flex;
  padding: 20px;
}
main .myaccount .myorders .order .order-header > div div {
  padding-right: 35px;
  font-size: 14px;
  font-weight: 400;
  color: #898d95;
}
main .myaccount .myorders .order .order-header > div div:last-child {
  padding-right: 0;
}
main .myaccount .myorders .order .order-header > div div span {
  display: block;
  font-weight: 500;
  font-size: 14px;
  padding-bottom: 3px;
}
main .myaccount .myorders .order .order-header > div:last-child div:last-child {
  text-align: right;
}
main .myaccount .myorders .order .order-items {
  padding: 0 15px;
}
main .myaccount .myorders .order .order-items table {
  margin: 0;
  padding: 0;
}
main .myaccount .settings form {
  max-width: 400px;
}
main .myaccount .settings form .btn {
  margin-top: 25px;
}
main .myaccount h2 {
  width: 100%;
  font-weight: normal;
  font-size: 20px;
  padding: 15px 0;
  margin: 0 0 10px 0;
  border-bottom: 1px solid #edeff3;
}
main .myaccount table {
  padding-bottom: 40px;
}
main .myaccount table tr:last-child td {
  border-bottom: 0;
}
main .myaccount table a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border: 1px solid #edeff3;
  border-radius: 4px;
  padding: 0 10px;
  font-size: 14px;
  color: #de0000;
  margin: 0 5px 5px 0;
}
main .myaccount table a:hover {
  color: #ab0000;
}
main .myaccount table a .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding-right: 10px;
  margin-right: 10px;
  height: 100%;
  border-right: 1px solid #edeff3;
}
main .myaccount table a .icon svg {
  fill: #de0000;
}
main .myaccount table .name {
  word-break: break-all;
}
main .myaccount .login-register {
  display: flex;
  width: 80%;
  margin: 40px auto 0 auto;
  justify-content: space-between;
  margin-top: 40px;
}
main .myaccount .login-register h1 {
  text-align: left;
  padding-top: 15px;
  font-weight: 500;
}
main .myaccount .login-register .login {
  flex: 1;
  border-right: 1px solid #f6f7f9;
  padding-right: 55px;
}
main .myaccount .login-register .register {
  flex: 1;
  padding-left: 55px;
}
main .myaccount .login-register .btn {
  margin-top: 25px;
}
main .forgot-password {
  max-width: 400px;
}
main .forgot-password .btn {
  margin-top: 25px;
}
main p.error {
  color: #cf1818;
  font-weight: 500;
  font-size: 14px;
}
main p.error .form-link {
  font-weight: inherit;
  font-size: inherit;
  text-decoration: none;
  color: #74160b;
}
main p.error .form-link:hover {
  color: #450d07;
}
main p.success {
  color: #0da74d;
  font-weight: 500;
  font-size: 14px;
}
main p.success .form-link {
  font-weight: inherit;
  font-size: inherit;
  text-decoration: none;
  color: #0b6430;
}
main p.success .form-link:hover {
  color: #06361a;
}

.img-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.img-modal div {
  position: absolute;
  display: flex;
  flex-flow: column;
  width: 800px;
  height: 800px;
  max-width: 90%;
  max-height: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #FFFFFF;
  padding: 15px;
}
.img-modal div a {
  display: inline-flex;
  align-self: flex-end;
  text-decoration: none;
  font-size: 34px;
  line-height: 26px;
  color: #b2b4b8;
}
.img-modal div a:hover {
  color: #989a9f;
}
.img-modal div img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding-top: 20px;
  padding-bottom: 25px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background-color: #3c414e;
  border: 0;
  color: #FFFFFF;
  padding: 0 16px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  height: 40px;
  border-radius: 4px;
  box-shadow: 0px 0px 6px 1px rgba(45, 54, 68, 0.15);
  cursor: pointer;
}
.btn.paypal {
  background-color: #287ddf;
  box-shadow: 0px 0px 6px 1px rgba(45, 54, 68, 0.12);
}
.btn.stripe {
  background-color: #6772e5;
  box-shadow: 0px 0px 6px 1px rgba(45, 54, 68, 0.12);
}
.btn:hover {
  background-color: #353a45;
}
.btn:hover.paypal {
  background-color: #2075d8;
}
.btn:hover.stripe {
  background-color: #5a66e3;
}
.btn:disabled {
  background: #c6c7c9;
  box-shadow: 0px 0px 6px 1px rgba(45, 54, 68, 0.05);
}

.link {
  font-weight: 500;
  text-decoration: none;
  color: #007bff;
  font-size: inherit;
}
.link:hover {
  text-decoration: underline;
}

.form .form-group {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.form .form-group .col {
  width: 100%;
}
.form .form-select {
  display: inline-flex;
  align-items: center;
  padding: 2px 0 2px 10px;
  border: 1px solid #dddfe2;
  border-radius: 5px;
  color: #878b91;
  font-size: 14px;
  overflow: hidden;
}
.form .form-select select {
  padding: 5px 5px 5px 0;
  border: 0;
  font-weight: 500;
  font-size: 14px;
  color: #878b91;
  outline: none;
}
.form .form-select select option {
  color: #696c71;
}
.form .form-label {
  display: block;
  padding: 14px 0 10px 0;
}
.form .form-label-2 {
  display: block;
  padding: 14px 0 0 0;
}
.form .form-label-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 10px 0;
}
.form .form-input {
  padding: 8px 10px;
  border: 1px solid #dddfe2;
  border-radius: 4px;
}
.form .form-input::placeholder {
  color: #b0b3b8;
}
.form .form-input.expand {
  width: 100%;
}
.form .form-radio-checkbox {
  display: flex;
  flex-flow: wrap;
}
.form .form-radio-checkbox input {
  margin: 0 8px 0 0;
}
.form .form-radio-checkbox label {
  display: inline-flex;
  align-items: center;
  padding: 10px 15px 0 0;
}
.form .form-link {
  color: #2a77eb;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
}
.form .form-link:hover {
  color: #135ac5;
}

footer .content-wrapper {
    padding: 0 10px; /* or match header's padding if different */
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer {
  background: rgba(17, 24, 39, 0.8);
  padding: 30px 0;
  display: flex;
  width: 100%;
  position: relative;
  clear: both;
}
footer ul {
    display: flex;
    flex-direction: column;
    grid-gap: 24px;
    box-shadow: none;
    flex: 1;
    color: #F9F9F9;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 80px;
    list-style: none;

}

footer ul li {
    color: #F9F9F9;
    padding: 0;

}
footer a {
  text-decoration: none;
  color: #F9F9F9;
}
footer a:hover {
  text-decoration: underline;
}

.pad-1 {
  padding: 5px;
}

.mar-1 {
  margin: 5px;
}

.pad-2 {
  padding: 10px;
}

.mar-2 {
  margin: 10px;
}

.pad-3 {
  padding: 15px;
}

.mar-3 {
  margin: 15px;
}

.pad-4 {
  padding: 20px;
}

.mar-4 {
  margin: 20px;
}

.pad-5 {
  padding: 25px;
}

.mar-5 {
  margin: 25px;
}

.pad-bot-1 {
  padding-bottom: 5px;
}

.pad-top-1 {
  padding-top: 5px;
}

.pad-left-1 {
  padding-left: 5px;
}

.pad-right-1 {
  padding-right: 5px;
}

.pad-x-1 {
  padding-left: 5px;
  padding-right: 5px;
}

.pad-y-1 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.mar-bot-1 {
  margin-bottom: 5px;
}

.mar-top-1 {
  margin-top: 5px;
}

.mar-left-1 {
  margin-left: 5px;
}

.mar-right-1 {
  margin-right: 5px;
}

.mar-x-1 {
  margin-left: 5px;
  margin-right: 5px;
}

.mar-y-1 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.pad-bot-2 {
  padding-bottom: 10px;
}

.pad-top-2 {
  padding-top: 10px;
}

.pad-left-2 {
  padding-left: 10px;
}

.pad-right-2 {
  padding-right: 10px;
}

.pad-x-2 {
  padding-left: 10px;
  padding-right: 10px;
}

.pad-y-2 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.mar-bot-2 {
  margin-bottom: 10px;
}

.mar-top-2 {
  margin-top: 10px;
}

.mar-left-2 {
  margin-left: 10px;
}

.mar-right-2 {
  margin-right: 10px;
}

.mar-x-2 {
  margin-left: 10px;
  margin-right: 10px;
}

.mar-y-2 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.pad-bot-3 {
  padding-bottom: 15px;
}

.pad-top-3 {
  padding-top: 15px;
}

.pad-left-3 {
  padding-left: 15px;
}

.pad-right-3 {
  padding-right: 15px;
}

.pad-x-3 {
  padding-left: 15px;
  padding-right: 15px;
}

.pad-y-3 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.mar-bot-3 {
  margin-bottom: 15px;
}

.mar-top-3 {
  margin-top: 15px;
}

.mar-left-3 {
  margin-left: 15px;
}

.mar-right-3 {
  margin-right: 15px;
}

.mar-x-3 {
  margin-left: 15px;
  margin-right: 15px;
}

.mar-y-3 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.pad-bot-4 {
  padding-bottom: 20px;
}

.pad-top-4 {
  padding-top: 20px;
}

.pad-left-4 {
  padding-left: 20px;
}

.pad-right-4 {
  padding-right: 20px;
}

.pad-x-4 {
  padding-left: 20px;
  padding-right: 20px;
}

.pad-y-4 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.mar-bot-4 {
  margin-bottom: 20px;
}

.mar-top-4 {
  margin-top: 20px;
}

.mar-left-4 {
  margin-left: 20px;
}

.mar-right-4 {
  margin-right: 20px;
}

.mar-x-4 {
  margin-left: 20px;
  margin-right: 20px;
}

.mar-y-4 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.pad-bot-5 {
  padding-bottom: 25px;
}

.pad-top-5 {
  padding-top: 25px;
}

.pad-left-5 {
  padding-left: 25px;
}

.pad-right-5 {
  padding-right: 25px;
}

.pad-x-5 {
  padding-left: 25px;
  padding-right: 25px;
}

.pad-y-5 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.mar-bot-5 {
  margin-bottom: 25px;
}

.mar-top-5 {
  margin-top: 25px;
}

.mar-left-5 {
  margin-left: 25px;
}

.mar-right-5 {
  margin-right: 25px;
}

.mar-x-5 {
  margin-left: 25px;
  margin-right: 25px;
}

.mar-y-5 {
  margin-top: 25px;
  margin-bottom: 25px;
}

/* Responsive CSS below */
@media screen and (max-width: 1100px) {
  .rhide {
    display: none;
  }
  .content-wrapper {
    padding: 0 10px;
  }
  header {
    justify-content: space-between;
  }
  header h1 {
    font-size: 16px;
    flex-basis: auto;
  }
  header nav {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% + 1px);
    width: 100%;
    background-color: #FFFFFF;
    margin: 0;
    box-shadow: 0px 2px 2px 1px rgba(45, 54, 68, 0.03);
  }
  header nav a {
    display: block;
    padding: 15px 12px;
    margin: 0;
    border-bottom: 1px solid #f6f7f9;
  }
  header .link-icons {
    display: inline-flex;
    width: 100px;
  }
  header .link-icons .responsive-toggle {
    display: flex;
  }
  header .link-icons .search input {
    max-width: 150px;
  }
  main .recentlyadded .products, main .products .products-wrapper {
    justify-content: center;
  }
  main .recentlyadded .products .product, main .products .products-wrapper .product {
    width: auto;
  }
  main .featured {
    height: 300px;
  }
  main .featured h2 {
    font-size: 48px;
    width: 100%;
    padding: 0 10px;
  }
  main .featured p {
    font-size: 22px;
    width: 100%;
    padding: 0 10px;
  }
  main > .products .products-header p, main > .products .products-header label {
    margin-bottom: 10px;
  }
  main > .products .products-form {
    flex-flow: column;
  }
  main > .products .products-form .products-filters {
    width: 100%;
    order: 1;
    padding: 0 5px 15px 5px;
  }
  main > .product {
    padding: 0 10px;
    flex-flow: column;
  }
  main > .product .product-imgs {
    padding: 20px 10px 0 10px;
  }
  main > .product .product-imgs .product-img-large {
    height: 300px;
  }
  main > .product .product-imgs .product-small-imgs .product-img-small {
    height: 80px;
    flex-basis: 30%;
  }
  main > .product .product-wrapper {
    padding: 0;
  }
  main .cart table input[type=number] {
    width: 40px;
  }
  main .checkout .container, main .myaccount .container {
    flex-flow: column;
  }
  main .checkout .shipping-details .payment-methods, main .myaccount .shipping-details .payment-methods {
    flex-flow: column;
  }
  main .checkout .shipping-details .payment-methods label, main .myaccount .shipping-details .payment-methods label {
    width: 100%;
    margin: 0 0 10px 0;
  }
  main .checkout .cart-details, main .myaccount .cart-details {
    margin: 0 0 40px 0;
    width: 100%;
  }
  main .checkout form, main .myaccount form {
    width: 100%;
  }
  main .myaccount .login-register {
    width: 100%;
    flex-flow: column;
  }
  main .myaccount .login-register .login {
    border-right: 0;
    padding: 10px;
  }
  main .myaccount .login-register .register {
    padding: 10px;
  }
  main .myaccount .menu {
    width: 100%;
    padding-right: 0;
  }
  footer .content-wrapper {
    display: block;
    overflow-x: unset;
    white-space: normal;
    padding-bottom: 16px;
    text-align: center; /* Center all footer content */
  }
  footer ul {
    display: block;
    padding: 0;
    margin: 0;
    text-align: center; /* Center list items */
  }
  footer ul li {
    display: block;
    padding: 8px 0;
    font-size: 16px;
    white-space: normal;
    margin-bottom: 0;
    text-align: center; /* Center text in each item */
  }
  footer ul li.footer-title {
    display: none;
  }
}


.banner {
    background: #6790db;
    color: #F9F9F9;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: center;

}

#logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    grid-gap: 8px;
    line-height: 100%;
    font-weight: 500;
    color: #ffffff;
}

.navigation-menu {
    display: flex;
    flex-direction: row;
    flex: 1;
    justify-content: center;
    position: relative;
    top: 0;
    height: 30px;
    border-top: 2px solid #202a44;
}

.navigation-menu a {
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;

}

.navigation-menu > li {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    /*    justify-items: center;*/
}

.navigation-menu > li > a {
    position: relative;
    /*    border: 1px solid purple;*/
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-items: center;
}

.navigation-menu > li:hover ul.subnav {
    visibility: visible;
    opacity: 1;
    top: 64px;

}


.home-hero {
  width: 100%;
  height: auto; /* Or set a specific height, e.g., 100vh for full viewport height */
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px; /* Note: grid-gap is outdated; use gap instead */
  padding: 40px;
}

.home-hero h1 {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
    width: 100%;
    color: #ffffff;
}

button {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    padding: 12px 24px;
    border-radius: 48px;
    display: flex;
    flex-direction: row;
    grid-gap: 8px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}



button.btn-outline-light {
    color: #F9F9F9;
    background: none;
    color: #F9F9F9;
    border: 2px solid #F9F9F9;
}

button.btn-outline-dark {
    color: #45413E;
    background: none;
    color: #45413E;
    border: 2px solid #45413E;
}

button.btn-filled-dark {
    color: #F9F9F9;
    background: #45413E;
    color: #F9F9F9;
    border: 2px solid #45413E;
}

.btn-outline-dark:hover {
    background: #45413E;
    border: 2px solid #45413E;
}

.btn-outline-light:hover {
    background: #F9F9F9;
    border: 2px solid #F9F9F9;
    color: #45413E;
}


button:hover,
.btn-outline-dark.btn-hover-color:hover {
    color: #F9F9F9;
    background: #10192a;
    transition: all 0.2s ease;
}

.btn-group {
    display: flex;
    flex-direction: row;
    grid-gap: 16px;
}

#locate > div {
    background: #6790db;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    border-radius: 12px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    cursor: pointer;
    margin-bottom: 40px; /* Add this line for spacing */
}

#locate > div:hover {
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.15);
}

#locate .locate-h2 {
    margin-top: 0;
    font-size: 32px;
    font-weight: 600;
}

#locate .locate-p {
    line-height: 1.5;
    margin-bottom: 40px;
    width: 50%;
    text-align: center;
}

.category-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin: 40px 0;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 32px 28px 20px 28px;
    text-decoration: none;
    color: #394352;
    width: 170px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.category-card:hover {
    box-shadow: 0 8px 32px rgba(37,99,235,0.15);
    transform: translateY(-4px) scale(1.03);
    color: #2563eb;
}

.category-icon {
    background: #f0f4ff;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 36px;
    color: #2563eb;
}
.category-title {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: inherit;
}
.category-card .material-symbols-outlined {
    font-size: 36px;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #0f172a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #0891b2, #4f46e5);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #06b6d4, #6366f1);
}





#newsletter-section {
    width: 100%;
    background: #232733;
    color: #fff;
    padding: 40px 0 30px 0;
    margin: 0;
    position: relative;
    left: 0;
    right: 0;
    overflow-x: hidden;
}
#newsletter-section .locate-h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

#newsletter-section .locate-p {
    margin-bottom: 20px;
    color: #ccc;
}
.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter-container input[type="email"] {
    border-radius: 24px 0 0 24px;
    border-right: none;
    height: 40px;
    width: 280px;
    margin: 0;
}

.newsletter-container button {
    border-radius: 0 15px 15px 0;
    height: 40px;
    margin: 0;
}
.newsletter-form,
.newsletter {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 0;
}

@media (max-width: 600px) {
  .newsletter-form input[type="email"] {
    border-radius: 24px;
    width: 100%;
    min-width: 0;
  }
  .newsletter-form button {
    margin-top: 4px;
      border-radius: 24px;
    width: 50%;
    min-width: 0;
  }
}









.launch-banner {
    position: relative;
    background: linear-gradient(90deg, #6366f1 0%, #06b6d4 100%);
    color: #fff;
    text-align: center;
    padding: 60px 20px 80px 20px;
    margin-bottom: 32px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.launch-banner-content {
    position: relative;
    z-index: 2;
}

.launch-banner h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.launch-banner p {
    font-size: 1.3rem;
    margin-bottom: 28px;
    font-weight: 400;
}

.launch-btn {
    background-color: #4053b4; /* Green */
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.launch-btn:hover {
    background-color: #2a2b7d; /* Darker green */
}

#confetti-canvas {
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
}





.product-gallery-card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;

    border-radius: 18px;

    padding: 40px 32px;
    margin: 40px auto 32px auto;
    max-width: 1100px;
    align-items: flex-start;
}
.product-gallery-left {
    flex: 1 1 380px;
    max-width: 420px;
    min-width: 300px;
}
.product-gallery-mainimg {
    background: none;         /* Remove background color */
    border-radius: 0;         /* Remove rounded corners */
    padding: 0;               /* Remove padding */
    text-align: center;
    margin-bottom: 18px;
    min-height: 0;            /* Remove min-height */
    height: auto;             /* Let height be determined by image */
    box-shadow: none;         /* Remove shadow */
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-gallery-mainimg .main-img {
    width: 100%;
    height: auto;
    max-width: none;
    max-height: none;
    border-radius: 0;
    background: none;
    margin: auto;
    display: block;
}
.product-info-panel {
    background: #e5e7eb; /* Tailwind's gray-200, adjust as needed */
    border-radius: 18px;
    padding: 36px 36px 32px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 340px;
    max-width: 480px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.product-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    justify-content: center;
}
.product-gallery-thumbs .thumb-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #e0e7ef;
    cursor: pointer;
    transition: border 0.2s;
    background: #fff;
}
.product-gallery-thumbs .thumb-img:hover,
.product-gallery-thumbs .thumb-img.selected {
    border: 2px solid #638bf1;
}
.product-gallery-right {
    flex: 2 1 400px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.product-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #22223b;
}
.product-pricebox {
    font-size: 1.7rem;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 16px;
}
.product-price {
    color: #638bf1;
    font-weight: 800;
    font-size: 2rem;
}
.product-rrp {
    color: #b91c1c;
    text-decoration: line-through;
    font-size: 1.1rem;
}
.product-sub-period {
    color: #64748b;
    font-size: 1rem;
    margin-left: 8px;
}
.product-form {
    margin-bottom: 8px;
}
.product-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}
.buy-btn {
    background: #638bf1;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.buy-btn:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
}
.wishlist-btn {
    background: #fff;
    color: #638bf1;
    border: 2px solid #638bf1;
    border-radius: 24px;
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.wishlist-btn.active, .wishlist-btn:hover {
    background: #638bf1;
    color: #fff;
}
.product-meta {
    margin-top: 12px;
    font-size: 1rem;
    color: #64748b;
    display: flex;
    gap: 32px;
}
@media (max-width: 900px) {
    .product-gallery-card {
        flex-direction: column;
        padding: 18px;
        gap: 24px;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .product-gallery-left, .product-gallery-right {
        max-width: 100%;
        min-width: 0;
        align-items: center;
        justify-content: center;
        width: 100%;
        
    }
    .product-info-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    align-items: center;
    padding: 24px 10px;
    }
    .product-title,
    .product-pricebox,
    .product-form,
    .product-actions,
    .product-feature-list {
        max-width: 100%;
    }
}

.go-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #45413E;
    color: #F9F9F9;
    border: none;
    border-radius: 48px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}
.go-back-link {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0;
    margin: 0;
    background: none;
}
.go-back-link:visited,
.go-back-link:active,
.go-back-link:hover {
    color: inherit;
    text-decoration: none;
}
.go-back-btn .material-symbols-outlined {
    font-size: 1.4em;
    vertical-align: middle;
}

.products-page {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 32px auto;
    padding: 0 12px;
}
.products-sidebar {
    width: 260px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 24px 18px;
    font-size: 1rem;
    color: #222;
    flex-shrink: 0;
}
.sidebar-section {
    margin-bottom: 28px;
}
.sidebar-section h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.sidebar-section .checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 260px; /* Optional: limit height and scroll */
    overflow-y: auto;
    padding-right: 4px;
}

.sidebar-section .checkbox {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #222;
    padding: 2px 0;
    cursor: pointer;
    transition: background 0.15s;
    border-radius: 4px;
}

.sidebar-section .checkbox input[type="checkbox"] {
    margin-right: 8px;
    accent-color: #638bf1; /* Modern browsers: blue checkboxes */
}

.sidebar-section .checkbox:hover {
    background: #f3f4f6;
}

.sidebar-section .show-more {
    margin-top: 6px;
    color: #2563eb;
    font-size: 0.98em;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
}

.sidebar-section .show-more:hover {
    text-decoration: underline;
}
.products-main {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
}
.products-toolbar {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 18px 24px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.products-search {
    width: 100%;
    padding: 10px 16px;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    font-size: 1rem;
    margin-bottom: 8px;
}
.products-breadcrumbs {
    font-size: 0.98rem;
    color: #555;
    margin-bottom: 8px;
}
.products-breadcrumbs a {
    color: #2d6cdf;
    text-decoration: none;
}
.clear-all {
    margin-left: 12px;
    color: #b91c1c;
    font-size: 0.95em;
}
.products-sorting {
    display: flex;
    gap: 8px;
}
.sort-btn {
    background: #f3f4f6;
    border: none;
    border-radius: 4px;
    padding: 6px 14px;
    font-size: 1rem;
    cursor: pointer;
    color: #222;
    font-weight: 500;
}
.sort-btn.active, .sort-btn:hover {
    background: #222;
    color: #fff;
}
.products-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.products-card {
    display: flex;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 18px 24px;
    align-items: flex-start;
    gap: 24px;
}
.products-img img {
    width: 200px;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    background: #f6f8fa;
}
.products-info {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.products-info h2 {
    font-size: 1.18rem;
    font-weight: 700;
    margin: 0 0 4px 0;
}
.products-meta {
    font-size: 0.98rem;
    color: #555;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.products-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    min-width: 120px;
}
.products-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
}
.products-rating {
    font-size: 1rem;
    color: #f59e42;
}
.add-to-cart {
    background: #638bf1;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none; /* Remove underline */
    display: inline-block;
}
.add-to-cart:hover {
    background: #4667b3;
    color: #fff;
    text-decoration: none;
}
@media (max-width: 900px) {
    .products-page {
        flex-direction: column;
        gap: 0;
    }
    .products-sidebar {
        width: 100%;
        margin-bottom: 18px;
    }
    .products-main {
        width: 100%;
    }
    .products-card {
        flex-direction: column;
        align-items: stretch;
    }
    .products-actions {
        align-items: flex-start;
    }
}

.order-success-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    max-width: 420px;
    margin: 48px auto 64px auto;
    padding: 40px 32px 32px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.order-success-icon {
    margin-bottom: 18px;
}

.order-success-message {
    font-size: 1.1rem;
    color: #444;
    margin: 18px 0 28px 0;
}

.order-success-btn {
    background: #638bf1;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 1.08rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
}

.order-success-btn:hover {
    background: #4667b3;
    color: #fff;
}





.content-wrapper-modern {
    max-width: 1100px;
    margin: 40px auto 60px auto;
    padding: 0 16px;
}

.account-auth-cards {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* use center for vertical centering */
    gap: 32px;
    margin: 60px auto 0 auto;
    width: 100%;
}

.account-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    width: 400px;           /* Fixed width for both cards */
    max-width: 100%;
    padding: 36px 28px 28px 28px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.account-layout {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    width: 100%;
}

.account-menu {
    min-width: 220px;
    background: #f7f8fa;
    border-radius: 14px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.04);
    padding: 32px 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 0;
    font-size: 1.08rem;
}

.account-menu a {
    color: #222;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 0 20px 20px 0;
    transition: background 0.15s, color 0.15s;
    font-weight: 500;
    display: block;
}

.account-menu a.active,
.account-menu a:hover {
    background: #638bf1;
    color: #fff;
}

.account-main {
    flex: 1 1 0;
    min-width: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 36px 32px 32px 32px;

    width: 100%;
    box-sizing: border-box; 

}
.account-main form {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
}
.account-main .form-group {
    flex-wrap: wrap;
    gap: 0 12px;
}

.account-main .form-group .col {
    min-width: 0;
    flex: 1 1 160px;
}

/* Make inputs expand but not overflow */
.account-main input,
.account-main select {
    max-width: 100%;
    box-sizing: border-box;

}

.account-card .btn {
    background: #638bf1;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 1.08rem;
    font-weight: 600;
    margin-top: 18px;      /* Add spacing above the button */
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(99,139,241,0.08);
    transition: background 0.2s, color 0.2s;
    display: inline-block;
}

.account-card .btn:hover,
.account-card .btn:focus {
    background: #4667b3;
    color: #fff;
}

@media (max-width: 900px) {
    .account-layout {
        flex-direction: column;
        gap: 18px;
    }
    .account-menu {
        flex-direction: row;
        min-width: 0;
        border-radius: 12px;
        padding: 12px 0;
        justify-content: space-between;
        gap: 0;

    }
    .account-menu a {
        border-radius: 12px;
        padding: 10px 18px;
        font-size: 1rem;
        white-space: nowrap;
    }
    .account-main {
        padding: 20px 10px;

    }
    .account-auth-cards {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .account-card {
    width: 100%;
    max-width: 400px;
    }
}
@media (max-width: 600px) {
    .account-main {
        padding: 12px 4px;
    }
    .account-main form {
        padding: 0;
    }
    .account-main .form-group {
        flex-direction: column;
        gap: 0;
    }
}

.related-products {
    margin-bottom: 48px;
    padding-bottom: 32px;
}

.related-products-list {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.related-product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 18px;
    width: 220px;
    text-align: center;
    transition: box-shadow 0.2s;
}
.related-product-card:hover {
    box-shadow: 0 4px 16px rgba(99,139,241,0.15);
}
.related-product-card img {
    width: 100%;
    max-width: 160px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 12px;
}


#main-footer {
    background: #181d29;
    color: #f3f4f6;
    font-family: "Inter", Arial, sans-serif;
    padding: 0;
    border-top: 2px solid #23283a;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.5fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 24px 24px;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.footer-col h4 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.footer-col ul li {
    color: #b3c0e0;
    font-size: 1rem;
    line-height: 1.7;
}
.footer-col a {
    color: #b3c0e0;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-nearth ul li strong {
    color: #fff;
}
.footer-copyright {
    margin-top: 18px;
    color: #b3c0e0;
    font-size: 0.97rem;
    line-height: 1.5;
}
.footer-copyright a {
    color: #6ea8fe;
    text-decoration: underline;
}
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 10px 18px 10px;
        text-align: center;
    }
    .footer-col {
        align-items: center;
    }
    .footer-col ul {
        align-items: center;
    }
}



hr {
    display: block;
    height: 2px;
    border: 0;
    border-top: 1px solid #707070;
    margin: 1em 0;
    padding: 0;
}









.feature-section {
    padding: 60px 0 40px 0;
}

.feature-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 64px;
}

.feature-images-box {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 24px 24px 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-images img {
    width: 180px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    background: #ddd;
}

.feature-content {
    flex: 1 1 480px;
    min-width: 340px;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-content h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 18px;
    color: #232323;
    text-align: center;
}

.feature-divider {
    width: 100%;
    max-width: 520px;
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 0 0 32px 0;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 32px;
    width: 100%;
    max-width: 520px;
    justify-items: center;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    padding: 32px 18px 22px 18px;
    min-width: 220px;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 8px;
}

@media (max-width: 1100px) {
    .feature-wrapper {
        flex-direction: column;
        gap: 32px;
    }
    .feature-content {
        max-width: 100%;
    }
    .feature-cards-grid {
        max-width: 100%;
    }
}

@media (max-width: 700px) {
    .feature-images img {
        width: 120px;
        height: 70px;
    }
    .feature-cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .feature-card {
        min-width: 0;
        max-width: 100%;
    }
}




.product-search-bar {
    width: 100%;
    margin: 32px 0 40px 0;
    display: flex;
    justify-content: center; /* Center the form inside the bar */
    align-items: center;
    padding: 0;
    box-sizing: border-box;
}

.product-search-form {
    width: 100%;
    max-width: 600px; /* or your preferred max width */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    padding: 0 6px 0 0;
    margin: 0 auto;
}

.product-search-input {
    border: none;
    outline: none;
    padding: 18px 16px;
    font-size: 1rem;
    border-radius: 12px 0 0 12px;
    flex: 1;
    background: transparent;
}

.product-search-btn {
    background: #4caf50;
    color: #fff;
    border: none;
    outline: none;
    padding: 0 28px;
    height: 48px;
    border-radius: 0 12px 12px 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.product-search-btn:hover {
    background: #388e3c;
}

.search-icon {
    font-size: 1.1em;
}

@media (max-width: 600px) {
    .product-search-bar {
        justify-content: center;
        padding: 0 10px;
    }
    .product-search-form {
        max-width: 100%;
    }
}












.modern-cart {
    max-width: 900px;
    margin: 40px auto 60px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 32px 24px 24px 24px;
}

.cart-table-wrapper {
    overflow-x: auto;
}

.cart-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
    background: transparent;
}

.cart-table th, .cart-table td {
    background: #f7f8fa;
    border: none;
    padding: 16px 12px;
    border-radius: 10px;
    vertical-align: middle;
}

.cart-table thead td {
    background: none;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    border-radius: 0;
    padding-bottom: 8px;
}

.cart-table tbody tr {
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    background: #fff;
}

.cart-table .img img {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.cart-table .remove {
    color: #f87171;
    font-size: 0.95em;
    text-decoration: none;
    margin-top: 6px;
    display: inline-block;
    transition: color 0.2s;
}
.cart-table .remove:hover {
    color: #dc2626;
    text-decoration: underline;
}

.cart-table .quantity input[type="number"] {
    width: 60px;
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #f3f4f6;
    font-size: 1em;
    text-align: center;
}

.cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.cart-subtotal {
    font-size: 1.2rem;
    font-weight: 600;
    color: #232323;
    background: #f7f8fa;
    padding: 18px 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    gap: 18px;
}

.cart-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cart-buttons .btn {
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    background: #e5e7eb;
    color: #232323;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.cart-buttons .btn.primary {
    background: #6366f1;
    color: #fff;
}

.cart-buttons .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 700px) {
    .modern-cart {
        padding: 12px 4px 18px 4px;
    }
    .cart-summary {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .cart-subtotal {
        justify-content: center;
        padding: 12px 8px;
    }
    .cart-buttons {
        justify-content: center;
    }
}



.live-preview-btn {
    display: inline-block;
    background: #6366f1;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    text-decoration: none;
    margin: 18px 0;
    transition: background 0.2s;
}
.live-preview-btn:hover {
    background: #4f46e5;
}


.cf-turnstile {
    margin-top: 16px;   /* space above the widget */
    margin-bottom: 0;   /* adjust as needed */
}









.checkout-modern-wrapper {
    min-height: 100vh;
    background: #f7f8fa;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 0 60px 0;
}

.checkout-modern-form {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 32px 24px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.checkout-modern-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.checkout-modern-main {
    flex: 2 1 400px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.checkout-modern-cart {
    flex: 1 1 320px;
    min-width: 280px;
    background: #f7f8fa;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 24px 18px 18px 18px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.checkout-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 12px;
}

.checkout-label {
    font-size: 1rem;
    color: #232323;
    margin-bottom: 4px;
    font-weight: 500;
    display: block;
}

.checkout-input, .checkout-modern-cart select {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #f3f4f6;
    font-size: 1rem;
    margin-bottom: 12px;
    transition: border 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.checkout-input:focus, .checkout-modern-cart select:focus {
    border-color: #6366f1;
    outline: none;
}

.checkout-row {
    display: flex;
    gap: 16px;
}

.checkout-col {
    flex: 1 1 0;
}

.checkout-payment-methods {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.checkout-payment-methods label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    cursor: pointer;
}

.checkout-payment-methods input[type="radio"] {
    margin-right: 6px;
}

.stripe-icon {
    vertical-align: middle;
}

.checkout-cart-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    margin-bottom: 10px;
}

.checkout-cart-table td {
    background: #fff;
    border-radius: 8px;
    padding: 8px 10px;
    vertical-align: middle;
    font-size: 1em;
}

.checkout-cart-table img {
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}



.checkout-discount-result {
    font-size: 0.97em;
    color: #6366f1;
    margin-top: 2px;
}

.checkout-summary {
    background: #f3f4f6;
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 8px;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    font-size: 1em;
}

.checkout-summary-alt {
    color: #888;
    font-size: 0.95em;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.15em;
    margin: 12px 0 18px 0;
    padding: 10px 0 0 0;
    border-top: 1px solid #e5e7eb;
}

.checkout-btn {
    padding: 13px 0;
    border-radius: 8px;
    border: none;
    background: #6366f1;
    color: #fff;
    font-weight: 600;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
    width: 100%;
}

.checkout-btn.primary:hover {
    background: #4f46e5;
}

.checkout-error {
    background: #fee2e2;
    color: #b91c1c;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 12px;
    font-size: 1em;
    text-align: center;
}

.checkout-login-msg {
    background: #f3f4f6;
    color: #232323;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 18px;
    font-size: 1em;
    text-align: center;
}

.checkout-link {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
}

.checkout-link:hover {
    color: #4f46e5;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .checkout-modern-grid {
        flex-direction: column;
        gap: 24px;
    }
    .checkout-modern-cart {
        margin-top: 24px;
    }
}

@media (max-width: 600px) {
    .checkout-modern-form {
        padding: 10px 2px;
    }
    .checkout-modern-cart {
        padding: 12px 4px;
    }
}


.auth-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f8fa;
}

.auth-form {
    background: #fff;
    padding: 40px 32px 32px 32px;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 370px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auth-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #232323;
}

.auth-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.auth-label {
    margin-bottom: 6px;
    font-weight: 500;
    color: #232323;
    font-size: 1rem;
}

.auth-input {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #f3f4f6;
    font-size: 1rem;
    margin-bottom: 0;
    transition: border 0.2s;
}

.auth-input:focus {
    border-color: #6366f1;
    outline: none;
}

.auth-btn {
    width: 100%;
    padding: 13px 0;
    border-radius: 8px;
    border: none;
    background: #6366f1;
    color: #fff;
    font-weight: 600;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}

.auth-btn.primary:hover {
    background: #4f46e5;
}

@media (max-width: 500px) {
    .auth-form {
        padding: 18px 6px;
        max-width: 98vw;
    }
}


.checkout-discount {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.checkout-discount .checkout-input {
    flex: 1;
    min-width: 0;
    width: auto;
}