}

/* CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scrollbar-gutter: stable;
  overflow-y: scroll;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--color-slate-dark);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #a42b2d;
  cursor: pointer;
  transition: color 0.3s;
}
a:hover {
  color: #a42b2d;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Loader Animation */
.popup-loading-wrapper .loader div {
  background: #a42b2d !important;
}

/* ============================================
   NOTIFICATION SYSTEM
   ============================================ */
.notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  pointer-events: none;
}

.notification {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  pointer-events: all;
  animation: slideIn 0.3s ease-out;
  border-left: 4px solid var(--notif-color);
}

.notification.hiding {
  animation: slideOut 0.3s ease-out forwards;
}

@keyframes slideIn {
  from {
    transform: translateX(120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(120%);
    opacity: 0;
  }
}

.notification__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification__content {
  flex: 1;
  min-width: 0;
}

.notification__title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--color-slate-dark);
}

.notification__message {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.5;
}

.notification__close {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  cursor: pointer;
  transition: color 0.2s;
}

.notification__close:hover {
  color: var(--color-slate-dark);
}

.notification--success {
  --notif-color: #404d85;
}

.notification--error {
  --notif-color: #ef4444;
}

.notification--warning {
  --notif-color: var(--color-coral);
}

.notification--info {
  --notif-color: var(--color-teal);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.subheader-soc {
  background: var(--color-teal-light);
}

.subheader-soc_cont {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  gap: 42px;
}

.subheader-soc_phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  color: var(--color-text-primary);
}

.subheader-soc_itm {
  display: flex;
  align-items: center;
  justify-content: center;
}

.subheader-soc_cont a {
  color: var(--color-text-primary);
  font-size: 12px;
  font-weight: 400;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: underline;
}

.subheader-soc_cont a.email__line {
  text-decoration: none;
}

.subheader-soc_cont a:hover {
  opacity: 0.6;
}

.subheader-soc_cont img {
  margin-right: 7px;
  height: 15px;
  width: auto;
}

.email__line {
  font-size: 12px;
  transition: all 0.2s;
}

.email__line:hover {
  color: var(--color-teal-light);
}

.header-section {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.header-logo img,
.header-logo {
  max-width: 150px;
}
.header-logo {
  cursor: pointer;
}

.header-burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
}

.header-burger-menu span {
  display: block;
  height: 3px;
  background: var(--color-slate-dark);
  border-radius: 3px;
  transition: all 0.3s;
}

.header-navigations {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.header-navigations__close {
  display: none;
}

.header-navigations a {
  font-weight: 500;
  font-size: 16px;
  color: var(--color-teal);
  transition: color 0.3s;
  position: relative;
}

.header-navigations a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-teal);
  transition: width 0.3s;
}

.header-navigations a:hover::after {
  width: 100%;
}

.header-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: background 0.3s;
}

.header-cart:hover {
  background: var(--color-teal-light);
}

.header-cart svg path {
  fill: var(--color-teal-dark) !important;
}

.header-cart__quantity {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #8b8b8b;
  color: var(--color-white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-page {
  background: #f8fafc;
  min-height: calc(100vh - 200px);
}

.checkout-section {
  padding: 40px 0 60px;
}

/* ============================================
   EMPTY CART
   ============================================ */
.cart-empty {
  text-align: center;
  padding: 80px 20px;
  max-width: 500px;
  margin: 0 auto;
}

.cart-empty__icon {
  margin-bottom: 24px;
}

.cart-empty__icon svg {
  width: 120px;
  height: 120px;
}

.cart-empty__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-slate-dark);
  margin-bottom: 12px;
}

.cart-empty__text {
  font-size: 16px;
  color: var(--color-gray);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cart-empty__button {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--color-teal) 0%, #a42b2d 100%);
  color: var(--color-white);
  font-weight: 600;
  font-size: 16px;
  border-radius: 12px;
  transition: all 0.3s;
}

.cart-empty__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

/* ============================================
   CHECKOUT CONTENT
   ============================================ */
