/* ============================================================
   CAPITAL DF — LOJA / SHOP  
   Layout com sidebar + grid profissional
   ============================================================ */

/* ==============================================
   CABEÇALHO MOBILE DO GRID
   ============================================== */
.shop-main__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  margin-bottom: 1rem;
}
.shop-main__count {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.shop-main__filter-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem .9rem;
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  cursor: pointer;
  transition: all var(--transition-smooth);
}
.shop-main__filter-btn:hover {
  border-color: var(--blue-primary);
  color: #fff;
}

/* ==============================================
   LAYOUT SIDEBAR + MAIN
   ============================================== */
.shop-body {
  padding: 2rem 0 3rem;
}
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}

/* ==============================================
   SIDEBAR
   ============================================== */
.shop-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.shop-sidebar__close {
  display: none;
}
.shop-sidebar__section {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.2rem;
}
.shop-sidebar__title {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: rgba(255,255,255,.6);
  margin: 0 0 .8rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.shop-sidebar__title i { color: var(--blue-primary); font-size: .9rem; }
.shop-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.shop-sidebar__link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .7rem;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .88rem;
  transition: all var(--transition-smooth);
}
.shop-sidebar__link i {
  font-size: .9rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}
.shop-sidebar__link span { flex: 1; }
.shop-sidebar__link:hover {
  background: rgba(255,255,255,.05);
  color: var(--white-ice);
}
.shop-sidebar__link--active {
  background: rgba(var(--blue-primary-rgb), .12);
  color: var(--blue-primary);
  font-weight: 600;
}
.shop-sidebar__link--active i { color: var(--blue-primary); }
.shop-sidebar__badge {
  font-size: .7rem;
  color: rgba(255,255,255,.35);
  margin-left: auto;
}

/* Sidebar info card */
.shop-sidebar__info-card {
  text-align: center;
  padding: .5rem 0;
}
.shop-sidebar__info-card > i {
  font-size: 1.6rem;
  color: var(--blue-primary);
  display: block;
  margin-bottom: .5rem;
}
.shop-sidebar__info-card h4 {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  margin: 0 0 .3rem;
}
.shop-sidebar__info-card p {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin: 0;
  line-height: 1.4;
}

/* Sidebar cart mini */
.shop-sidebar__cart-btn {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .8rem;
  background: rgba(var(--blue-primary-rgb), .08);
  border: 1px solid rgba(var(--blue-primary-rgb), .2);
  border-radius: var(--radius-md);
  color: var(--white-ice);
  text-decoration: none;
  transition: all var(--transition-smooth);
}
.shop-sidebar__cart-btn:hover {
  background: rgba(var(--blue-primary-rgb), .15);
  border-color: var(--blue-primary);
  color: #fff;
}
.shop-sidebar__cart-btn > i:first-child {
  font-size: 1.2rem;
  color: var(--blue-primary);
}
.shop-sidebar__cart-btn div {
  flex: 1;
}
.shop-sidebar__cart-btn strong {
  display: block;
  font-size: .85rem;
}
.shop-sidebar__cart-btn span {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
}
.shop-sidebar__cart-btn > i:last-child {
  font-size: .7rem;
  opacity: .4;
}

/* Sidebar overlay (mobile) */
.shop-sidebar-overlay {
  display: none;
}

/* ==============================================
   PRODUCT GRID
   ============================================== */
.shop-main {
  min-height: 400px;
}
.shop-product-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}
.shop-product-link:hover { color: inherit; }

.shop-product-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.shop-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--blue-primary-rgb), .4);
  box-shadow: 0 14px 45px rgba(0,0,0,.3);
}

.shop-product-card__image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: rgba(0,0,0,.25);
}
.shop-product-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.shop-product-card:hover .shop-product-card__image img {
  transform: scale(1.08);
}
.shop-product-card__placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 2.8rem;
  color: rgba(255,255,255,.06);
}

