:root {
  --bg-color: #ffffff;
  --text-primary: #1a1a1a;
  --text-secondary: #707070;
  --accent-color: #5544b6; /* Derived from logo purple */
}



/* ===== TOAST ===== */
.cart-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    background: #111;
    color: #fff;
    padding: 16px 22px;
    border-radius: 14px;
    font-size: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 9999;
}

.cart-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.cart-toast svg {
    width: 18px;
    height: 18px;
    stroke: #4ade80;
}



.footer {
  background-color: var(--bg-color);
  padding: 30px 0 100px;
  overflow: hidden;
  position: relative;
}

.footer__col {
  margin-bottom: 2rem;
}

/* Logo Column Specifics */
.footer__logo-wrapper {
  margin-bottom: 60px;
  transform-origin: left center;
}

.footer__logo {
  max-width: 180px;
  height: auto;
  display: block;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact-link {
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  display: inline-block;
  width: fit-content;
}

.footer__contact-link:hover {
  color: var(--accent-color);
}

/* Headings */
.footer__heading {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

/* Navigation Lists */
.footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__nav-item {
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.footer__link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  display: inline-block;
  position: relative;
  transition: color 0.3s ease;
}

/* Hover Effect: Magnetic Text Slide */
.footer__link::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.footer__link:hover {
  color: var(--accent-color);
}

.footer__link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .footer__logo-wrapper {
    margin-bottom: 40px;
  }
  
  .footer {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .footer__col {
    text-align: left;
    margin-bottom: 3rem;
  }
}



.section.section--top {
  padding-top: 60px;
}

.page-cart .page-cart__title {
  margin-bottom: 30px;
}
.section.checkout,
.page-cart {
  padding-top: 120px;
}

.info-wrapper {
    max-width: 100%!important;
}



/* ==============================
   CSS VARIABLES (кастомизация)
================================ */
:root {
    --cart-bg: #f6f7fb;
    --card-bg: #ffffff;
    --border-color: #e5e7eb;
    --text-main: #313f44;
    --text-muted: #6b7280;
    --accent: #714797;
    --accent-hover: #5d3a7a;
    --success: #16a34a;
    --danger: #dc2626;
    --radius: 14px;
    --radius-sm: 10px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.06);
    --transition: 0.25s ease;
}

/* ==============================
   PAGE BACKGROUND
================================ */
.section.info {
    background: var(--cart-bg);
    padding: 60px 0 100px;
    color: var(--text-main);
}

/* ==============================
   HEADLINE + BREADCRUMB
================================ */
.headline {
    margin-bottom: 40px;
}

.headline__title {
    font-size: 46px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-top: 20px;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 10px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-main);
    text-decoration: none;
}

.breadcrumb span {
    color: var(--accent);
    font-weight: 500;
}

/* ==============================
   CART LAYOUT
================================ */
.wp-block-woocommerce-cart {
    max-width: 1280px;
    margin: 0 auto;
}

.wc-block-cart {
    gap: 0;
}

/* ==============================
   CART TABLE (LEFT)
================================ */


.wc-block-cart-items {
    border-collapse: separate;
    border-spacing: 0 20px;
}

/* HEADER */
.wc-block-cart-items__header th {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    padding-bottom: 10px;
}

/* ==============================
   CART ITEM ROW
================================ */
.wc-block-cart-items__row {
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.wc-block-cart-item__image img {
    border-radius: 10px;
    width: 80px;
    height: auto;
}

.wc-block-cart-item__product {
    padding: 20px;
}

.wc-block-components-product-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
}

.wc-block-components-product-name:hover {
    color: var(--accent);
}

/* PRICE */
.wc-block-cart-item__prices {
    margin-top: 6px;
}

.wc-block-components-product-price__regular {
    color: var(--text-muted);
    margin-right: 6px;
}

.wc-block-components-product-price__value {
    font-weight: 600;
    color: var(--accent);
}

/* SALE BADGE */
.wc-block-components-sale-badge {
    display: inline-block;
    margin-top: 6px;
    background: rgba(113, 71, 151, 0.1);
    color: var(--accent);
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 999px;
}

/* DESCRIPTION */
.wc-block-components-product-metadata__description {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 6px;
}

/* ==============================
   QUANTITY
================================ */
.wc-block-components-quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 12px;
}

.wc-block-components-quantity-selector__input {
    width: 50px;
    text-align: center;
    border: none;
    font-weight: 600;
}

.wc-block-components-quantity-selector__button {
    background: var(--cart-bg);
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    transition: var(--transition);
}

.wc-block-components-quantity-selector__button:hover {
    background: var(--accent);
    color: #fff;
}

/* REMOVE */
.wc-block-cart-item__remove-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    color: var(--danger);
    background: none;
    border: none;
    cursor: pointer;
}

.wc-block-cart-item__remove-link:hover {
    text-decoration: underline;
}

/* ==============================
   TOTAL PRICE
================================ */
.wc-block-cart-item__total {
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    text-align: right;
}

/* ==============================
   SIDEBAR (RIGHT)
================================ */
.wc-block-cart__sidebar {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
    position: sticky;
    top: 30px;
}

/* TITLE */
.wc-block-cart__totals-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* TOTAL ROWS */
.wc-block-components-totals-item {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin-bottom: 12px;
}

.wc-block-components-totals-item__label {
    color: var(--text-muted);
}

.wc-block-components-totals-item__value strong {
    color: var(--success);
}

/* ==============================
   COUPON
================================ */
.wc-block-components-totals-coupon__input input {
    border-radius: 999px;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
}

.wc-block-components-totals-coupon__button {
    margin-top: 10px;
    width: 100%;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    padding: 12px;
    transition: var(--transition);
}

.wc-block-components-totals-coupon__button:hover {
    background: var(--accent-hover);
}

/* ==============================
   CHECKOUT BUTTON
================================ */
.wc-block-cart__submit-button,
.wc-block-components-button {
    background: linear-gradient(to right, #73499A 0%, #8B59BC 100%);
    color: #fff;
    border-radius: 25px;
    padding: 20px 16px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: var(--transition);
}

.wc-block-cart__submit-button:hover {
    background: var(--accent-hover);
}

/* ==============================
   MOBILE
================================ */
@media (max-width: 992px) {
    .wc-block-cart {
        flex-direction: column;
    }

    .wc-block-cart__sidebar {
        position: static;
        margin-top: 30px;
    }

    .headline__title {
        font-size: 36px;
    }
}


#order_review_heading {
  display: none;
}
.col2-set > .col-2 {
  display: none;
}
@media(min-width: 800px) {
  .checkout.woocommerce-checkout {
    display: flex;
  }
  .woocommerce-checkout-review-order,
  .col2-set {
    width: 50%!important;
  }
  .col2-set .col-1 {
    width: 80%!important;
  }
}


