.checkout-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-slate-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-teal);
}

/* ============================================
   ORDER TABLE (YOUR ORDER)
   ============================================ */
.order-section {
  background: var(--color-white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.order-table {
  width: 100%;
}

.order-table__header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.order-table__body {
  display: flex;
  flex-direction: column;
}

.order-table__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #f3f4f6;
  align-items: center;
}

.order-table__row:last-child {
  border-bottom: none;
}

.col-product {
  display: flex;
  align-items: center;
  gap: 16px;
}

.remove-item-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fef2f2;
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.remove-item-btn:hover {
  background: #ef4444;
  color: var(--color-white);
}

.product-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f8fafc;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-name {
  font-weight: 500;
  font-size: 15px;
  color: var(--color-slate-dark);
  margin-left: 12px;
}

.col-price,
.col-subtotal {
  font-weight: 600;
  font-size: 15px;
  color: var(--color-slate-dark);
}

.col-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-display {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 32px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-slate-dark);
  background: var(--color-white);
}

.order-table__row--addon {
  background: #f8fffe;
  border-left: 3px solid var(--color-primary);
}

.order-table__row--addon .product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

/* ============================================
   CHECKOUT FORM
   ============================================ */
.checkout-form {
  width: 100%;
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.form-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-section {
  background: var(--color-white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-section--agreement {
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.form-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.form-grid--2col {
  grid-template-columns: 1fr 1fr;
}

.form-grid--expiry {
  grid-template-columns: 2fr 1fr;
}

.form-group {
  position: relative;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-gray);
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--color-slate-dark);
  background: var(--color-white);
  transition: all 0.3s;
}

.form-group input::placeholder {
  color: var(--color-light-gray);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-group input.error,
.form-group select.error {
  border-color: #ef4444;
}

.form-group input.error:focus,
.form-group select.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group .error-message {
  display: block;
  color: #ef4444;
  font-size: 12px;
  margin-top: 6px;
  min-height: 16px;
}

/* Card input wrapper for positioning icons inside input */
.card-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.card-input-wrapper input {
  width: 100%;
  padding-right: 160px;
}

.card-icons {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.card-icons img {
  height: 20px;
  width: auto;
}

.expiry-selects {
  display: flex;
  gap: 12px;
}

.expiry-selects select {
  flex: 1;
}

.payment-note {
  font-size: 13px;
  color: var(--color-gray);
  margin-top: 16px;
}

/* Checkbox Styles */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 12px;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--color-teal);
}

.checkbox-text {
  font-size: 14px;
  color: var(--color-slate-dark);
  line-height: 1.5;
}

.checkbox-text a {
  color: var(--color-teal);
  text-decoration: underline;
}

.checkbox-text a:hover {
  color: var(--color-teal-dark);
}

.agreement-note {
  font-size: 13px;
  color: var(--color-gray);
  line-height: 1.5;
  margin-left: 32px;
}

/* ============================================
   CART TOTAL SECTION
   ============================================ */
.cart-total-section {
  background: var(--color-white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cart-total__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cart-total__row span:first-child {
  font-size: 15px;
  color: var(--color-gray);
}

.cart-total__row span:last-child {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-slate-dark);
}

.cart-total__row--total span:first-child {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-slate-dark);
}

.cart-total__row--total span:last-child {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-teal);
}

/* Place Order Button */
.place-order-btn {
  width: 100%;
  padding: 18px;
  background: transparent;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  border: 2px solid var(--color-teal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.place-order-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-teal);
  z-index: -1;
  transition: transform 0.3s ease;
  transform-origin: center;
}

.place-order-btn:hover {
  color: var(--color-teal);
}

.place-order-btn:hover::after {
  transform: scaleX(0);
}

.place-order-btn:active {
  transform: none;
}

.place-order-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.place-order-btn:disabled:hover {
  color: var(--color-white);
}

.place-order-btn:disabled:hover::after {
  transform: scaleX(1);
}

.btn-loader {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================
   TERMS POLICY SECTION
   ============================================ */
.terms-policy-section {
  background: var(--color-white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.terms-policy-content {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-teal) #e5e7eb;
}

.terms-policy-content::-webkit-scrollbar {
  width: 6px;
}

.terms-policy-content::-webkit-scrollbar-track {
  background: #e5e7eb;
  border-radius: 3px;
}

.terms-policy-content::-webkit-scrollbar-thumb {
  background: var(--color-teal);
  border-radius: 3px;
}

.terms-policy-content::-webkit-scrollbar-thumb:hover {
  background: var(--color-teal-dark);
}

.terms-policy-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-slate-dark);
  margin-bottom: 12px;
}

.terms-policy-content p {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.7;
  margin-bottom: 12px;
}

.terms-policy-content p:last-child {
  margin-bottom: 0;
}

.terms-policy-content strong {
  color: var(--color-slate-dark);
  font-weight: 600;
}

/* ============================================
   FOOTER - Matching Index Page Style
   ============================================ */
footer .phone__line {
  text-decoration: underline;
  position: relative;
  color: #cbd5e1;
  margin-right: 20px;
  display: inline-block;
}

footer .phone__line:hover {
  opacity: 0.6;
}

footer .phone__line:after {
  cursor: auto;
  content: "";
  height: 100%;
  width: 1px;
  position: absolute;
  right: -10px;
  background-color: rgba(255, 255, 255, 0.2);
}

footer .phone__line:last-child:after {
  display: none;
}

footer {
  background: var(--color-text-primary);
  color: #cbd5e1;
}
.footer-container {
  padding-top: 30px;
  padding-bottom: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.footer-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-topbar__info {
  display: flex;
  flex-direction: column;
}

.footer-topbar__title {
  color: #ffffff;
  font-size: 19px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  padding-bottom: 10px;
}

.footer-topbar__info-box {
  align-items: center;
  color: #cbd5e1;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  padding-bottom: 7px;
}

.footer-topbar__info-box svg {
  width: 16px;
  float: left;
  position: relative;
  bottom: -3px;
}

.footer-topbar__info-box svg path {
  fill: var(--color-teal-light) !important;
}

.footer-topbar__info-box p {
  padding-left: 25px;
}

.footer-topbar__info-box a {
  color: #888;
  transition: opacity 0.3s;
}

.footer-topbar__info-box a:hover {
  opacity: 0.6;
}

.footer-topbar__form {
  width: 40%;
}

.ft-form__text {
  font-size: 16px;
  color: #94a3b8;
  line-height: 19px;
}

.ft-form {
  margin-top: 20px;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.ft-form__input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 10px;
  padding: 10px 15px;
  width: 75%;
  font-size: 14px;
}

.ft-form__input::placeholder {
  color: #a4a0a0;
}

.ft-form__button {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 79.5%;
  border-radius: 10px;
  background: #a42b2d;
  padding: 10px 15px;
  border: none;
  width: 24%;
  transition: 0.2s;
}

.ft-form__button:hover {
  background: #a42b2d;
}

.footer-lowbar {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-navigation a {
  color: #cbd5e1;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 79.5%;
  transition: 0.2s;
}

.footer-navigation a:hover {
  color: #a42b2d;
}

.footer-cards {
  display: flex;
  align-items: center;
}

.footer-cards img {
  margin-left: 3px;
  margin-right: 3px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .form-layout {
    grid-template-columns: 1fr;
  }

  .order-table__header {
    display: none;
  }

  .order-table__row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 12px;
    border-bottom: none;
  }

  .col-product {
    flex-wrap: wrap;
  }

  .col-price::before {
    content: "Price: ";
    font-weight: 400;
    color: var(--color-gray);
  }

  .col-subtotal::before {
    content: "Subtotal: ";
    font-weight: 400;
    color: var(--color-gray);
  }

  .col-quantity {
    justify-content: flex-start;
  }

  .footer-topbar {
    flex-direction: column;
  }

  .footer-topbar__form,
  .footer-topbar__info {
    width: 100%;
  }

  .footer-topbar__form {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .form-grid--2col {
    grid-template-columns: 1fr;
  }

  .form-grid--expiry {
    grid-template-columns: 1fr;
  }

  .header-navigations {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    transition: right 0.3s;
    z-index: 1000;
  }

  .header-navigations.active {
    right: 0;
  }

  .header-navigations__close {
    display: block;
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 24px;
    color: var(--color-slate-dark);
  }

  .header-burger-menu {
    display: flex;
  }

  .footer-lowbar {
    flex-direction: column;
    margin-top: 30px;
  }

  .footer-navigation {
    margin-bottom: 30px;
    text-align: center;
  }

  .footer-navigation a {
    margin: 0;
    padding: 10px;
  }

  .ft-form__input {
    width: 100%;
  }

  .ft-form__button {
    margin-left: 0;
    width: 10%;
  }

  .ft-form {
    flex-direction: column;
  }

  .checkout-section {
    padding: 24px 0 40px;
  }

  .order-section,
  .form-section,
  .cart-total-section,
  .terms-policy-section {
    padding: 20px;
    border-radius: 12px;
  }

  .section-title {
    font-size: 16px;
  }

  .product-name {
    font-size: 14px;
    margin-left: 0px !important
  }

  .place-order-btn {
    font-size: 16px;
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .checkout-section {
    padding: 16px 0 32px;
  }

  .order-section,
  .form-section,
  .cart-total-section,
  .terms-policy-section {
    padding: 16px;
  }

  .col-product {
    gap: 12px;
  }

  .product-image {
    width: 50px;
    height: 50px;
  }

  .remove-item-btn {
    width: 28px;
    height: 28px;
  }

  .qty-display {
    width: 40px;
    height: 28px;
    font-size: 13px;
  }

  .cart-total__row--total span:last-child {
    font-size: 20px;
  }

  .notification-container {
    left: 10px;
    right: 10px;
    max-width: none;
  }

  .card-input-wrapper input {
    padding-right: 130px;
  }

  .card-icons {
    gap: 4px;
    right: 8px;
  }

  .card-icons img {
    height: 16px;
  }
}

/* Utility Classes */
.button {
  display: inline-block;
  padding: 14px 28px;
  background: var(--color-teal);
  color: var(--color-white);
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.button:hover {
  background: var(--color-teal-dark);
  transform: translateY(-2px);
}

.get_page {
  cursor: pointer;
}

/* GDPR Cookie Popup */
.gdpr__box {
  background: #eee;
  padding: 16px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 98;
  width: 100%;
  box-sizing: border-box;
}

.gdpr__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #1A2332;
  max-width: 1000px;
  margin: 0 auto;
}

.gdpr__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  text-align: justify;
  max-width: 540px;
  width: 100%;
}

.gdpr__text a {
  color: inherit !important;
  text-decoration: underline !important;
}

.gdpr__buttons {
  display: flex;
  justify-content: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-left: 44px;
  text-align: center;
  width: 50%;
}

.gdpr__close {
  border-radius: 64px;
  border: 2px solid #1A2332;
  width: 200px;
  padding: 12px 0;
  box-sizing: border-box;
  cursor: pointer;
}

.gdpr__dark {
  color: #fafafc;
  background: #a42b2d;
  margin-left: 16px;
}

@media (max-width: 1023px) {
  .gdpr__box {
    padding: 15px;
  }
  .gdpr__container {
    flex-direction: column;
  }
  .gdpr__text {
    font-size: 12px;
    line-height: 15px;
  }
  .gdpr__buttons {
    margin: 12px 0 0;
    font-size: 16px;
    width: 100%;
  }
  .gdpr__close {
    width: 164px;
    padding: 6px 0;
  }
  .gdpr__dark {
    margin-left: 12px;
  }
}

@media (min-width: 639px) and (max-width: 641px) {
  .gdpr__box {
    padding: 15px 15px 25px;
  }
}