/* Badges */
.shop-product-card__badges {
  position: absolute;
  top: .7rem; left: .7rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  z-index: 2;
}
.shop-badge {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .22rem .6rem;
  border-radius: 4px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.3;
}
.shop-badge--promo { background: #ef4444; color: #fff; }
.shop-badge--destaque { background: #f59e0b; color: #111; }
.shop-badge--esgotado { background: rgba(0,0,0,.75); color: #999; backdrop-filter: blur(4px); }

/* Card overlay */
.shop-product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 1;
}
.shop-product-card__overlay span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1.2rem;
  border-radius: 50px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
}
.shop-product-card:hover .shop-product-card__overlay {
  opacity: 1;
}

/* Card body */
.shop-product-card__body {
  padding: 1rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.shop-product-card__cat {
  font-size: .68rem;
  color: var(--blue-primary);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
  margin-bottom: .35rem;
}
.shop-product-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.shop-product-card__desc {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin: .35rem 0 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.shop-product-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: .5rem;
  margin-top: auto;
  padding-top: .8rem;
}
.shop-product-card__pricing {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.shop-product-card__old-price {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  text-decoration: line-through;
  line-height: 1;
}
.shop-product-card__price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-primary);
  line-height: 1;
}
.shop-product-card__action {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(var(--blue-primary-rgb), .1);
  border: 1px solid rgba(var(--blue-primary-rgb), .25);
  display: flex;
  align-items: center; justify-content: center;
  color: var(--blue-primary);
  font-size: .9rem;
  flex-shrink: 0;
  transition: all var(--transition-smooth);
}
.shop-product-card:hover .shop-product-card__action {
  background: var(--blue-primary);
  color: #fff;
}

/* Empty state */
.shop-empty {
  text-align: center;
  padding: 5rem 1rem;
}
.shop-empty__icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 2rem;
  color: rgba(255,255,255,.12);
}
.shop-empty h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  margin-bottom: .4rem;
}
.shop-empty p {
  color: rgba(255,255,255,.3);
  font-size: .9rem;
  margin-bottom: 1.2rem;
}

/* ==============================================
   PAGINATION
   ============================================== */
.shop-pagination {
  padding: 2rem 0 1rem;
}
.shop-pagination .page-link {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  color: rgba(255,255,255,.7);
  border-radius: var(--radius-sm) !important;
  margin: 0 .15rem;
  transition: all var(--transition-smooth);
  min-width: 36px;
  text-align: center;
}
.shop-pagination .page-link:hover {
  background: rgba(var(--blue-primary-rgb), .2);
  border-color: var(--blue-primary);
  color: #fff;
}
.shop-pagination .page-item.active .page-link {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: #fff;
}
.shop-pagination .page-item.disabled .page-link {
  opacity: .35;
}

/* ==============================================
   FEATURES SECTION
   ============================================== */
.shop-features {
  padding: 2.5rem 0 3.5rem;
  border-top: 1px solid var(--glass-border);
}
.shop-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.shop-feature {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
}
.shop-feature:hover {
  border-color: rgba(var(--blue-primary-rgb), .3);
  transform: translateY(-2px);
}
.shop-feature__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(var(--blue-primary-rgb), .1);
  display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto .8rem;
  font-size: 1.2rem;
  color: var(--blue-primary);
}
.shop-feature h4 {
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 700;
  margin: 0 0 .3rem;
}
.shop-feature p {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin: 0;
  line-height: 1.35;
}

/* ==============================================
   FAB CART (Mobile)
   ============================================== */
.shop-fab-cart {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(var(--blue-primary-rgb), .35);
  z-index: 100;
  transition: all var(--transition-smooth);
}
.shop-fab-cart:hover {
  transform: scale(1.08);
  color: #fff;
}
.shop-fab-cart__count {
  position: absolute;
  top: -3px; right: -3px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  display: flex;
  align-items: center; justify-content: center;
  border: 2px solid var(--blue-dark);
}

/* ==============================================
   BREADCRUMB
   ============================================== */
.shop-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: 1.2rem 0;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
}
.shop-breadcrumb a {
  color: var(--blue-primary);
  text-decoration: none;
  transition: color var(--transition-smooth);
}
.shop-breadcrumb a:hover { color: var(--blue-light); }
.shop-breadcrumb i.bi-chevron-right { font-size: .65rem; opacity: .5; }

/* ==============================================
   PRODUCT DETAIL
   ============================================== */
