/* =========================
   LIVE SEARCH
========================= */

.live-search-wrap {
  position: relative;
}

.live-search-wrap input {
  width: 100%;
  height: 46px;
  border: 1px solid #e0e0e0;
  padding: 0 44px 0 16px;
  font-size: 14px;
  background: #fafafa;
  outline: none;
  color: #111;
  box-sizing: border-box;
  transition: border-color 0.3s;
}
.live-search-wrap input:focus {
  border-color: #009bb0;
  background: #fff;
}
.live-search-wrap input::placeholder { color: #aaa; }

.search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px; height: 17px;
  color: #aaa;
  pointer-events: none;
}

/* DROPDOWN */
.live-search-results {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 9999;
  max-height: 420px;
  overflow-y: auto;
  border-radius: 2px;
}

/* RESULT ITEM */
.ls-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.2s;
}
.ls-item:last-of-type { border-bottom: none; }
.ls-item:hover, .ls-item.ls-hover { background: #f0fafb; }

.ls-item img {
  width: 48px; height: 48px;
  object-fit: cover;
  border: 1px solid #eee;
  flex-shrink: 0;
}

.ls-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.ls-cat {
  font-size: 10px;
  letter-spacing: 1px;
  color: #009bb0;
  font-weight: 700;
  text-transform: uppercase;
}
.ls-title {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ls-price {
  font-size: 13px;
  font-weight: 700;
  color: #007b7b;
}

/* VIEW ALL */
.ls-view-all {
  display: block;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #009bb0;
  text-decoration: none;
  background: #f8feff;
  border-top: 1px solid #e8f7f9;
  text-align: center;
  transition: background 0.2s;
}
.ls-view-all:hover { background: #e0f5f8; }

/* NO RESULTS */
.ls-no-results {
  padding: 18px 14px;
  font-size: 13px;
  color: #888;
  text-align: center;
}

/* LOADING DOTS */
.ls-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px;
}
.ls-loading span {
  width: 7px; height: 7px;
  background: #009bb0;
  border-radius: 50%;
  animation: ls-bounce 0.6s infinite alternate;
}
.ls-loading span:nth-child(2) { animation-delay: 0.2s; }
.ls-loading span:nth-child(3) { animation-delay: 0.4s; }
@keyframes ls-bounce {
  from { opacity: 0.3; transform: translateY(0); }
  to   { opacity: 1;   transform: translateY(-5px); }
}

/* =========================
   WOOCOMMERCE GLOBAL
========================= */

.woocommerce-notices-wrapper { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  padding: 14px 20px; margin-bottom: 20px; border-left: 4px solid #009bb0;
  background: #f0fafb; color: #111; list-style: none;
}
.woocommerce-error { border-color: #e74c3c; background: #fff5f5; }

/* =========================
   PRODUCT CARD (UNIFIED)
========================= */

.product-card {
  background: #fff;
  border: 1px solid #ececec;
  transition: 0.35s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}
.product-image {
  position: relative;
  overflow: hidden;
  height: 300px;
  background: #f5f5f5;
}
.product-image img {
  width: 100%; height: 100%; object-fit: scale-down;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image img { transform: scale(1.05); }

.badge {
  position: absolute; top: 14px; left: 14px;
  background: #007b7b; color: #fff;
  font-size: 11px; font-weight: 700; padding: 5px 10px;
  letter-spacing: 1px; z-index: 2;
}
.badge.sale { background: #222; left: auto; right: 14px; }
.badge.bestseller { background: #009bb0; }

.wishlist-toggle {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.92);
  border: 1px solid #ddd; border-radius: 50%;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: 0.3s ease; z-index: 4; padding: 0;
}
.wishlist-toggle svg { width: 15px; height: 15px; color: #555; }
.wishlist-toggle:hover, .wishlist-toggle.active { background: #e74c3c; border-color: #e74c3c; }
.wishlist-toggle:hover svg, .wishlist-toggle.active svg { color: #fff; }

.product-content { padding: 22px 20px 20px; }
.product-content h3 { font-size: 18px; margin-bottom: 8px; line-height: 1.3; }
.product-content h3 a { text-decoration: none; color: #111; }
.product-content h3 a:hover { color: #009bb0; }
.product-content > p { font-size: 13px; line-height: 1.7; color: #666; margin-bottom: 14px; }

.price-wrap { display: flex; gap: 10px; align-items: center; margin-bottom: 16px; }
.sale-price { font-size: 20px; font-weight: 700; color: #007b7b; }
.old-price { color: #999; text-decoration: line-through; font-size: 14px; }

/* PRODUCT CATEGORY LABEL */
.product-cat {
  font-size: 11px; letter-spacing: 2px; font-weight: 700;
  color: #009bb0; text-transform: uppercase; margin-bottom: 6px;
}

/* CARD ACTIONS */
.card-actions {
  display: flex; gap: 8px; align-items: center; margin-top: 14px;
}

/* ADD TO CART BUTTON */
.add-to-cart-btn {
  flex: 1; height: 42px;
  background: #001923; color: #fff;
  border: none; font-size: 12px; font-weight: 700;
  letter-spacing: 1px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  text-decoration: none; transition: 0.3s ease;
  text-transform: uppercase; white-space: nowrap;
}
.add-to-cart-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.add-to-cart-btn:hover { background: #009bb0; color: #fff; }

/* READ MORE BUTTON */
.read-more-btn {
  display: flex; align-items: center; justify-content: center;
  height: 42px; padding: 0 14px;
  border: 1px solid #ddd; color: #555;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-decoration: none;
  text-transform: uppercase; transition: 0.3s; white-space: nowrap;
}
.read-more-btn:hover { border-color: #009bb0; color: #009bb0; background: #f0fafb; }

/* =========================
   FEATURED PRODUCTS (HOME)
========================= */

.featured-products {
  /* width: 100%;  */
  padding: 120px 8%;
  background: radial-gradient(circle at center, #041a22 0%, #020b12 60%, #01060b 100%);
  color: #fff; position: relative; overflow: hidden;
}
.featured-products::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0,255,255,0.1) 1px, transparent 1px);
  background-size: 80px 80px; opacity: 0.3;
}
.featured-container { max-width: 1450px; margin: auto; position: relative; z-index: 1; }
.featured-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; margin-bottom: 40px;
}
.featured-heading span {
  color: #008ca1; font-size: 13px; letter-spacing: 4px;
  font-weight: 600; display: block; margin-bottom: 14px;
}
.featured-heading h2 {
  font-size: 56px; line-height: 1.1; color: #fff;
  font-family: serif; font-weight: 700; margin: 0;
}
.view-all {
  text-decoration: none; color: #008ca1;
  font-size: 15px; font-weight: 700; letter-spacing: 1px; margin-top: 18px;
}

/* FILTER TABS */
.product-filter-tabs {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px;
}
.filter-tab {
  padding: 10px 22px; background: transparent;
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7);
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  cursor: pointer; transition: 0.3s ease;
}
.filter-tab:hover, .filter-tab.active {
  background: #009bb0; border-color: #009bb0; color: #fff;
}

/* FEATURED GRID */
.featured-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.featured-grid .product-card {
  background: rgba(8,27,35,0.8);
  border: 1px solid rgba(0,255,255,0.12);
}
.featured-grid .product-card:hover {
  box-shadow: 0 10px 30px rgba(0,255,255,0.15);
}
.featured-grid .product-content h3 a { color: #fff; font-size: 17px; }
.featured-grid .product-content > p { color: rgba(255,255,255,0.6); }
.featured-grid .sale-price { color: #00e5ff; }
.featured-grid .old-price { color: rgba(255,255,255,0.4); }
.featured-grid .add-to-cart-btn {
  background: rgba(0,155,176,0.2); border: 1px solid rgba(0,155,176,0.4); color: #fff;
}
.featured-grid .add-to-cart-btn:hover { background: #009bb0; }
.featured-grid .read-more-btn { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); }
.featured-grid .read-more-btn:hover { border-color: #009bb0; color: #009bb0; background: transparent; }
.featured-grid .wishlist-toggle { background: rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.2); }
.featured-grid .wishlist-toggle svg { color: #fff; }

@media (max-width: 1200px) { .featured-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 991px) { .featured-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 576px) { .featured-grid { grid-template-columns: 1fr; } }

/* =========================
   SHOP PAGE
========================= */

.shop-section { padding: 140px 0 70px; background: #f8f8f8; }
.shop-section .container {
  width: 92%; max-width: 1400px; margin: auto;
  display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start;
}
.shop-sidebar { position: sticky; top: 110px; }
.sidebar-box { margin-bottom: 36px; }
.sidebar-box h4 { font-size: 13px; letter-spacing: 2px; margin-bottom: 16px; color: #111; font-weight: 700; }

.search-box { display: flex; }
.search-box input {
  flex: 1; height: 46px; border: 1px solid #ddd; border-right: none;
  padding: 0 14px; font-size: 14px; background: #fff; outline: none;
}
.search-box button {
  height: 46px; padding: 0 16px; background: #009bb0; color: #fff;
  border: none; cursor: pointer; font-size: 13px; font-weight: 700;
}

.category-list { list-style: none; padding: 0; margin: 0; }
.category-list li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; border-bottom: 1px solid #eee;
  font-size: 14px; text-decoration: none; color: #333; transition: 0.3s;
}
.category-list li a:hover { background: #f0f0f0; color: #009bb0; }
.category-list li.active a { background: #007b7b; color: #fff; }

.shop-topbar {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px;
}
.shop-topbar p { font-size: 14px; color: #666; }
.shop-topbar select {
  height: 42px; border: 1px solid #ddd; padding: 0 12px;
  background: #fff; cursor: pointer; font-size: 14px;
}

.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.no-products { grid-column: 1/-1; text-align: center; padding: 60px; color: #666; }

.load-more-container { text-align: center; margin-top: 40px; }
.btn-load-more {
  background: #009bb0; color: #fff; padding: 14px 32px;
  border: none; cursor: pointer; font-weight: 700;
  font-size: 13px; letter-spacing: 1px; transition: 0.3s ease;
}
.btn-load-more:hover { background: #007f8f; }
.loader {
  display: inline-block; width: 22px; height: 22px;
  border: 3px solid rgba(0,0,0,0.15); border-radius: 50%;
  border-top-color: #009bb0; animation: spin 0.8s linear infinite; margin-top: 40px;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px) {
  .shop-section .container { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .shop-topbar { flex-direction: column; gap: 12px; align-items: flex-start; }
}
@media (max-width: 480px) { .products-grid { grid-template-columns: 1fr; } }

/* =========================
   PRODUCT DETAIL
========================= */

.product-detail-section { padding: 120px 0 80px; background: #f8f8f8; }
.product-detail-container { width: 92%; max-width: 1300px; margin: auto; }

.breadcrumb { font-size: 13px; color: #888; margin-bottom: 36px; }
.breadcrumb a { color: #009bb0; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 70px;
}

/* GALLERY */
.gallery-main {
  position: relative; background: #fff;
  border: 1px solid #eee; overflow: hidden; height: 500px;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.detail-badge {
  position: absolute; top: 16px; right: 16px;
  background: #222; color: #fff; font-size: 11px;
  font-weight: 700; padding: 6px 12px; letter-spacing: 1px;
}
.detail-badge.sale { background: #e74c3c; }

.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.thumb {
  width: 80px; height: 80px; border: 2px solid transparent;
  cursor: pointer; overflow: hidden; transition: 0.3s;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active, .thumb:hover { border-color: #009bb0; }

/* PRODUCT INFO */
.product-cat-label {
  display: inline-block; color: #009bb0;
  font-size: 12px; letter-spacing: 3px; font-weight: 700;
  text-transform: uppercase; margin-bottom: 14px;
}
.product-info h1 { font-size: 38px; line-height: 1.2; margin-bottom: 16px; color: #111; }
.product-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.product-rating span { font-size: 13px; color: #888; }

.detail-price { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.detail-sale-price { font-size: 32px; font-weight: 700; color: #007b7b; }
.detail-regular-price { font-size: 18px; color: #999; text-decoration: line-through; }

.product-short-desc { font-size: 15px; line-height: 1.8; color: #555; margin-bottom: 28px; }

.detail-actions { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 28px; flex-wrap: wrap; }

/* CUSTOM QTY + ADD TO CART */
.detail-cart-form { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; flex: 1; }
.qty-wrap { display: flex; align-items: center; border: 1px solid #ddd; overflow: hidden; }
.qty-minus, .qty-plus {
  width: 38px; height: 52px; background: #f5f5f5; border: none;
  font-size: 20px; cursor: pointer; color: #333; transition: 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.qty-minus:hover, .qty-plus:hover { background: #009bb0; color: #fff; }
.qty-input {
  width: 52px; height: 52px; border: none;
  border-left: 1px solid #ddd; border-right: 1px solid #ddd;
  text-align: center; font-size: 16px; font-weight: 600;
  outline: none; -moz-appearance: textfield;
}
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.detail-add-to-cart-btn {
  height: 52px; padding: 0 28px; background: #001923; color: #fff;
  border: none; font-size: 14px; font-weight: 700; letter-spacing: 1px;
  cursor: pointer; display: flex; align-items: center; gap: 8px;
  text-transform: uppercase; transition: 0.3s; white-space: nowrap;
}
.detail-add-to-cart-btn svg { width: 18px; height: 18px; }
.detail-add-to-cart-btn:hover { background: #009bb0; }
.out-of-stock-msg {
  padding: 14px 20px; background: #fff5f5;
  border: 1px solid #fcc; color: #c0392b; font-size: 14px; font-weight: 600;
}

/* DETAIL WISHLIST */
.detail-wishlist {
  height: 52px; padding: 0 18px; background: transparent;
  border: 1px solid #ddd; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; transition: 0.3s; white-space: nowrap; color: #555;
}
.detail-wishlist svg { width: 18px; height: 18px; }
.detail-wishlist:hover, .detail-wishlist.active { background: #e74c3c; color: #fff; border-color: #e74c3c; }

/* DETAIL IMG WISHLIST */
.detail-img-wishlist {
  position: absolute; top: 14px; right: 14px;
  width: 42px; height: 42px; background: rgba(255,255,255,0.92);
  border: 1px solid #ddd; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: 0.3s; z-index: 4; padding: 0;
}
.detail-img-wishlist svg { width: 18px; height: 18px; color: #555; }
.detail-img-wishlist:hover, .detail-img-wishlist.active { background: #e74c3c; border-color: #e74c3c; }
.detail-img-wishlist:hover svg, .detail-img-wishlist.active svg { color: #fff; }

.product-meta { border-top: 1px solid #eee; padding-top: 20px; margin-bottom: 24px; }
.product-meta p { font-size: 13px; color: #666; margin-bottom: 6px; }
.product-meta a { color: #009bb0; text-decoration: none; }

.trust-badges {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 12px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; background: #f5f5f5;
  font-size: 13px; font-weight: 600; color: #333;
}
.trust-item span { font-size: 18px; }

/* TABS */
.product-tabs { margin-bottom: 60px; }
.tab-nav { display: flex; border-bottom: 2px solid #eee; margin-bottom: 30px; }
.tab-btn {
  padding: 14px 28px; background: transparent; border: none;
  font-size: 15px; font-weight: 600; color: #888; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -2px; transition: 0.3s;
}
.tab-btn.active { color: #009bb0; border-bottom-color: #009bb0; }
.tab-content { display: none; font-size: 15px; line-height: 1.9; color: #555; }
.tab-content.active { display: block; }

/* RELATED */
.related-products h2 { font-size: 32px; margin-bottom: 28px; color: #111; }
.related-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

@media (max-width: 1100px) { .related-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 991px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-main { height: 380px; }
  .related-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 576px) {
  .product-info h1 { font-size: 28px; }
  .detail-sale-price { font-size: 26px; }
  .trust-badges { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}

/* =========================
   CART PAGE
========================= */

/* HERO */
.cart-hero {
  background: radial-gradient(circle at 60% 50%, #041a22 0%, #020b12 60%, #01060b 100%);
  padding: 140px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cart-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0,255,255,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
}
.cart-hero-inner { position: relative; z-index: 2; }
.cart-hero-inner span {
  display: inline-block; color: #009bb0;
  font-size: 11px; letter-spacing: 5px;
  font-weight: 700; text-transform: uppercase; margin-bottom: 14px;
}
.cart-hero-inner h1 {
  font-size: 52px; color: #fff;
  font-family: serif; font-weight: 700; margin: 0 0 12px;
}
.cart-hero-inner p { color: rgba(255,255,255,0.5); font-size: 15px; margin: 0; }

/* SECTION */
.cart-section {
  background: #f2f4f5;
  padding: 50px 0 80px;
  min-height: 60vh;
}
.cart-wrap {
  width: 92%; max-width: 1200px; margin: auto;
}

/* TWO COLUMN LAYOUT */
.woocommerce.woocommerce-cart .woocommerce-cart-form,
.woocommerce-page.woocommerce-cart .woocommerce-cart-form { width: 100%; }

/* Override WooCommerce default layout to side-by-side */
.woocommerce-cart .woocommerce {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}
.woocommerce-cart .woocommerce .woocommerce-cart-form { grid-column: 1; }
.woocommerce-cart .woocommerce .cart-collaterals { grid-column: 2; margin-top: 0; }

/* CART TABLE */
.woocommerce table.shop_table {
  width: 100%; border-collapse: collapse;
  background: #fff; border: none;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  margin-bottom: 0;
}
.woocommerce table.shop_table thead tr {
  background: #001923;
}
.woocommerce table.shop_table thead th {
  padding: 16px 20px;
  color: rgba(255,255,255,0.7);
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 700;
  text-align: left; border: none;
}
.woocommerce table.shop_table tbody td {
  padding: 20px;
  border-bottom: 1px solid #f5f5f5;
  vertical-align: middle;
}
.woocommerce table.shop_table tbody tr:last-child td { border-bottom: none; }
.woocommerce table.shop_table tbody tr:hover { background: #fafcfc; }

/* REMOVE */
.woocommerce table.shop_table td.product-remove { width: 40px; padding-right: 0; }
.woocommerce table.shop_table td.product-remove a {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: #f5f5f5; color: #aaa;
  font-size: 16px; text-decoration: none;
  transition: 0.25s; font-weight: 700;
}
.woocommerce table.shop_table td.product-remove a:hover { background: #e74c3c; color: #fff; }

/* THUMBNAIL */
.woocommerce table.shop_table td.product-thumbnail { width: 90px; padding-right: 0; }
.woocommerce table.shop_table td.product-thumbnail img {
  width: 72px; height: 72px; object-fit: cover;
  border: 1px solid #eee; display: block;
}

/* NAME */
.woocommerce table.shop_table td.product-name a {
  color: #111; text-decoration: none;
  font-weight: 600; font-size: 15px; line-height: 1.4;
}
.woocommerce table.shop_table td.product-name a:hover { color: #009bb0; }
.woocommerce table.shop_table td.product-name .variation {
  font-size: 12px; color: #999; margin-top: 4px;
}

/* PRICE & SUBTOTAL */
.woocommerce table.shop_table td.product-price,
.woocommerce table.shop_table td.product-subtotal {
  font-weight: 700; color: #007b7b; font-size: 15px;
}
.woocommerce table.shop_table td.product-price .woocommerce-Price-amount,
.woocommerce table.shop_table td.product-subtotal .woocommerce-Price-amount {
  color: #007b7b;
}

/* QUANTITY — custom +/- */
.woocommerce table.shop_table td.product-quantity { width: 130px; }
.qty-control {
  display: flex; align-items: center;
  border: 1px solid #e0e0e0; overflow: hidden;
  width: fit-content; background: #fff;
}
.qty-control .qty-down,
.qty-control .qty-up {
  width: 34px; height: 40px;
  background: #f8f8f8; border: none;
  font-size: 18px; cursor: pointer; color: #555;
  display: flex; align-items: center; justify-content: center;
  transition: 0.2s; flex-shrink: 0;
}
.qty-control .qty-down:hover,
.qty-control .qty-up:hover { background: #009bb0; color: #fff; }
.qty-control input.qty {
  width: 44px; height: 40px; border: none;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  text-align: center; font-size: 14px; font-weight: 700;
  outline: none; -moz-appearance: textfield;
  background: #fff; color: #111;
}
.qty-control input.qty::-webkit-inner-spin-button,
.qty-control input.qty::-webkit-outer-spin-button { -webkit-appearance: none; }

/* HIDE UPDATE CART BUTTON (auto update) */
.woocommerce table.shop_table .actions { padding: 16px 20px; background: #fafafa; border-top: 1px solid #f0f0f0; }
.woocommerce table.shop_table .actions button[name="update_cart"] { display: none !important; }

/* COUPON */
.woocommerce table.shop_table .actions .coupon {
  display: flex; gap: 8px; align-items: center;
}
.woocommerce table.shop_table .actions .coupon #coupon_code {
  height: 42px; border: 1px solid #ddd; padding: 0 14px;
  font-size: 13px; background: #fff; outline: none; width: 180px;
  transition: 0.3s;
}
.woocommerce table.shop_table .actions .coupon #coupon_code:focus { border-color: #009bb0; }
.woocommerce table.shop_table .actions .coupon .button {
  height: 42px; padding: 0 18px;
  background: #001923; color: #fff;
  border: none; cursor: pointer;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  transition: 0.3s;
}
.woocommerce table.shop_table .actions .coupon .button:hover { background: #009bb0; }

/* CART TOTALS SIDEBAR */
.woocommerce .cart-collaterals { display: block; margin-top: 0; }
.woocommerce .cart_totals {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 28px;
  position: sticky; top: 110px;
}
.woocommerce .cart_totals h2 {
  font-size: 14px; font-weight: 700; color: #111;
  margin: 0 0 22px; padding-bottom: 16px;
  border-bottom: 2px solid #f0f0f0;
  letter-spacing: 2px; text-transform: uppercase;
}
.woocommerce .cart_totals table {
  width: 100%; border-collapse: collapse; margin-bottom: 0;
}
.woocommerce .cart_totals table th {
  padding: 13px 0; font-size: 13px; color: #666;
  font-weight: 600; text-align: left;
  border-bottom: 1px solid #f5f5f5; width: 45%;
  vertical-align: top;
}
.woocommerce .cart_totals table td {
  padding: 13px 0; font-size: 14px; color: #111;
  font-weight: 600; border-bottom: 1px solid #f5f5f5;
  text-align: right;
}
.woocommerce .cart_totals table .order-total th,
.woocommerce .cart_totals table .order-total td {
  font-size: 20px; font-weight: 700;
  color: #007b7b; border-bottom: none;
  padding-top: 18px;
}
.woocommerce .cart_totals .woocommerce-shipping-destination { font-size: 12px; color: #888; }
.woocommerce .cart_totals .shipping-calculator-button {
  font-size: 12px; color: #009bb0; text-decoration: none; display: block; margin-top: 6px;
}

/* CHECKOUT BUTTON */
.woocommerce .cart_totals .wc-proceed-to-checkout { margin-top: 22px; }
.woocommerce .cart_totals .wc-proceed-to-checkout .checkout-button {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; height: 56px;
  background: linear-gradient(90deg, #007b8a, #009bb0);
  color: #fff; text-decoration: none;
  font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  transition: 0.3s; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,155,176,0.25);
}
.woocommerce .cart_totals .wc-proceed-to-checkout .checkout-button:hover {
  background: linear-gradient(90deg, #009bb0, #00c5d8);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,155,176,0.35);
}
.woocommerce .cart_totals .wc-proceed-to-checkout .checkout-button::after {
  content: '→'; font-size: 18px;
}

/* CONTINUE SHOPPING */
.woocommerce .cart_totals .continue-shopping-link,
.woocommerce .return-to-shop { margin-top: 14px; text-align: center; }
.woocommerce .return-to-shop .button {
  display: inline-block; padding: 11px 24px;
  background: transparent; border: 1px solid #ddd;
  color: #777; font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-decoration: none;
  text-transform: uppercase; transition: 0.3s;
}
.woocommerce .return-to-shop .button:hover { border-color: #009bb0; color: #009bb0; }

/* TRUST MINI BADGES IN CART */
.cart-trust {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 20px;
  padding-top: 20px; border-top: 1px solid #f0f0f0;
}
.cart-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: #888; font-weight: 600;
}
.cart-trust-item span { font-size: 14px; }

/* EMPTY CART */
.woocommerce .cart-empty {
  text-align: center; padding: 70px 20px;
  background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  font-size: 16px; color: #888; grid-column: 1 / -1;
}
.woocommerce p.cart-empty::before {
  content: '🛒'; display: block;
  font-size: 56px; margin-bottom: 18px;
}
.woocommerce .return-to-shop { grid-column: 1 / -1; text-align: center; margin-top: 0; }

/* NOTICES */
.woocommerce-notices-wrapper { grid-column: 1 / -1; }
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info {
  padding: 14px 20px; margin-bottom: 16px;
  border-left: 4px solid #009bb0;
  background: #f0fafb; color: #111;
  list-style: none; display: flex;
  align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.woocommerce-notices-wrapper .woocommerce-message .button {
  padding: 8px 18px; background: #009bb0; color: #fff;
  text-decoration: none; font-size: 12px; font-weight: 700;
  letter-spacing: 1px; transition: 0.3s;
}
.woocommerce-notices-wrapper .woocommerce-message .button:hover { background: #007f8f; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .woocommerce-cart .woocommerce {
    grid-template-columns: 1fr;
  }
  .woocommerce-cart .woocommerce .cart-collaterals { grid-column: 1; }
  .woocommerce .cart_totals { position: static; }
  .cart-hero-inner h1 { font-size: 36px; }
}
@media (max-width: 600px) {
  .woocommerce table.shop_table thead { display: none; }
  .woocommerce table.shop_table tbody td { display: block; text-align: right; padding: 8px 16px; }
  .woocommerce table.shop_table tbody td::before { content: attr(data-title); float: left; font-weight: 700; color: #555; font-size: 12px; }
  .woocommerce table.shop_table tbody tr { display: block; border-bottom: 2px solid #f0f0f0; padding: 10px 0; }
  .woocommerce table.shop_table td.product-thumbnail { display: none; }
  .woocommerce table.shop_table .actions .coupon { flex-wrap: wrap; }
  .woocommerce table.shop_table .actions .coupon #coupon_code { width: 100%; }
}

/* =========================
   WISHLIST PAGE
========================= */

.wishlist-section { padding: 120px 0 80px; background: #f8f8f8; }
.wishlist-container { width: 92%; max-width: 1300px; margin: auto; }
.wishlist-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

@media (max-width: 1100px) { .wishlist-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 768px) { .wishlist-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .wishlist-grid { grid-template-columns: 1fr; } }

/* =========================
   ACCOUNT / AUTH PAGES
========================= */

.account-section {
  min-height: 100vh;
  background: radial-gradient(circle at top left, #041a22 0%, #020b12 60%, #01060b 100%);
  padding: 100px 20px 60px;
  display: flex; align-items: center;
}
.account-wrap { width: 100%; max-width: 1300px; margin: auto; }

/* ---- AUTH PANEL ---- */
.auth-panel {
  max-width: 480px; margin: auto;
}
.auth-logo { text-align: center; margin-bottom: 36px; }
.auth-logo img { height: 52px; object-fit: contain; }

.auth-card {
  background: rgba(8,27,35,0.85);
  border: 1px solid rgba(0,255,255,0.12);
  backdrop-filter: blur(12px);
  padding: 44px 40px;
  border-radius: 4px;
}
.auth-card h1 {
  font-size: 28px; font-weight: 700; color: #fff;
  margin: 0 0 8px; font-family: serif;
}
.auth-sub { color: rgba(255,255,255,0.55); font-size: 14px; margin-bottom: 32px; }

/* ALERTS */
.auth-alert {
  padding: 13px 16px; border-radius: 3px;
  font-size: 14px; margin-bottom: 22px; font-weight: 500;
}
.auth-alert.error { background: rgba(231,76,60,0.15); border: 1px solid rgba(231,76,60,0.4); color: #ff6b6b; }
.auth-alert.success { background: rgba(0,155,176,0.15); border: 1px solid rgba(0,155,176,0.4); color: #00d9ff; }

/* FORM */
.auth-form { display: flex; flex-direction: column; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 12px; letter-spacing: 1px; font-weight: 700;
  color: rgba(255,255,255,0.6); text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: center;
}
.label-link { font-size: 12px; color: #009bb0; text-decoration: none; font-weight: 500; letter-spacing: 0; text-transform: none; }
.label-link:hover { color: #00d9ff; }

.form-field input {
  height: 52px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff; padding: 0 16px; font-size: 15px;
  outline: none; transition: 0.3s; box-sizing: border-box;
  border-radius: 2px; width: 100%;
}
.form-field input::placeholder { color: rgba(255,255,255,0.25); }
.form-field input:focus { border-color: #009bb0; background: rgba(0,155,176,0.06); }

.input-wrap { position: relative; }
.input-wrap input { padding-right: 50px; }
.toggle-pw {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.35); padding: 0; transition: 0.3s;
}
.toggle-pw:hover { color: #009bb0; }
.toggle-pw svg { width: 18px; height: 18px; display: block; }

.form-check label {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.55); cursor: pointer;
}
.form-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: #009bb0; cursor: pointer; }
.form-check a { color: #009bb0; text-decoration: none; }

.auth-submit {
  height: 54px; background: linear-gradient(90deg, #007b8a, #009bb0);
  color: #fff; border: none; font-size: 14px; font-weight: 700;
  letter-spacing: 1px; cursor: pointer; transition: 0.3s ease;
  text-transform: uppercase; border-radius: 2px; margin-top: 4px;
}
.auth-submit:hover { background: linear-gradient(90deg, #009bb0, #00c5d8); transform: translateY(-1px); }

.auth-switch {
  text-align: center; margin-top: 24px;
  font-size: 14px; color: rgba(255,255,255,0.45);
}
.auth-switch a { color: #009bb0; text-decoration: none; font-weight: 600; }
.auth-switch a:hover { color: #00d9ff; }

/* ---- DASHBOARD ---- */
.dashboard-layout {
  display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start;
}

.dashboard-sidebar {
  background: rgba(8,27,35,0.85);
  border: 1px solid rgba(0,255,255,0.1);
  border-radius: 4px; overflow: hidden;
  position: sticky; top: 110px;
}
.dashboard-avatar {
  display: flex; align-items: center; gap: 14px;
  padding: 24px 22px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.avatar-circle {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, #007b8a, #009bb0);
  color: #fff; font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dashboard-avatar strong { display: block; color: #fff; font-size: 14px; margin-bottom: 3px; }
.dashboard-avatar span { color: rgba(255,255,255,0.45); font-size: 12px; word-break: break-all; }

.dashboard-nav { padding: 10px 0; }
.dashboard-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 22px; color: rgba(255,255,255,0.6);
  text-decoration: none; font-size: 14px; font-weight: 500;
  transition: 0.25s ease; border-left: 3px solid transparent;
}
.dashboard-nav a svg { width: 17px; height: 17px; flex-shrink: 0; }
.dashboard-nav a:hover { color: #fff; background: rgba(0,155,176,0.08); }
.dashboard-nav a.active { color: #00d9ff; border-left-color: #009bb0; background: rgba(0,155,176,0.1); }
.dashboard-nav a.logout-link { color: rgba(255,100,100,0.7); margin-top: 6px; border-top: 1px solid rgba(255,255,255,0.06); }
.dashboard-nav a.logout-link:hover { color: #ff6b6b; background: rgba(231,76,60,0.08); }

.dashboard-main { display: flex; flex-direction: column; gap: 24px; }

.dash-section {
  background: rgba(8,27,35,0.85);
  border: 1px solid rgba(0,255,255,0.1);
  border-radius: 4px; padding: 32px;
}
.dash-section h2 { font-size: 24px; color: #fff; margin: 0 0 6px; font-family: serif; }
.dash-section h3 { font-size: 18px; color: #fff; margin: 0 0 20px; }
.dash-sub { color: rgba(255,255,255,0.5); font-size: 14px; margin-bottom: 28px; }

.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.dash-stat {
  background: rgba(0,155,176,0.08); border: 1px solid rgba(0,155,176,0.15);
  padding: 22px; text-align: center; border-radius: 3px;
}
.dash-stat span { display: block; font-size: 32px; font-weight: 700; color: #00d9ff; margin-bottom: 6px; }
.dash-stat p { color: rgba(255,255,255,0.5); font-size: 12px; letter-spacing: 1px; margin: 0; text-transform: uppercase; }

/* ORDERS TABLE */
.orders-table-wrap { overflow-x: auto; }
.orders-table { width: 100%; border-collapse: collapse; }
.orders-table th {
  padding: 12px 16px; text-align: left;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.orders-table td {
  padding: 14px 16px; font-size: 14px; color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.orders-table tr:last-child td { border-bottom: none; }
.order-status {
  display: inline-block; padding: 4px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
}
.status-completed { background: rgba(0,200,100,0.15); color: #00c864; }
.status-processing { background: rgba(0,155,176,0.15); color: #009bb0; }
.status-pending { background: rgba(255,200,0,0.15); color: #ffc800; }
.status-cancelled { background: rgba(231,76,60,0.15); color: #e74c3c; }
.view-order-btn {
  display: inline-block; padding: 6px 14px;
  background: rgba(0,155,176,0.15); border: 1px solid rgba(0,155,176,0.3);
  color: #009bb0; text-decoration: none; font-size: 12px; font-weight: 700;
  transition: 0.3s;
}
.view-order-btn:hover { background: #009bb0; color: #fff; }

/* ADDRESS */
.address-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.address-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  padding: 24px; border-radius: 3px;
}
.address-card h4 { color: #fff; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin: 0 0 16px; }
.address-card address { color: rgba(255,255,255,0.6); font-style: normal; font-size: 14px; line-height: 1.8; margin-bottom: 16px; }
.no-address { color: rgba(255,255,255,0.35); font-size: 14px; margin-bottom: 16px; }
.dash-btn {
  display: inline-block; padding: 12px 28px;
  background: #009bb0; color: #fff; text-decoration: none;
  font-size: 13px; font-weight: 700; letter-spacing: 1px; transition: 0.3s;
}
.dash-btn:hover { background: #007f8f; }
.dash-btn-sm {
  display: inline-block; padding: 8px 18px;
  background: rgba(0,155,176,0.15); border: 1px solid rgba(0,155,176,0.3);
  color: #009bb0; text-decoration: none; font-size: 12px; font-weight: 700; transition: 0.3s;
}
.dash-btn-sm:hover { background: #009bb0; color: #fff; }

.dash-empty { text-align: center; padding: 40px 0; }
.dash-empty p { color: rgba(255,255,255,0.45); margin-bottom: 20px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { position: static; }
  .dashboard-nav { display: flex; flex-wrap: wrap; padding: 0; }
  .dashboard-nav a { border-left: none; border-bottom: 3px solid transparent; padding: 12px 16px; }
  .dashboard-nav a.active { border-bottom-color: #009bb0; border-left: none; }
  .dash-stats { grid-template-columns: repeat(3,1fr); }
  .address-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
  .auth-card { padding: 32px 24px; }
  .dash-stats { grid-template-columns: 1fr; }
  .account-section { padding: 90px 16px 40px; }
}

/* =========================
   CHECKOUT
========================= */

.checkout-hero {
  background: radial-gradient(circle at 60% 50%, #041a22 0%, #020b12 60%, #01060b 100%);
  padding: 140px 20px 60px; text-align: center; position: relative; overflow: hidden;
}
.checkout-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0,255,255,0.08) 1px, transparent 1px);
  background-size: 60px 60px; opacity: 0.4;
}
.checkout-hero-inner { position: relative; z-index: 2; }
.checkout-hero-inner span {
  display: inline-block; color: #009bb0; font-size: 11px;
  letter-spacing: 5px; font-weight: 700; text-transform: uppercase; margin-bottom: 14px;
}
.checkout-hero-inner h1 {
  font-size: 48px; color: #fff; font-family: serif; font-weight: 700; margin: 0;
}

.checkout-section { background: #f2f4f5; padding: 50px 0 80px; }
.checkout-wrap { width: 92%; max-width: 1200px; margin: auto; }

/* TWO COLUMN GRID */
.checkout-grid {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 30px; align-items: start;
}

/* LEFT — BILLING/SHIPPING */
.checkout-left { display: flex; flex-direction: column; gap: 0; }

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields {
  background: #fff; padding: 28px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  margin-bottom: 20px;
}
.woocommerce-checkout h3 {
  font-size: 14px; font-weight: 700; color: #111;
  letter-spacing: 2px; text-transform: uppercase;
  margin: 0 0 22px; padding-bottom: 14px;
  border-bottom: 2px solid #f0f0f0;
}
.woocommerce-checkout .form-row {
  margin-bottom: 16px;
}
.woocommerce-checkout .form-row label {
  display: block; font-size: 11px; letter-spacing: 1px;
  color: #666; margin-bottom: 7px; font-weight: 700;
  text-transform: uppercase;
}
.woocommerce-checkout .form-row .required { color: #e74c3c; }
.woocommerce-checkout .form-row input[type=text],
.woocommerce-checkout .form-row input[type=email],
.woocommerce-checkout .form-row input[type=tel],
.woocommerce-checkout .form-row input[type=password],
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  width: 100%; height: 48px; border: 1px solid #e0e0e0;
  padding: 0 14px; font-size: 14px; background: #fafafa;
  outline: none; transition: 0.3s; box-sizing: border-box; color: #111;
}
.woocommerce-checkout .form-row textarea { height: 100px; padding: 12px 14px; resize: none; }
.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
  border-color: #009bb0; background: #fff;
  box-shadow: 0 0 0 3px rgba(0,155,176,0.08);
}
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
  width: calc(50% - 8px); display: inline-block; vertical-align: top;
}
.woocommerce-checkout .form-row-first { margin-right: 16px; }

/* ADDITIONAL INFO */
.woocommerce-checkout .woocommerce-additional-fields {
  background: #fff; padding: 28px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  margin-bottom: 20px;
}

/* RIGHT — ORDER REVIEW */
.checkout-right { position: sticky; top: 110px; }
.checkout-right h3 {
  font-size: 14px; font-weight: 700; color: #111;
  letter-spacing: 2px; text-transform: uppercase;
  margin: 0 0 0; padding: 20px 28px 16px;
  border-bottom: 2px solid #f0f0f0;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.woocommerce-checkout-review-order {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

/* ORDER TABLE */
.woocommerce-checkout-review-order-table {
  width: 100%; border-collapse: collapse;
}
.woocommerce-checkout-review-order-table thead th {
  padding: 12px 20px; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  color: #999; font-weight: 700; text-align: left;
  border-bottom: 1px solid #f0f0f0;
}
.woocommerce-checkout-review-order-table tbody td {
  padding: 14px 20px; font-size: 14px;
  border-bottom: 1px solid #f5f5f5; color: #333;
  vertical-align: middle;
}
.woocommerce-checkout-review-order-table tbody .product-name { font-weight: 600; }
.woocommerce-checkout-review-order-table tbody .product-total { font-weight: 700; color: #007b7b; text-align: right; }
.woocommerce-checkout-review-order-table tfoot tr th,
.woocommerce-checkout-review-order-table tfoot tr td {
  padding: 12px 20px; font-size: 13px;
  border-bottom: 1px solid #f5f5f5; font-weight: 600;
}
.woocommerce-checkout-review-order-table tfoot .order-total th,
.woocommerce-checkout-review-order-table tfoot .order-total td {
  font-size: 18px; font-weight: 700; color: #007b7b;
  border-bottom: none; padding-top: 16px;
}

/* PAYMENT BOX */
.woocommerce-checkout #payment {
  background: #fafafa; padding: 24px 20px;
  border-top: 1px solid #f0f0f0;
}
.woocommerce-checkout #payment ul.payment_methods {
  list-style: none; padding: 0; margin: 0 0 20px;
}
.woocommerce-checkout #payment ul.payment_methods li {
  padding: 12px 0; border-bottom: 1px solid #eee;
  font-size: 14px; font-weight: 600;
}
.woocommerce-checkout #payment ul.payment_methods li label { cursor: pointer; }
.woocommerce-checkout #payment .payment_box {
  background: #f0f9fa; padding: 14px 16px;
  margin-top: 10px; font-size: 13px; color: #555;
  border-left: 3px solid #009bb0;
}
.woocommerce-checkout #payment #place_order {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; height: 56px;
  background: linear-gradient(90deg, #007b8a, #009bb0);
  color: #fff; border: none; font-size: 13px;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  transition: 0.3s; box-shadow: 0 4px 16px rgba(0,155,176,0.25);
}
.woocommerce-checkout #payment #place_order:hover {
  background: linear-gradient(90deg, #009bb0, #00c5d8);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,155,176,0.35);
}
.woocommerce-checkout #payment #place_order::after { content: '→'; font-size: 18px; }

/* PRIVACY POLICY TEXT */
.woocommerce-checkout .woocommerce-privacy-policy-text {
  font-size: 12px; color: #999; margin-bottom: 16px; line-height: 1.6;
}
.woocommerce-checkout .woocommerce-privacy-policy-text a { color: #009bb0; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-right { position: static; }
  .checkout-hero-inner h1 { font-size: 34px; }
}
@media (max-width: 576px) {
  .woocommerce-checkout .form-row-first,
  .woocommerce-checkout .form-row-last { width: 100%; display: block; margin-right: 0; }
  .checkout-section { padding: 30px 0 60px; }
}

/* =========================
   EMPTY STATE
========================= */

.empty-state {
  text-align: center; padding: 80px 20px;
}
.empty-icon { font-size: 60px; margin-bottom: 20px; }
.empty-state h3 { font-size: 26px; margin-bottom: 12px; color: #111; }
.empty-state p { color: #888; font-size: 15px; margin-bottom: 28px; }
.empty-state .auth-btn { display: inline-block; width: auto; padding: 0 36px; }

/* =========================
   HEADER CART/WISHLIST COUNT
========================= */

.cart-icon-wrap, .wishlist-header-icon { position: relative; }
.cart-count, .wishlist-count {
  position: absolute; top: -8px; right: -8px;
  background: #009bb0; color: #fff;
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.cart-count:empty, .wishlist-count:empty { display: none; }
.cart-count[data-count="0"], .wishlist-count[data-count="0"] { display: none; }
