.page-hero { padding-top: 72px; background: radial-gradient(circle at 20% 20%, #4C1300 0%, #111111 80%); }
.page-hero-inner { padding: 48px 0 36px; }
.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
    color: rgba(255,255,255,0.6); margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { opacity: 0.4; }
.page-hero-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800; letter-spacing: -0.03em; line-height: 1;
    color: var(--white);
}
.page-hero-title em { font-style: normal; color: var(--accent); }

.cart-section { padding: 0 0 100px; }
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px; align-items: start;
}
.cart-items { display: flex; flex-direction: column; gap: 16px; }

.cart-item {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 20px; align-items: center;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px; padding: 18px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s, opacity 0.4s, transform 0.4s, background 0.3s;
}
.cart-item:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    background: var(--bg-glass-hover);
}

.cart-item-img {
    width: 90px; height: 90px;
    border-radius: 10px; overflow: hidden;
    background: var(--cream-2); flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-cat {
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 4px;
}
.cart-item-name {
    font-size: 15px; font-weight: 700;
    color: var(--text); margin-bottom: 8px; line-height: 1.3;
}
.cart-item-price { font-size: 18px; font-weight: 800; color: var(--accent); }

.cart-item-controls {
    display: flex; flex-direction: column;
    align-items: flex-end; gap: 12px;
}
.qty-stepper {
    display: flex; align-items: center;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 10px; overflow: hidden;
}
.qty-btn {
    width: 36px; height: 36px;
    background: none; border: none; cursor: pointer;
    font-size: 18px; font-weight: 700; color: var(--text-mid);
    transition: background 0.2s, color 0.2s;
    display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--cream-2); color: var(--accent); }
.qty-val {
    width: 40px; height: 36px;
    text-align: center; font-size: 14px; font-weight: 700;
    color: var(--text); border: none;
    border-left: 1.5px solid rgba(255,255,255,0.3);
    border-right: 1.5px solid rgba(255,255,255,0.3);
    background: transparent; padding: 0; font-family: var(--font);
}
.remove-btn {
    font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
    color: var(--text-muted); background: none; border: none;
    cursor: pointer; transition: color 0.2s; padding: 0; font-family: var(--font);
}
.remove-btn:hover { color: #c0392b; }

.order-summary {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px; padding: 28px; position: sticky; top: 88px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.summary-title {
    font-size: 16px; font-weight: 800;
    color: var(--text); margin-bottom: 24px; letter-spacing: -0.01em;
}
.summary-row {
    display: flex; justify-content: space-between;
    align-items: flex-start; padding: 10px 0;
    border-bottom: 1px solid rgba(212,196,168,0.4);
    font-size: 13px; color: var(--text-mid);
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row strong { font-weight: 700; color: var(--text); }
.summary-delivery-note { font-size: 10px; color: var(--text-muted); margin-top: 2px; }
.summary-total {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 0 20px; font-size: 18px; font-weight: 800;
    color: var(--text);
    border-top: 2px solid rgba(212,196,168,0.5); margin-top: 4px;
}
.summary-total .total-price { color: var(--accent); }
.btn-checkout {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; width: 100%; padding: 16px 24px;
    background: var(--accent); color: white; border-radius: 50px;
    font-size: 14px; font-weight: 800; letter-spacing: 0.04em;
    border: none; cursor: pointer; transition: all 0.35s; font-family: var(--font);
}
.btn-checkout:hover {
    background: #E84500; transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255,79,0,0.4);
}
.continue-link {
    display: block; text-align: center; margin-top: 16px;
    font-size: 12px; font-weight: 700;
    color: var(--text-muted); transition: color 0.2s;
}
.continue-link:hover { color: var(--accent); }

.empty-cart {
    display: none; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 80px 28px; text-align: center;
}
.empty-cart.active {
    display: flex;
}
.empty-cart.visible { display: flex; }
.empty-icon { font-size: 64px; margin-bottom: 24px; opacity: 0.4; }
.empty-title {
    font-size: 28px; font-weight: 800;
    color: var(--text); margin-bottom: 12px; letter-spacing: -0.02em;
}
.empty-desc {
    font-size: 14px; color: var(--text-muted);
    margin-bottom: 32px; max-width: 360px; line-height: 1.7;
}
.btn-go-cat {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; background: var(--accent); color: white;
    border-radius: 50px; font-size: 13px; font-weight: 800;
    letter-spacing: 0.04em; transition: all 0.35s;
}
.btn-go-cat:hover {
    background: #E84500; transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255,79,0,0.35);
}
#cartLayout {
    padding: 60px;
    background: white;
    margin: 20px;
    box-shadow: 0px 6px 15px 0px #00000059;

}
.delivery_type {
    width: 100%;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.leftSide .leftside_title {
    font-family: 'Codec Pro';
    font-weight: 700;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;

}
.delivery_type .buttonlist {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: left;
    align-items: center;
}
.delivery_type .buttonlist button {
    width: 210px;
    height: 42px;
    display:flex;
    justify-content: center;
    align-items: center;
    font-family: Codec Pro;
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    background: white;
    border-radius: 16px;
    border: 1px solid #FE4202;

}
.delivery_type .buttonlist button.active {
    background: #FE4202;
    border-radius: 16px;
    border: 1px solid #FE4202;
    color: white;

}
.CartWrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (max-width: 900px) {
    .cart-layout { grid-template-columns: 1fr; }
    .order-summary { position: static; }
}
@media (max-width: 600px) {
    .cart-item { grid-template-columns: 72px 1fr; }
    .cart-item-controls {
        grid-column: 1 / -1; flex-direction: row;
        justify-content: space-between; align-items: center;
    }
}

.data-section {
    padding: 90px;
    width: 720px;
    max-width: 100%;
    margin: auto;
}
.data-section .container {
    font-size: 20px;
    line-height: 120%;
    display: flex;
    flex-direction: column;
    gap: 40px

}
.data-section .container .pagetext {
    display: flex;
    flex-direction: column;
    gap: 20px
}
.data-section .container .pagetext a {
    color: var(--accent);
}
.returnLink {
    color: var(--accent);
    font-weight: 700;
}