.shop-detail {
  padding: 7rem 0 3rem;
  min-height: 100vh;
}
.shop-gallery__main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  aspect-ratio: 1;
}
.shop-gallery__main img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: .5rem;
  transition: opacity .3s ease;
}
.shop-gallery__placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center; justify-content: center;
}
.shop-gallery__thumbs {
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
}
.shop-gallery__thumb {
  width: 68px; height: 68px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--glass-bg);
  cursor: pointer;
  padding: 0;
  transition: border-color var(--transition-smooth);
}
.shop-gallery__thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 2px;
}
.shop-gallery__thumb--active,
.shop-gallery__thumb:hover {
  border-color: var(--blue-primary);
}

.shop-product-info {
  padding-top: .5rem;
}
.shop-product-info__cat {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--blue-primary);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .5rem;
}
.shop-product-info__name {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: .8rem;
}
.shop-product-info__short-desc {
  color: rgba(255,255,255,.55);
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.shop-product-info__pricing {
  display: flex;
  align-items: baseline;
  gap: .7rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}
.shop-product-info__old-price {
  font-size: 1rem;
  color: rgba(255,255,255,.35);
  text-decoration: line-through;
}
.shop-product-info__price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-primary);
}

/* Variants */
.shop-variants {
  margin-bottom: 1.5rem;
}
.shop-variants__label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .6rem;
  color: rgba(255,255,255,.8);
}
.shop-variants__grid {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.shop-variant-btn {
  padding: .5rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-smooth);
}
.shop-variant-btn:hover:not(:disabled) {
  border-color: var(--blue-primary);
  color: #fff;
}
.shop-variant-btn--active {
  background: var(--blue-primary) !important;
  border-color: var(--blue-primary) !important;
  color: #fff !important;
}
.shop-variant-btn:disabled {
  opacity: .3;
  cursor: not-allowed;
}

/* Quantity */
.shop-qty {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}
.shop-qty__label {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}
.shop-qty__controls {
  display: flex;
  align-items: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.shop-qty__btn {
  width: 38px; height: 38px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center; justify-content: center;
  transition: background var(--transition-smooth);
}
.shop-qty__btn:hover { background: rgba(var(--blue-primary-rgb), .2); }
.shop-qty__input {
  width: 44px;
  text-align: center;
  background: transparent;
  border: none;
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  -moz-appearance: textfield;
}
.shop-qty__input::-webkit-outer-spin-button,
.shop-qty__input::-webkit-inner-spin-button { -webkit-appearance: none; }
.shop-qty__stock {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}

/* Add to cart */
.shop-add-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: var(--radius-md);
  background: var(--gradient-brand);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-smooth);
  margin-bottom: 1.5rem;
}
.shop-add-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--blue-primary-rgb), .35);
}
.shop-add-cart-btn--disabled {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.35);
  cursor: not-allowed;
}
.shop-add-cart-btn--disabled:hover {
  transform: none;
  box-shadow: none;
}

/* Pickup info detail */
.shop-product-pickup {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1.1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}
.shop-product-pickup > i {
  font-size: 1.3rem;
  color: var(--blue-primary);
  margin-top: .15rem;
}
.shop-product-pickup strong {
  font-size: .9rem;
  display: block;
  margin-bottom: .2rem;
}
.shop-product-pickup p {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin: 0;
  line-height: 1.45;
}

/* Description */
.shop-description {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}
.shop-description h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--glass-border);
}
.shop-description__body {
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  font-size: .95rem;
}
.shop-description__body p { margin-bottom: .9rem; }

/* Related */
.shop-related {
  margin-top: 3.5rem;
  padding-bottom: 2rem;
}
.shop-related h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* ==============================================
   CART
   ============================================== */
.shop-cart {
  padding: 9rem 0 3rem;
  min-height: 100vh;
}
.shop-section-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.shop-cart-empty {
  text-align: center;
  padding: 5rem 1rem;
}
.shop-cart-empty i {
  font-size: 4rem;
  color: rgba(255,255,255,.08);
  display: block;
  margin-bottom: 1.2rem;
}
.shop-cart-empty h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.shop-cart-empty p {
  color: rgba(255,255,255,.45);
  margin-bottom: 1.8rem;
}

.btn-back-shop {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .65rem 1.4rem;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--white-ice);
  text-decoration: none;
  font-size: .9rem;
  transition: all var(--transition-smooth);
}
.btn-back-shop:hover {
  background: rgba(var(--blue-primary-rgb), .15);
  border-color: var(--blue-primary);
  color: #fff;
}

/* Cart Items */
.shop-cart-items {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.shop-cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-smooth);
}
.shop-cart-item:hover { border-color: rgba(var(--blue-primary-rgb), .3); }
.shop-cart-item__info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 .15rem;
}
.shop-cart-item__variant {
  font-size: .8rem;
  color: var(--blue-primary);
  display: block;
  margin-bottom: .1rem;
}
.shop-cart-item__price {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  display: block;
}
.shop-cart-item__actions {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.shop-cart-item__qty {
  display: flex;
  align-items: center;
  background: rgba(0,0,0,.2);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.shop-cart-item__qty-val {
  width: 34px;
  text-align: center;
  font-weight: 600;
  font-size: .9rem;
}
.shop-cart-item__subtotal {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-primary);
  min-width: 85px;
  text-align: right;
}
.shop-cart-item__remove {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.3);
  font-size: 1rem;
  cursor: pointer;
  padding: .35rem;
  transition: color var(--transition-smooth);
}
.shop-cart-item__remove:hover { color: #ef4444; }

/* Cart Summary */
.shop-cart-summary {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}
.shop-cart-summary h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.shop-cart-summary__line {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  margin-bottom: .65rem;
  color: rgba(255,255,255,.65);
}
.shop-cart-summary hr {
  border-color: var(--glass-border);
  margin: 1rem 0;
}
.shop-cart-summary__total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.3rem;
}
.shop-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .9rem;
  border: none;
  border-radius: var(--radius-md);
  background: var(--gradient-brand);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  margin-bottom: .7rem;
}
.shop-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--blue-primary-rgb), .3);
  color: #fff;
}
.shop-checkout-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.shop-continue-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  width: 100%;
  padding: .7rem;
  border-radius: var(--radius-md);
  background: transparent;
  border: 1px solid var(--glass-border);
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .85rem;
  transition: all var(--transition-smooth);
}
.shop-continue-btn:hover {
  border-color: var(--blue-primary);
  color: #fff;
}

.shop-cart-pickup-info {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin-top: 1.2rem;
  padding: 1.1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}
.shop-cart-pickup-info > i {
  font-size: 1.2rem;
  color: var(--blue-primary);
  margin-top: .15rem;
}
.shop-cart-pickup-info p {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin: 0;
  line-height: 1.45;
}

/* ==============================================
   CHECKOUT
   ============================================== */
.shop-checkout {
  padding: 9rem 0 3rem;
  min-height: 100vh;
}

/* Steps */
.shop-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}
.shop-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.shop-step__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 700;
}
.shop-step--active .shop-step__icon {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: #fff;
}
.shop-step--active { color: var(--white-ice); }
.shop-step--done .shop-step__icon {
  background: rgba(16,185,129,.2);
  border-color: #10b981;
  color: #10b981;
}
.shop-step--done { color: #10b981; }
.shop-step__line {
  width: 65px; height: 2px;
  background: var(--glass-border);
  margin: 0 .6rem;
  margin-bottom: 1.2rem;
}
.shop-step__line--done { background: #10b981; }

/* Checkout cards */
.shop-checkout-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}
.shop-checkout-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: .45rem;
}
.shop-checkout-user__row {
  display: flex;
  gap: .6rem;
  font-size: .9rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.shop-checkout-user__row span { color: rgba(255,255,255,.45); min-width: 65px; }

.shop-checkout-items {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.shop-checkout-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.shop-checkout-item__variant {
  font-size: .8rem;
  color: var(--blue-primary);
  display: block;
  margin-top: .15rem;
}
.shop-checkout-item__detail {
  text-align: right;
  font-size: .85rem;
}
.shop-checkout-item__detail span {
  display: block;
  color: rgba(255,255,255,.45);
  font-size: .8rem;
}

.shop-checkout-delivery {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1.1rem;
  background: rgba(var(--blue-primary-rgb), .06);
  border-radius: var(--radius-md);
}
.shop-checkout-delivery > i {
  font-size: 1.5rem;
  color: var(--blue-primary);
}
.shop-checkout-delivery p {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin: .3rem 0 0;
  line-height: 1.5;
}
.shop-checkout-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  margin-top: .6rem;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* Loading Overlay */
.shop-loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-loading-overlay__content {
  text-align: center;
}
.shop-loading-overlay__content p {
  color: rgba(255,255,255,.65);
  margin-top: 1.2rem;
  font-size: 1rem;
}

/* ==============================================
   ORDER CONFIRMATION
   ============================================== */
.shop-order {
  padding: 9rem 0 3rem;
  min-height: 100vh;
}
.shop-order-success {
  text-align: center;
  padding: 2.5rem 1rem;
  margin-bottom: 1.5rem;
}
.shop-order-success__icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(16,185,129,.12);
  border: 3px solid #10b981;
  display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 2rem;
  color: #10b981;
}
.shop-order-success h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.shop-order-success p {
  color: rgba(255,255,255,.55);
  font-size: 1rem;
}

.shop-order-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  margin-bottom: 1.2rem;
}
.shop-order-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: 1rem;
}
.shop-order-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop-order-card__header h3 { margin-bottom: 0; }

.shop-order-card--highlight {
  border-color: rgba(var(--blue-primary-rgb), .4);
  background: rgba(var(--blue-primary-rgb), .05);
}

.shop-order-retirada {
  text-align: center;
  padding: 1.2rem 0;
}
.shop-order-retirada__code {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--blue-primary);
  display: block;
  margin-bottom: .6rem;
}
.shop-order-retirada p {
  color: rgba(255,255,255,.45);
  font-size: .9rem;
}

.shop-order-items {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.shop-order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.shop-order-item__variant {
  font-size: .8rem;
  color: var(--blue-primary);
  display: block;
  margin-top: .15rem;
}
.shop-order-item__detail {
  text-align: right;
  font-size: .85rem;
}
.shop-order-item__detail span {
  display: block;
  color: rgba(255,255,255,.45);
  font-size: .8rem;
}
.shop-order-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  padding-top: 1rem;
  margin-top: .6rem;
  border-top: 1px solid var(--glass-border);
}

.shop-order-actions {
  text-align: center;
  padding-top: 1.5rem;
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 991.98px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  /* Sidebar mobile drawer */
  .shop-sidebar {
    position: fixed;
    top: 0; left: -300px;
    width: 280px;
    height: 100vh;
    background: var(--blue-dark);
    z-index: 1000;
    padding: 1rem;
    overflow-y: auto;
    transition: left .3s ease;
  }
  .shop-sidebar--open {
    left: 0;
  }
  .shop-sidebar__close {
    display: flex;
    justify-content: flex-end;
    margin-bottom: .5rem;
    cursor: pointer;
    color: rgba(255,255,255,.5);
    font-size: 1.2rem;
  }
  .shop-sidebar__close:hover { color: #fff; }

  .shop-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 999;
  }
  .shop-sidebar-overlay--visible {
    display: block;
  }

  .shop-product-card__image {
    aspect-ratio: 1;
  }
}

@media (max-width: 767.98px) {
  .shop-hero { padding: 6.5rem 0 1.8rem; }
  .shop-hero__title { font-size: 1.6rem; }
  .shop-hero__sub { font-size: .85rem; }

  .shop-detail { padding: 5.5rem 0 2rem; }
  .shop-cart,
  .shop-checkout,
  .shop-order { padding: 6.5rem 0 2rem; }

  .shop-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .8rem;
  }
  .shop-feature {
    padding: 1rem .8rem;
  }
  .shop-feature__icon {
    width: 40px; height: 40px;
    font-size: 1rem;
  }
  .shop-feature h4 { font-size: .8rem; }
  .shop-feature p { font-size: .72rem; }

  .shop-cart-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .shop-cart-item__actions {
    width: 100%;
    justify-content: space-between;
    margin-top: .6rem;
  }

  .shop-gallery__main { aspect-ratio: 4/3; }
  .shop-gallery__thumb { width: 52px; height: 52px; }

  .shop-product-card__body { padding: .8rem .8rem .9rem; }
  .shop-product-card__name { font-size: .88rem; }
  .shop-product-card__price { font-size: 1rem; }
  .shop-product-card__desc { display: none; }

  .shop-steps { gap: 0; }
  .shop-step { font-size: .7rem; }
  .shop-step__line { width: 30px; }
  .shop-step__icon { width: 30px; height: 30px; font-size: .7rem; }
}
