@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --end-bg: #060606;
  --end-bg-soft: #111111;
  --end-card: rgba(18, 18, 18, 0.92);
  --end-card-2: rgba(22, 22, 22, 0.94);
  --end-border: rgba(255, 221, 138, 0.12);
  --end-border-strong: rgba(255, 221, 138, 0.28);
  --end-text: #ffffff;
  --end-muted: rgba(255, 255, 255, 0.62);
  --end-gold: #e4c67c;
  --end-gold-2: #c9a75c;
  --end-red: #ef4d4d;
  --end-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --end-radius: 22px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden !important;
  background: #060606 !important;
  color: var(--end-text) !important;
  font-family: Inter, Arial, sans-serif !important;
}

body {
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 70% 10%, rgba(228, 198, 124, 0.08), transparent 24%),
    radial-gradient(circle at 15% 30%, rgba(228, 198, 124, 0.05), transparent 22%),
    linear-gradient(180deg, #090909 0%, #050505 100%);
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.35));
  z-index: -1;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font-family: inherit !important;
}

/* =========================
   CONTAINER
========================= */

.end-container,
.container,
.container-fluid,
.site-content,
.site-home-categories {
  width: min(1280px, calc(100% - 48px)) !important;
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* =========================
   HEADER / NAV
========================= */

header,
.header,
.site-header,
.navbar,
.tebex-header {
  width: 100% !important;
  background: rgba(8, 8, 8, 0.95) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  backdrop-filter: blur(10px);
  position: sticky !important;
  top: 0;
  z-index: 100 !important;
}

header .container,
.header .container,
.site-header .container,
.navbar .container,
.site-header-inner {
  min-height: 82px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
}

.toggle,
.navbar-toggle,
.menu-toggle,
button[aria-label="Toggle menu"],
button[title="Toggle menu"] {
  display: none !important;
}

/* Logo */
.logo,
.navbar-brand,
.site-logo,
header a[href="/"],
.header a[href="/"] {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: #fff !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.03em;
}

.logo img,
.navbar-brand img,
.site-logo img,
.site-header-inner .info .image {
  max-height: 54px !important;
  width: auto !important;
  border-radius: 10px !important;
}

/* Navigation */
nav,
.navigation,
.navigation-horizontal,
.navbar-nav,
.site-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 34px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

nav ul,
.navigation ul,
.navigation-horizontal ul,
.navbar-nav ul,
.site-nav ul,
.navigation-horizontal > ul {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 34px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

nav li,
.navigation li,
.navigation-horizontal li,
.navbar-nav li,
.site-nav li {
  list-style: none !important;
}

nav a,
.navigation a,
.navigation-horizontal a,
.navbar-nav a,
.site-nav a {
  color: rgba(255,255,255,0.75) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  padding: 28px 0 !important;
  position: relative !important;
  transition: 0.2s ease;
}

nav a:hover,
.navigation a:hover,
.navigation-horizontal a:hover,
.navbar-nav a:hover,
.site-nav a:hover,
nav a.active,
.navigation a.active,
.navigation-horizontal a.active,
.navbar-nav a.active,
.site-nav a.active {
  color: #fff !important;
}

nav a::after,
.navigation a::after,
.navigation-horizontal a::after,
.navbar-nav a::after,
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--end-gold), transparent);
  transform: scaleX(0);
  transition: 0.2s ease;
}

nav a:hover::after,
.navigation a:hover::after,
.navigation-horizontal a:hover::after,
.navbar-nav a:hover::after,
.site-nav a:hover::after,
nav a.active::after,
.navigation a.active::after,
.navigation-horizontal a.active::after,
.navbar-nav a.active::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

/* Login / basket / currency */
.basket,
.cart,
.login,
.user-actions a,
a[href*="checkout"],
a[href*="basket"],
a[href*="login"],
.currency,
.dropdown-toggle {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  padding: 0 20px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #e7cc87, #c9a75c) !important;
  color: #121212 !important;
  font-weight: 800 !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: 0 8px 24px rgba(228,198,124,0.18) !important;
}

.currency {
  background: rgba(255,255,255,0.05) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: none !important;
}

/* =========================
   GLOBAL ELEMENTS
========================= */

h1, h2, h3, h4, h5, h6 {
  color: #fff !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em;
}

p, li, .description, .card-text {
  color: var(--end-muted) !important;
}

.btn,
.button,
button,
input[type="submit"] {
  border-radius: 14px !important;
  font-weight: 800 !important;
  border: 0 !important;
  transition: 0.2s ease !important;
}

.btn:hover,
.button:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
}

.btn-primary,
.button-primary,
input[type="submit"],
.checkout-button {
  background: linear-gradient(135deg, #e7cc87, #c9a75c) !important;
  color: #121212 !important;
  box-shadow: 0 10px 28px rgba(228,198,124,0.2) !important;
}

.btn-secondary,
.btn-default,
.button-secondary {
  background: rgba(255,255,255,0.06) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
}

input,
select,
textarea,
.form-control,
.quantity-field {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  color: #fff !important;
  border-radius: 14px !important;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255,255,255,0.38) !important;
}

input:focus,
select:focus,
textarea:focus,
.form-control:focus {
  border-color: var(--end-gold) !important;
  box-shadow: 0 0 0 4px rgba(228,198,124,0.12) !important;
  outline: none !important;
}

.card,
.panel,
.package,
.product,
.category,
.module,
.well,
.widget,
.store-product,
.store-product-full,
.store-category-tiered,
.store-product-tiered,
.category-description,
.no-products,
.popup-content,
.basket-popup-content,
.store-text {
  background: linear-gradient(180deg, rgba(16,16,16,0.94), rgba(10,10,10,0.96)) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: 24px !important;
  color: #fff !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.32) !important;
}

.card-header,
.panel-heading,
.module-header,
.widget-title {
  background: rgba(255,255,255,0.03) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  color: #fff !important;
}

.price,
.package-price,
.product-price,
.store-product .price {
  color: var(--end-gold) !important;
  font-weight: 900 !important;
}

table,
.table {
  color: #fff !important;
}

.table td,
.table th {
  border-color: rgba(255,255,255,0.08) !important;
}

/* =========================
   HOMEPAGE
========================= */

.page-index .site-content,
.page-index .store-text,
.page-index .text-content {
  display: none !important;
}

.end-home {
  padding-bottom: 80px;
}

/* HERO */
.end-home-hero {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(5,5,5,0.88) 0%, rgba(5,5,5,0.72) 40%, rgba(5,5,5,0.35) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.end-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 28%, rgba(228,198,124,0.12), transparent 18%),
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.72) 100%);
  pointer-events: none;
}

.end-home-hero-inner {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.end-home-hero-content {
  max-width: 590px;
}

.end-mini-text {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}

.end-home-hero-content h1 {
  margin: 0 0 10px !important;
  font-size: clamp(72px, 8vw, 120px) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.07em !important;
}

.end-home-hero-content h1 .gold {
  color: var(--end-gold) !important;
}

.end-powered {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.56);
  font-size: 15px;
  font-weight: 700;
}

.end-powered strong {
  color: #fff;
}

.end-home-hero-content p {
  margin: 0 0 30px !important;
  font-size: 18px !important;
  line-height: 1.65 !important;
  max-width: 560px;
}

.end-home-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.end-btn {
  min-height: 56px;
  padding: 0 28px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  transition: 0.2s ease;
}

.end-btn:hover {
  transform: translateY(-2px);
}

.end-btn-gold {
  background: linear-gradient(135deg, #e7cc87, #c9a75c);
  color: #121212 !important;
  box-shadow: 0 10px 28px rgba(228,198,124,0.18);
}

.end-btn-dark {
  background: rgba(255,255,255,0.06);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.08);
}

.end-home-hero-right {
  min-height: 520px;
  position: relative;
}

.end-floating-logo {
  position: absolute;
  left: 0;
  top: 48%;
  transform: translateY(-50%);
  width: 360px;
  min-height: 110px;
  padding: 26px 30px;
  border-radius: 26px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--end-shadow);
}

.end-floating-logo img {
  max-height: 78px;
  width: auto;
}

.end-hero-glow {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228,198,124,0.28), transparent 70%);
  filter: blur(10px);
}

/* SECTIONS */
.end-section {
  padding: 78px 0 0;
}

.end-section-header {
  text-align: center;
  margin-bottom: 34px;
}

.end-section-header h2 {
  margin: 0 0 12px !important;
  font-size: clamp(36px, 4vw, 58px) !important;
  line-height: 1 !important;
}

.end-section-header h2 .gold {
  color: var(--end-gold) !important;
}

.end-section-header p {
  margin: 0 auto;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.7;
}

/* HOT SELLER / CATEGORIES */
.end-hot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.end-hot-card {
  min-height: 320px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(18,18,18,0.94), rgba(10,10,10,0.96));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--end-shadow);
  transition: 0.25s ease;
}

.end-hot-card:hover {
  transform: translateY(-6px);
  border-color: rgba(228,198,124,0.22);
}

.end-hot-card .image,
.end-hot-card img,
.end-hot-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.end-hot-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(0,0,0,0.86) 100%);
}

.end-hot-info {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}

.end-hot-info h3 {
  margin: 0 0 10px !important;
  font-size: 24px !important;
}

.end-hot-info span {
  display: inline-flex;
  min-height: 36px;
  padding: 0 16px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

/* FEATURES */
.end-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.end-feature-card {
  min-height: 270px;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(17,17,17,0.94), rgba(10,10,10,0.98));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--end-shadow);
}

.end-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(228,198,124,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--end-gold);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 24px;
}

.end-feature-card h3 {
  margin: 0 0 18px !important;
  font-size: 28px !important;
}

.end-feature-card p {
  margin: 0 !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
}

/* RECENT PAYMENTS */
.end-payments-box {
  border-radius: 28px;
  padding: 44px 26px 20px;
  background: linear-gradient(180deg, rgba(12,12,12,0.94), rgba(8,8,8,0.98));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--end-shadow);
}

.end-payments-featured {
  min-height: 250px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 20px;
  background:
    radial-gradient(circle at center, rgba(228,198,124,0.12), transparent 45%),
    linear-gradient(180deg, rgba(12,12,12,0.8), rgba(10,10,10,0.96));
  border: 1px solid rgba(255,255,255,0.06);
}

.end-payments-featured-inner img {
  width: 90px;
  height: 90px;
  border-radius: 22px;
  object-fit: cover;
  margin-bottom: 14px;
}

.end-payments-featured-inner h4 {
  margin: 0 0 8px !important;
  font-size: 34px !important;
}

.end-payments-featured-inner strong {
  display: block;
  color: var(--end-gold);
  font-size: 28px;
  font-weight: 900;
}

.end-payments-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.end-payment-mini {
  min-height: 92px;
  border-radius: 18px;
  padding: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 12px;
}

.end-payment-mini img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
}

.end-payment-mini strong {
  display: block;
  font-size: 18px;
  color: #fff;
}

.end-payment-mini span {
  display: block;
  font-size: 14px;
  color: var(--end-muted);
}

.end-payment-mini b {
  color: var(--end-gold);
  font-size: 18px;
}

/* REVIEWS */
.end-review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.end-review-card {
  min-height: 280px;
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(16,16,16,0.94), rgba(10,10,10,0.98));
  border: 1px solid rgba(255,255,255,0.06);
}

.end-review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.end-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(228,198,124,0.16);
  color: var(--end-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
}

.end-review-top strong {
  display: block;
  font-size: 22px;
}

.end-review-top span {
  display: block;
  font-size: 14px;
  color: var(--end-muted);
}

.end-stars {
  margin-bottom: 16px;
  color: var(--end-gold);
  font-size: 18px;
  letter-spacing: 2px;
}

.end-review-card p {
  margin: 0 !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
}

/* WHY CHOOSE US */
.end-two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.end-big-card {
  min-height: 260px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(16,16,16,0.94), rgba(10,10,10,0.98));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--end-shadow);
}

.end-big-card.goldish {
  background:
    radial-gradient(circle at 80% 0%, rgba(228,198,124,0.10), transparent 35%),
    linear-gradient(180deg, rgba(16,16,16,0.94), rgba(10,10,10,0.98));
}

.end-big-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.end-big-top h3 {
  margin: 0 !important;
  font-size: 30px !important;
}

.end-big-card p {
  margin: 0 0 26px !important;
  font-size: 18px !important;
  line-height: 1.75 !important;
}

.end-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--end-gold) !important;
  font-weight: 800;
  font-size: 18px;
}

/* ACHIEVEMENTS */
.end-achievements {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 120px;
  flex-wrap: wrap;
}

.end-achievement {
  text-align: center;
}

.end-achievement strong {
  display: block;
  font-size: clamp(52px, 6vw, 96px);
  line-height: 1;
  font-weight: 900;
}

.end-achievement.gold strong {
  color: var(--end-gold);
}

.end-achievement span {
  display: block;
  margin-top: 8px;
  color: var(--end-muted);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* FAQ */
.end-faq-box {
  max-width: 760px;
  margin: 0 auto;
}

.end-faq-search {
  min-height: 64px;
  border-radius: 999px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
  color: rgba(255,255,255,0.42);
  font-size: 18px;
}

.end-faq-list {
  display: grid;
  gap: 14px;
}

.end-faq-item {
  min-height: 78px;
  border-radius: 20px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(17,17,17,0.94), rgba(10,10,10,0.98));
  border: 1px solid rgba(255,255,255,0.06);
}

.end-faq-item-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.end-faq-item-left .end-icon-box {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  border-radius: 12px;
  font-size: 16px;
}

.end-faq-item strong {
  font-size: 18px;
  color: #fff;
}

/* =========================
   CATEGORY PAGE
========================= */

.end-category-page {
  padding: 46px 0 80px;
}

.end-category-hero {
  position: relative;
  min-height: 240px;
  border-radius: 30px;
  overflow: hidden;
  padding: 36px 36px;
  margin-bottom: 28px;
  background-image:
    linear-gradient(90deg, rgba(7,7,7,0.86), rgba(7,7,7,0.72)),
    var(--category-banner);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--end-shadow);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.end-category-hero h1 {
  margin: 0 0 8px !important;
  font-size: clamp(38px, 4vw, 62px) !important;
  line-height: 1 !important;
}

.end-category-hero p {
  margin: 0 !important;
  max-width: 620px;
  font-size: 18px !important;
  line-height: 1.65 !important;
}

.end-category-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.end-search-pill,
.end-select-pill {
  min-width: 260px;
  min-height: 58px;
  border-radius: 18px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.56);
  font-weight: 600;
}

.end-products-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 26px !important;
}

.end-products-grid .store-product,
.store-products-images .store-product,
.store-products-list .store-product {
  overflow: hidden !important;
  padding: 0 !important;
  border-radius: 28px !important;
  background: linear-gradient(180deg, rgba(17,17,17,0.94), rgba(10,10,10,0.98)) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  transition: 0.22s ease !important;
}

.end-products-grid .store-product:hover,
.store-products-images .store-product:hover,
.store-products-list .store-product:hover {
  transform: translateY(-5px);
  border-color: rgba(228,198,124,0.20) !important;
}

.end-products-grid .store-product img,
.store-products-images .store-product img,
.store-products-list .store-product img {
  width: 100% !important;
  height: 260px !important;
  object-fit: cover !important;
  border-radius: 0 !important;
}

.end-products-grid .store-product .body,
.end-products-grid .store-product .content,
.end-products-grid .store-product .store-product-content,
.store-products-images .store-product .body,
.store-products-list .store-product .body {
  padding: 22px !important;
}

.end-products-grid .store-product h3,
.end-products-grid .store-product .title,
.end-products-grid .store-product .name,
.store-products-images .store-product h3,
.store-products-images .store-product .title,
.store-products-images .store-product .name {
  font-size: 20px !important;
  line-height: 1.35 !important;
  color: #fff !important;
}

.end-products-grid .store-product .price,
.store-products-images .store-product .price {
  font-size: 18px !important;
  color: var(--end-gold) !important;
  font-weight: 900 !important;
}

.end-products-grid .store-product .btn,
.store-products-images .store-product .btn,
.store-products-list .store-product .btn {
  width: 100% !important;
  min-height: 50px !important;
  border-radius: 16px !important;
}

/* =========================
   PACKAGE PAGE
========================= */

.end-package-page {
  padding: 46px 0 80px;
}

.end-package-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(340px, 0.9fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}

.end-package-media-card,
.end-package-side,
.end-package-description-card,
.end-package-extra-card {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(16,16,16,0.94), rgba(10,10,10,0.98));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--end-shadow);
}

.end-package-media-card {
  padding: 20px;
  overflow: hidden;
}

.end-package-media-card img {
  width: 100%;
  border-radius: 22px !important;
}

.end-package-side {
  padding: 24px;
}

.end-package-side h1 {
  margin: 0 0 10px !important;
  font-size: 34px !important;
  line-height: 1.2 !important;
}

.end-package-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.end-tag {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.end-package-price {
  margin: 0 0 18px;
  font-size: 44px;
  line-height: 1;
  color: var(--end-gold);
  font-weight: 900;
}

.end-package-side .store-product,
.end-package-side .package-actions,
.end-package-side .actions {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.end-package-side .btn,
.end-package-side button,
.end-package-side input[type="submit"] {
  width: 100% !important;
  min-height: 58px !important;
  border-radius: 18px !important;
  font-size: 18px !important;
}

.end-package-links {
  margin: 14px 0 18px;
}

.end-package-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  background: rgba(239,77,77,0.16);
  color: #ff7979 !important;
  border: 1px solid rgba(239,77,77,0.24);
  font-weight: 700;
}

.end-package-help {
  margin-top: 18px;
  min-height: 70px;
  border-radius: 20px;
  padding: 0 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.end-package-help strong {
  color: #fff;
  font-size: 17px;
}

.end-discord-mini {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e7cc87, #c9a75c);
  color: #121212 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.end-package-description-card,
.end-package-extra-card {
  padding: 28px;
}

.end-package-description-card h2,
.end-package-extra-card h2 {
  margin: 0 0 18px !important;
  font-size: 24px !important;
}

.end-package-description-card p,
.end-package-description-card li,
.end-package-extra-card p,
.end-package-extra-card li {
  font-size: 18px !important;
  line-height: 1.8 !important;
}

.end-package-description-card ul,
.end-package-extra-card ul {
  padding-left: 22px;
}

.end-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 18px 0;
}

/* =========================
   FOOTER
========================= */

footer,
.footer,
.site-footer {
  margin-top: 50px;
  background: rgba(8,8,8,0.92) !important;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55) !important;
  text-align: center !important;
  padding: 28px 0 !important;
}

footer img,
.footer img,
.site-footer img,
footer svg,
.footer svg,
.site-footer svg {
  max-width: 90px !important;
  max-height: 46px !important;
  width: auto !important;
  height: auto !important;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .end-hot-grid,
  .end-feature-grid,
  .end-review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .end-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .end-home-hero-inner {
    grid-template-columns: 1fr;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .end-home-hero-right {
    min-height: 240px;
  }

  .end-floating-logo {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 440px;
  }

  .end-hero-glow {
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .end-package-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  header .container,
  .header .container,
  .site-header .container,
  .navbar .container,
  .site-header-inner {
    flex-wrap: wrap !important;
    justify-content: center !important;
    padding: 14px 0 !important;
  }

  nav,
  .navigation,
  .navigation-horizontal,
  .navbar-nav,
  .site-nav,
  nav ul,
  .navigation ul,
  .navigation-horizontal ul,
  .navbar-nav ul,
  .site-nav ul {
    gap: 16px !important;
    flex-wrap: wrap !important;
  }

  nav a,
  .navigation a,
  .navigation-horizontal a,
  .navbar-nav a,
  .site-nav a {
    padding: 10px 0 !important;
  }

  nav a::after,
  .navigation a::after,
  .navigation-horizontal a::after,
  .navbar-nav a::after,
  .site-nav a::after {
    bottom: 2px !important;
  }

  .end-two-col,
  .end-payments-row,
  .end-achievements {
    grid-template-columns: 1fr;
  }

  .end-payments-row {
    display: grid;
  }

  .end-category-hero {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .end-container,
  .container,
  .container-fluid,
  .site-content,
  .site-home-categories {
    width: min(100% - 28px, 1280px) !important;
  }

  .end-home-hero {
    min-height: auto;
  }

  .end-home-hero-inner {
    min-height: auto;
  }

  .end-home-hero-content h1 {
    font-size: 58px !important;
  }

  .end-home-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .end-btn {
    width: 100%;
  }

  .end-hot-grid,
  .end-feature-grid,
  .end-review-grid,
  .end-products-grid {
    grid-template-columns: 1fr !important;
  }
  
  .end-category-description,
.end-category-description p,
.end-category-description div,
.end-category-description span {
  color: rgba(255,255,255,0.68) !important;
  font-size: 18px !important;
  line-height: 1.65 !important;
  max-width: 720px;
  margin: 0 !important;
}

.end-category-description * {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

  .end-two-col {
    grid-template-columns: 1fr;
  }

  .end-achievements {
    gap: 36px;
  }

  .end-category-tools {
    width: 100%;
  }

  .end-search-pill,
  .end-select-pill {
    width: 100%;
  }
}

/* =========================
   CATEGORY DESCRIPTION WIDTH FIX
========================= */

.end-category-hero {
  min-height: auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: flex-start !important;
  gap: 28px !important;
  padding: 36px 42px !important;
}

.end-category-hero > div:first-child {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.end-category-hero h1 {
  font-size: clamp(34px, 3vw, 52px) !important;
  margin-bottom: 14px !important;
}

.end-category-description {
  width: 100% !important;
  max-width: 100% !important;
}

.end-category-description,
.end-category-description p,
.end-category-description div,
.end-category-description span,
.end-category-description li {
  max-width: 100% !important;
  color: rgba(255,255,255,0.78) !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  margin: 0 0 8px !important;
}

.end-category-description h1,
.end-category-description h2,
.end-category-description h3,
.end-category-description h4 {
  font-size: 16px !important;
  line-height: 1.25 !important;
  margin: 0 0 8px !important;
  color: #fff !important;
}

.end-category-description ul,
.end-category-description ol {
  margin: 8px 0 10px 18px !important;
  padding-left: 12px !important;
}

.end-category-description br {
  display: none !important;
}

.end-category-tools {
  min-width: 330px !important;
  justify-content: flex-end !important;
}

/* Çok uzun açıklamalarda kart fazla uzamasın */
.end-category-description {
  max-height: 260px !important;
  overflow-y: auto !important;
  padding-right: 10px !important;
}

.end-category-description::-webkit-scrollbar {
  width: 5px;
}

.end-category-description::-webkit-scrollbar-thumb {
  background: rgba(228,198,124,0.35);
  border-radius: 999px;
}

/* Mobilde yine düzgün alta geçsin */
@media (max-width: 960px) {
  .end-category-hero {
    grid-template-columns: 1fr !important;
    padding: 28px 22px !important;
  }

  .end-category-tools {
    min-width: 0 !important;
    width: 100% !important;
  }

  .end-category-description {
    max-height: none !important;
    overflow: visible !important;
  }
}

/* =========================
   WHAT YOU GET SECTION
========================= */

.end-benefit-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.end-benefit-main {
  min-height: 390px;
  padding: 38px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 20%, rgba(228,198,124,0.14), transparent 34%),
    linear-gradient(180deg, rgba(18,18,18,0.96), rgba(8,8,8,0.98));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 22px 70px rgba(0,0,0,0.42);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.end-benefit-badge {
  width: fit-content;
  min-height: 36px;
  padding: 0 16px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(228,198,124,0.14);
  border: 1px solid rgba(228,198,124,0.24);
  color: var(--end-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.end-benefit-main h3 {
  margin: 0 0 18px !important;
  font-size: clamp(34px, 4vw, 58px) !important;
  line-height: 1 !important;
}

.end-benefit-main p {
  max-width: 760px;
  margin: 0 0 34px !important;
  color: rgba(255,255,255,0.68) !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
}

.end-benefit-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.end-benefit-stats div {
  min-height: 110px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.end-benefit-stats strong {
  display: block;
  color: var(--end-gold);
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 8px;
}

.end-benefit-stats span {
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  font-weight: 700;
}

.end-benefit-list {
  display: grid;
  gap: 16px;
}

.end-benefit-item {
  min-height: 118px;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(17,17,17,0.96), rgba(8,8,8,0.98));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 16px 42px rgba(0,0,0,0.28);
  display: flex;
  align-items: center;
  gap: 18px;
}

.end-benefit-item .end-icon-box {
  flex: 0 0 54px;
  margin: 0;
}

.end-benefit-item h4 {
  margin: 0 0 8px !important;
  font-size: 20px !important;
}

.end-benefit-item p {
  margin: 0 !important;
  color: rgba(255,255,255,0.62) !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
}

@media (max-width: 1000px) {
  .end-benefit-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .end-benefit-main {
    padding: 26px;
  }

  .end-benefit-stats {
    grid-template-columns: 1fr;
  }

  .end-benefit-item {
    align-items: flex-start;
  }
}

/* =========================
   ADD TO BASKET CLICK FIX
========================= */

.end-category-content,
.end-category-main,
.end-products-grid,
.end-products-grid .store-product,
.end-products-grid .store-product * {
  pointer-events: auto !important;
}

.end-products-grid .store-product {
  position: relative !important;
  z-index: 2 !important;
}

.end-products-grid .store-product::before,
.end-products-grid .store-product::after {
  pointer-events: none !important;
}

.end-products-grid .store-product form,
.end-products-grid .store-product button,
.end-products-grid .store-product .btn,
.end-products-grid .store-product .button,
.end-products-grid .store-product input[type="submit"],
.end-products-grid .store-product a[href*="checkout"],
.end-products-grid .store-product a[href*="basket"] {
  position: relative !important;
  z-index: 50 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}

.end-products-grid .store-product .btn,
.store-products-images .store-product .btn,
.store-products-list .store-product .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* =========================
   NEW INDEX SECTIONS
========================= */

.end-framework-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.end-framework-card {
  min-height: 230px;
  padding: 26px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 80% 0%, rgba(228,198,124,0.08), transparent 38%),
    linear-gradient(180deg, rgba(17,17,17,0.96), rgba(8,8,8,0.98));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 16px 48px rgba(0,0,0,0.32);
}

.end-framework-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  margin-bottom: 22px;
  background: rgba(228,198,124,0.16);
  border: 1px solid rgba(228,198,124,0.20);
  color: var(--end-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  font-size: 18px;
}

.end-framework-card h3 {
  margin: 0 0 12px !important;
  font-size: 22px !important;
}

.end-framework-card p {
  margin: 0 !important;
  color: rgba(255,255,255,0.62) !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
}

.end-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.end-process-card {
  min-height: 240px;
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(17,17,17,0.96), rgba(8,8,8,0.98));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 16px 48px rgba(0,0,0,0.32);
  position: relative;
  overflow: hidden;
}

.end-process-card::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(228,198,124,0.13), transparent 70%);
}

.end-process-card span {
  display: block;
  color: var(--end-gold);
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
  margin-bottom: 34px;
}

.end-process-card h3 {
  margin: 0 0 12px !important;
  font-size: 22px !important;
}

.end-process-card p {
  margin: 0 !important;
  color: rgba(255,255,255,0.62) !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
}

.end-cta-card {
  min-height: 320px;
  padding: 42px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 78% 30%, rgba(228,198,124,0.15), transparent 34%),
    linear-gradient(135deg, rgba(18,18,18,0.98), rgba(7,7,7,0.98));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 70px rgba(0,0,0,0.42);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
}

.end-cta-card h2 {
  margin: 0 0 16px !important;
  font-size: clamp(34px, 4vw, 58px) !important;
  line-height: 1 !important;
}

.end-cta-card p {
  margin: 0 !important;
  max-width: 780px;
  color: rgba(255,255,255,0.66) !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
}

.end-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .end-framework-grid,
  .end-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .end-cta-card {
    grid-template-columns: 1fr;
  }

  .end-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .end-framework-grid,
  .end-process-grid {
    grid-template-columns: 1fr;
  }

  .end-cta-card {
    padding: 28px;
  }

  .end-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* =========================
   HEADER FIX
========================= */

.toggle,
.navbar-toggle,
.menu-toggle,
button[aria-label="Toggle menu"],
button[title="Toggle menu"] {
  display: none !important;
}

.end-header {
  width: 100%;
  background: rgba(8, 8, 8, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(10px);
}

.end-header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.end-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff !important;
}

.end-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 12px;
}

.end-brand-text strong {
  display: block;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.end-brand-text span {
  display: block;
  color: rgba(255,255,255,0.52);
  font-size: 12px;
  margin-top: 4px;
}

.end-custom-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.end-custom-nav a {
  color: rgba(255,255,255,0.72) !important;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
}

.end-custom-nav a:hover {
  color: #fff !important;
}

.end-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.end-header-pill {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.end-header-pill-gold {
  background: linear-gradient(135deg, #e7cc87, #c9a75c);
  color: #121212 !important;
  box-shadow: 0 10px 28px rgba(228,198,124,0.18);
}

/* =========================
   FOOTER FIX
========================= */

.end-footer {
  margin-top: 50px;
  padding: 30px 0 40px;
  background: rgba(8,8,8,0.94);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.end-footer-inner {
  text-align: center;
}

.end-footer-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.end-footer-payments span {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.end-footer-copy {
  margin: 0 !important;
  color: rgba(255,255,255,0.54) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

/* Eski footer ödeme ikonlarını gizle */
footer ul,
.footer ul,
.site-footer ul,
footer li,
.footer li,
.site-footer li,
footer img,
.footer img,
.site-footer img,
footer svg,
.footer svg,
.site-footer svg {
  list-style: none !important;
}

/* =========================
   PRODUCT CARD FIX
========================= */

.end-store-product-card {
  overflow: hidden !important;
  padding: 0 !important;
  border-radius: 28px !important;
  background: linear-gradient(180deg, rgba(17,17,17,0.96), rgba(8,8,8,0.98)) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  box-shadow: 0 18px 48px rgba(0,0,0,0.34) !important;
}

.end-store-product-thumb {
  display: block;
  width: 100%;
}

.end-store-product-thumb img,
.end-store-product-placeholder {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.end-store-product-placeholder {
  background: linear-gradient(135deg, #171717, #0d0d0d);
}

.end-store-product-body {
  padding: 22px;
}

.end-store-product-title {
  display: block;
  margin-bottom: 14px;
  color: #fff !important;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
}

.end-store-product-price {
  margin-bottom: 18px;
  color: var(--end-gold) !important;
  font-size: 18px;
  font-weight: 900;
}

.end-store-product-actions {
  display: grid;
  gap: 12px;
}

.end-store-product-details {
  min-height: 46px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.end-store-product-buy {
  width: 100%;
}

.end-store-product-buy .btn,
.end-store-product-buy button,
.end-store-product-buy input[type="submit"] {
  width: 100% !important;
  min-height: 50px !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, #e7cc87, #c9a75c) !important;
  color: #121212 !important;
  border: 0 !important;
  font-weight: 900 !important;
  cursor: pointer !important;
}

/* Tebex basket row düzgün görünsün */
.end-store-product-buy .quantity,
.end-store-product-buy .in-basket,
.end-store-product-buy .basket-quantity,
.end-store-product-buy .package-quantity {
  margin-top: 10px !important;
}

/* Tıklama fix */
.end-store-product-card,
.end-store-product-card * {
  pointer-events: auto !important;
}

.end-store-product-card::before,
.end-store-product-card::after {
  pointer-events: none !important;
}

/* =========================
   STORE INFORMATION SECTION
========================= */

.end-policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.end-policy-card {
  min-height: 220px;
  padding: 26px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 80% 0%, rgba(228,198,124,0.08), transparent 40%),
    linear-gradient(180deg, rgba(17,17,17,0.96), rgba(8,8,8,0.98));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 16px 42px rgba(0,0,0,0.30);
}

.end-policy-card h3 {
  margin: 0 0 12px !important;
  font-size: 22px !important;
}

.end-policy-card p {
  margin: 0 !important;
  color: rgba(255,255,255,0.64) !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .end-header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 18px 0;
  }

  .end-custom-nav {
    justify-content: center;
  }

  .end-policy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .end-header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .end-header-pill {
    width: 100%;
  }
  
  .end-login-section {
  min-height: 70vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
}

.end-login-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(17,17,17,0.96), rgba(8,8,8,0.98));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 20px 60px rgba(0,0,0,0.38);
  text-align: center;
}

.end-login-card h1 {
  margin: 0 0 16px !important;
  font-size: 42px !important;
}

.end-login-card p {
  margin: 0 auto 28px !important;
  max-width: 460px;
  color: rgba(255,255,255,0.66) !important;
  font-size: 17px !important;
  line-height: 1.6 !important;
}

.end-login-form {
  display: grid;
  gap: 14px;
}

.end-login-form input {
  min-height: 56px;
  text-align: center;
}

.end-login-back {
  display: inline-flex;
  margin-top: 24px;
  color: rgba(255,255,255,0.58) !important;
  font-weight: 700;
}

/* =========================
   FINAL PRICE / LOGIN / BASKET FIX
========================= */

.end-store-product-price {
  margin-bottom: 18px !important;
  color: var(--end-gold) !important;
  font-size: 22px !important;
  font-weight: 900 !important;
}

.end-store-product-price strong {
  color: var(--end-gold) !important;
  font-size: 22px !important;
  font-weight: 900 !important;
}

.end-old-price {
  margin-left: 10px;
  color: rgba(255,255,255,0.42) !important;
  font-size: 15px !important;
  text-decoration: line-through;
}

/* Product card button fix */
.end-store-product-add,
.end-direct-add {
  width: 100% !important;
  min-height: 52px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #e7cc87, #c9a75c) !important;
  color: #121212 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 900 !important;
  font-size: 16px !important;
  cursor: pointer !important;
}

.end-store-product-details {
  width: 100% !important;
  min-height: 52px !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,0.055) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 850 !important;
  font-size: 16px !important;
}

/* Login page */
.end-login-section {
  min-height: 70vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
}

.end-login-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(17,17,17,0.96), rgba(8,8,8,0.98));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 20px 60px rgba(0,0,0,0.38);
  text-align: center;
}

.end-login-card h1 {
  margin: 0 0 16px !important;
  font-size: 42px !important;
}

.end-login-card p {
  margin: 0 auto 28px !important;
  max-width: 460px;
  color: rgba(255,255,255,0.66) !important;
  font-size: 17px !important;
  line-height: 1.6 !important;
}

.end-login-form {
  display: grid;
  gap: 14px;
}

.end-login-form input {
  min-height: 56px;
  text-align: center;
}

.end-login-back {
  display: inline-flex;
  margin-top: 24px;
  color: rgba(255,255,255,0.58) !important;
  font-weight: 700;
}

/* Basket / checkout page cleanup */
.page-checkout,
.page-basket,
body[class*="checkout"] {
  background: #060606 !important;
}

.page-checkout .site-content,
.page-basket .site-content,
body[class*="checkout"] .site-content {
  display: block !important;
  width: min(1100px, calc(100% - 48px)) !important;
  max-width: 1100px !important;
  margin: 60px auto !important;
}

.page-checkout main,
.page-basket main,
body[class*="checkout"] main {
  width: 100% !important;
}

.basket,
.basket-popup-content,
.basket-items,
.checkout,
.checkout-content,
.checkout-box,
.cart,
.cart-content {
  background: linear-gradient(180deg, rgba(17,17,17,0.96), rgba(8,8,8,0.98)) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 28px !important;
  color: #fff !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35) !important;
}

.basket-item,
.checkout-item,
.cart-item {
  background: rgba(255,255,255,0.035) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-radius: 18px !important;
  padding: 16px !important;
  margin-bottom: 14px !important;
}

.basket input,
.checkout input,
.cart input,
.basket select,
.checkout select,
.cart select {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  color: #fff !important;
  border-radius: 14px !important;
}

.basket .btn,
.checkout .btn,
.cart .btn,
.basket button,
.checkout button,
.cart button,
.basket input[type="submit"],
.checkout input[type="submit"],
.cart input[type="submit"] {
  min-height: 46px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #e7cc87, #c9a75c) !important;
  color: #121212 !important;
  font-weight: 900 !important;
}

/* Hide broken payment image bullets if Tebex renders them as list */
footer ul,
.site-footer ul,
.footer ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

footer li,
.site-footer li,
.footer li {
  list-style: none !important;
}

footer li::marker,
.site-footer li::marker,
.footer li::marker {
  content: "" !important;
}

/* =========================
   FINAL CHECKOUT / LOGIN / PRICE FIX
========================= */

.end-brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(228,198,124,0.12);
  border: 1px solid rgba(228,198,124,0.24);
  color: var(--end-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 950;
  box-shadow: 0 12px 32px rgba(228,198,124,0.12);
}

.end-header-pill,
.end-header-pill-gold {
  min-width: 96px;
  white-space: nowrap;
}

/* Price */
.end-store-product-price,
.end-package-price {
  margin-bottom: 18px !important;
  color: var(--end-gold) !important;
  font-size: 24px !important;
  font-weight: 950 !important;
}

.end-store-product-price strong,
.end-current-price {
  color: var(--end-gold) !important;
  font-size: 44px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

.end-store-product-price strong {
  font-size: 22px !important;
}

.end-old-price {
  margin-left: 12px !important;
  color: rgba(255,255,255,0.38) !important;
  font-size: 18px !important;
  text-decoration: line-through !important;
  font-weight: 700 !important;
}

.end-store-product-add,
.end-direct-add {
  width: 100% !important;
  min-height: 52px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #e7cc87, #c9a75c) !important;
  color: #121212 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 950 !important;
  font-size: 16px !important;
  cursor: pointer !important;
  border: 0 !important;
}

.end-store-product-details {
  width: 100% !important;
  min-height: 52px !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,0.055) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 850 !important;
  font-size: 16px !important;
}

/* Checkout page */
.end-checkout-section {
  min-height: 70vh;
  padding: 70px 0 100px;
}

.end-checkout-header {
  text-align: center;
  margin-bottom: 34px;
}

.end-checkout-header h1 {
  margin: 0 0 12px !important;
  font-size: clamp(42px, 5vw, 72px) !important;
  line-height: 1 !important;
}

.end-checkout-header .gold {
  color: var(--end-gold) !important;
}

.end-checkout-header p {
  margin: 0 auto !important;
  max-width: 720px;
  color: rgba(255,255,255,0.62) !important;
  font-size: 18px !important;
}

.end-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.end-checkout-items {
  display: grid;
  gap: 16px;
}

.end-checkout-item {
  min-height: 120px;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(17,17,17,0.96), rgba(8,8,8,0.98));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 16px 48px rgba(0,0,0,0.32);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.end-checkout-item h3 {
  margin: 0 0 10px !important;
  color: #fff !important;
  font-size: 24px !important;
}

.end-checkout-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.end-checkout-meta span {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.66);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
}

.end-checkout-item-price {
  color: var(--end-gold);
  font-size: 24px;
  font-weight: 950;
  white-space: nowrap;
}

.end-checkout-summary {
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 0%, rgba(228,198,124,0.10), transparent 36%),
    linear-gradient(180deg, rgba(17,17,17,0.96), rgba(8,8,8,0.98));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 18px 54px rgba(0,0,0,0.34);
  position: sticky;
  top: 120px;
}

.end-checkout-summary h2 {
  margin: 0 0 22px !important;
  font-size: 28px !important;
}

.end-summary-row {
  min-height: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.end-summary-row span {
  color: rgba(255,255,255,0.62);
  font-weight: 700;
}

.end-summary-row strong {
  color: var(--end-gold);
  font-size: 20px;
}

.end-checkout-pay {
  width: 100%;
  min-height: 54px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e7cc87, #c9a75c) !important;
  color: #121212 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  border: 0;
  cursor: pointer;
  font-size: 15px;
}

.end-checkout-popup {
  background: rgba(255,255,255,0.06) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
}

.end-checkout-back {
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: rgba(255,255,255,0.72) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.end-empty-basket {
  max-width: 620px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 30px;
  text-align: center;
  background: linear-gradient(180deg, rgba(17,17,17,0.96), rgba(8,8,8,0.98));
  border: 1px solid rgba(255,255,255,0.07);
}

.end-empty-basket h2 {
  margin: 0 0 12px !important;
  font-size: 36px !important;
}

.end-empty-basket p {
  margin: 0 0 24px !important;
}

/* Login page */
.end-login-section {
  min-height: 70vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
}

.end-login-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(17,17,17,0.96), rgba(8,8,8,0.98));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 20px 60px rgba(0,0,0,0.38);
  text-align: center;
}

.end-login-card h1 {
  margin: 0 0 16px !important;
  font-size: 42px !important;
}

.end-login-card p {
  margin: 0 auto 28px !important;
  max-width: 460px;
  color: rgba(255,255,255,0.66) !important;
  font-size: 17px !important;
  line-height: 1.6 !important;
}

.end-login-form {
  display: grid;
  gap: 14px;
}

.end-login-form input {
  min-height: 56px;
  text-align: center;
}

.end-login-back {
  display: inline-flex;
  margin-top: 24px;
  color: rgba(255,255,255,0.58) !important;
  font-weight: 700;
}

/* Tebex bottom legal bar should stay readable */
body > div[style*="position: fixed"],
body > iframe {
  z-index: 9999;
}

@media (max-width: 900px) {
  .end-checkout-grid {
    grid-template-columns: 1fr;
  }

  .end-checkout-summary {
    position: relative;
    top: auto;
  }
}

@media (max-width: 600px) {
  .end-checkout-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .end-checkout-item-price {
    font-size: 22px;
  }
}


/* =========================
   FINAL PACKAGE / LOGIN / PRICE FIX
========================= */

.end-brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(228,198,124,0.12);
  border: 1px solid rgba(228,198,124,0.24);
  color: var(--end-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 950;
  box-shadow: 0 12px 32px rgba(228,198,124,0.12);
}

.end-header-pill,
.end-header-pill-gold {
  min-width: 96px;
  white-space: nowrap;
}

/* Product card price */
.end-store-product-price {
  margin-bottom: 18px !important;
  color: var(--end-gold) !important;
  font-size: 22px !important;
  font-weight: 950 !important;
}

.end-store-product-price strong {
  color: var(--end-gold) !important;
  font-size: 22px !important;
  font-weight: 950 !important;
}

.end-package-price {
  margin: 18px 0 22px !important;
  color: var(--end-gold) !important;
  font-size: 44px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

.end-current-price {
  color: var(--end-gold) !important;
  font-size: 44px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

.end-old-price {
  margin-left: 12px !important;
  color: rgba(255,255,255,0.38) !important;
  font-size: 18px !important;
  text-decoration: line-through !important;
  font-weight: 700 !important;
}

/* Buttons */
.end-store-product-add,
.end-direct-add {
  width: 100% !important;
  min-height: 52px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #e7cc87, #c9a75c) !important;
  color: #121212 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 950 !important;
  font-size: 16px !important;
  cursor: pointer !important;
  border: 0 !important;
}

.end-store-product-details {
  width: 100% !important;
  min-height: 52px !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,0.055) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 850 !important;
  font-size: 16px !important;
}

/* Product detail image */
.end-package-media-card {
  overflow: hidden !important;
}

.end-package-media-card img {
  width: 100% !important;
  height: auto !important;
  max-height: 620px !important;
  object-fit: cover !important;
  border-radius: 22px !important;
  display: block !important;
}

/* Login page */
.end-login-section {
  min-height: 70vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
}

.end-login-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(17,17,17,0.96), rgba(8,8,8,0.98));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 20px 60px rgba(0,0,0,0.38);
  text-align: center;
}

.end-login-card h1 {
  margin: 0 0 16px !important;
  font-size: 42px !important;
}

.end-login-card p {
  margin: 0 auto 28px !important;
  max-width: 460px;
  color: rgba(255,255,255,0.66) !important;
  font-size: 17px !important;
  line-height: 1.6 !important;
}

.end-login-form {
  display: grid;
  gap: 14px;
}

.end-login-form input {
  min-height: 56px;
  text-align: center;
}

.end-login-back {
  display: inline-flex;
  margin-top: 24px;
  color: rgba(255,255,255,0.58) !important;
  font-weight: 700;
}

/* Hide duplicate package media if old package-media.twig still outputs images */
.end-package-media-card .media-slider img:not(:first-of-type),
.end-package-media-card .slider img:not(:first-of-type),
.end-package-media-card picture:not(:first-of-type) {
  display: none !important;
}

/* =========================
   FINAL FIX PACK
========================= */

.end-brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(228,198,124,0.12);
  border: 1px solid rgba(228,198,124,0.24);
  color: var(--end-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 950;
  box-shadow: 0 12px 32px rgba(228,198,124,0.12);
}

.end-header-pill,
.end-header-pill-gold {
  min-width: 96px;
  white-space: nowrap;
}

/* Prices */
.end-store-product-price {
  margin-bottom: 18px !important;
  color: var(--end-gold) !important;
  font-size: 22px !important;
  font-weight: 950 !important;
}

.end-store-product-price strong {
  color: var(--end-gold) !important;
  font-size: 22px !important;
  font-weight: 950 !important;
}

.end-package-price {
  margin: 18px 0 22px !important;
  color: var(--end-gold) !important;
  font-size: 44px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

.end-current-price {
  color: var(--end-gold) !important;
  font-size: 44px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

.end-old-price {
  margin-left: 12px !important;
  color: rgba(255,255,255,0.38) !important;
  font-size: 18px !important;
  text-decoration: line-through !important;
  font-weight: 700 !important;
}

/* Buttons */
.end-store-product-add,
.end-direct-add {
  width: 100% !important;
  min-height: 52px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #e7cc87, #c9a75c) !important;
  color: #121212 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 950 !important;
  font-size: 16px !important;
  cursor: pointer !important;
  border: 0 !important;
}

.end-store-product-details {
  width: 100% !important;
  min-height: 52px !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,0.055) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 850 !important;
  font-size: 16px !important;
}

/* Product detail image */
.end-package-media-card {
  overflow: hidden !important;
}

.end-package-media-card img {
  width: 100% !important;
  height: auto !important;
  max-height: 620px !important;
  object-fit: cover !important;
  border-radius: 22px !important;
  display: block !important;
}

/* Checkout */
.end-checkout-section {
  min-height: 70vh;
  padding: 70px 0 100px;
}

.end-checkout-header {
  text-align: center;
  margin-bottom: 34px;
}

.end-checkout-header h1 {
  margin: 0 0 12px !important;
  font-size: clamp(42px, 5vw, 72px) !important;
  line-height: 1 !important;
}

.end-checkout-header .gold {
  color: var(--end-gold) !important;
}

.end-checkout-header p {
  margin: 0 auto !important;
  max-width: 720px;
  color: rgba(255,255,255,0.62) !important;
  font-size: 18px !important;
}

.end-checkout-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 360px !important;
  gap: 24px !important;
  align-items: start !important;
}

.end-checkout-items {
  display: grid !important;
  gap: 16px !important;
}

.end-checkout-item {
  min-height: 120px;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(17,17,17,0.96), rgba(8,8,8,0.98));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 16px 48px rgba(0,0,0,0.32);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.end-checkout-item h3 {
  margin: 0 0 10px !important;
  color: #fff !important;
  font-size: 24px !important;
}

.end-checkout-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.end-checkout-meta span {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.66);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
}

.end-checkout-item-price {
  color: var(--end-gold);
  font-size: 24px;
  font-weight: 950;
  white-space: nowrap;
}

.end-checkout-summary {
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 0%, rgba(228,198,124,0.10), transparent 36%),
    linear-gradient(180deg, rgba(17,17,17,0.96), rgba(8,8,8,0.98));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 18px 54px rgba(0,0,0,0.34);
  position: sticky;
  top: 120px;
}

.end-checkout-summary h2 {
  margin: 0 0 22px !important;
  font-size: 28px !important;
}

.end-summary-row {
  min-height: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.end-summary-row span {
  color: rgba(255,255,255,0.62);
  font-weight: 700;
}

.end-summary-row strong {
  color: var(--end-gold);
  font-size: 20px;
}

.end-checkout-form {
  margin: 18px 0 0 !important;
}

.end-checkout-pay {
  width: 100%;
  min-height: 54px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e7cc87, #c9a75c) !important;
  color: #121212 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  border: 0;
  cursor: pointer;
  font-size: 15px;
}

.end-checkout-back {
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: rgba(255,255,255,0.72) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.end-empty-basket {
  max-width: 620px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 30px;
  text-align: center;
  background: linear-gradient(180deg, rgba(17,17,17,0.96), rgba(8,8,8,0.98));
  border: 1px solid rgba(255,255,255,0.07);
}

.end-empty-basket h2 {
  margin: 0 0 12px !important;
  font-size: 36px !important;
}

.end-empty-basket p {
  margin: 0 0 24px !important;
}

/* Login */
.end-login-section {
  min-height: 70vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
}

.end-login-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(17,17,17,0.96), rgba(8,8,8,0.98));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 20px 60px rgba(0,0,0,0.38);
  text-align: center;
}

.end-login-card h1 {
  margin: 0 0 16px !important;
  font-size: 42px !important;
}

.end-login-card p {
  margin: 0 auto 28px !important;
  max-width: 460px;
  color: rgba(255,255,255,0.66) !important;
  font-size: 17px !important;
  line-height: 1.6 !important;
}

.end-login-form {
  display: grid;
  gap: 14px;
}

.end-login-form input {
  min-height: 56px;
  text-align: center;
}

.end-login-back {
  display: inline-flex;
  margin-top: 24px;
  color: rgba(255,255,255,0.58) !important;
  font-weight: 700;
}

@media (max-width: 900px) {
  .end-checkout-grid {
    grid-template-columns: 1fr !important;
  }

  .end-checkout-summary {
    position: relative;
    top: auto;
  }
}

@media (max-width: 600px) {
  .end-checkout-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .end-checkout-item-price {
    font-size: 22px;
  }
}
  
  
  /* =========================
   HARD FINAL PACKAGE FIX
========================= */

.end-brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(228,198,124,0.12);
  border: 1px solid rgba(228,198,124,0.24);
  color: var(--end-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 950;
  box-shadow: 0 12px 32px rgba(228,198,124,0.12);
}

.end-store-product-price strong {
  color: var(--end-gold) !important;
  font-size: 22px !important;
  font-weight: 950 !important;
}

.end-package-price {
  margin: 18px 0 22px !important;
}

.end-current-price {
  color: var(--end-gold) !important;
  font-size: 44px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

.end-old-price {
  margin-left: 12px !important;
  color: rgba(255,255,255,0.38) !important;
  font-size: 18px !important;
  text-decoration: line-through !important;
  font-weight: 700 !important;
}

.end-store-product-add,
.end-direct-add {
  width: 100% !important;
  min-height: 52px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #e7cc87, #c9a75c) !important;
  color: #121212 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 950 !important;
  font-size: 16px !important;
  cursor: pointer !important;
  border: 0 !important;
}

.end-store-product-details {
  width: 100% !important;
  min-height: 52px !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,0.055) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 850 !important;
  font-size: 16px !important;
}

.end-package-media-card {
  overflow: hidden !important;
}

.end-package-media-card img {
  width: 100% !important;
  height: auto !important;
  max-height: 620px !important;
  object-fit: cover !important;
  border-radius: 22px !important;
  display: block !important;
}

/* Login */
.end-login-section {
  min-height: 70vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
}

.end-login-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(17,17,17,0.96), rgba(8,8,8,0.98));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 20px 60px rgba(0,0,0,0.38);
  text-align: center;
}

.end-login-card h1 {
  margin: 0 0 16px !important;
  font-size: 42px !important;
}

.end-login-card p {
  margin: 0 auto 28px !important;
  max-width: 460px;
  color: rgba(255,255,255,0.66) !important;
  font-size: 17px !important;
  line-height: 1.6 !important;
}

.end-login-form {
  display: grid;
  gap: 14px;
}

.end-login-form input {
  min-height: 56px;
  text-align: center;
}

.end-login-back {
  display: inline-flex;
  margin-top: 24px;
  color: rgba(255,255,255,0.58) !important;
  font-weight: 700;
}.end-policy-grid {
    grid-template-columns: 1fr;
  }
}

.end-login-section {
  min-height: 70vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
}

.end-login-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(17,17,17,0.96), rgba(8,8,8,0.98));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 20px 60px rgba(0,0,0,0.38);
  text-align: center;
}

.end-login-card h1 {
  margin: 0 0 16px !important;
  font-size: 42px !important;
}

.end-login-card p {
  margin: 0 auto 28px !important;
  max-width: 460px;
  color: rgba(255,255,255,0.66) !important;
  font-size: 17px !important;
  line-height: 1.6 !important;
}

.end-login-form {
  display: grid;
  gap: 14px;
}

.end-login-form input {
  min-height: 56px;
  text-align: center;
}

.end-login-back {
  display: inline-flex;
  margin-top: 24px;
  color: rgba(255,255,255,0.58) !important;
  font-weight: 700;
}

/* =========================
   AXON LOGO + COMMUNITY BANNER
========================= */

.end-brand-logo-only {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 180px !important;
  text-decoration: none !important;
}

.end-header-logo-img {
  width: 185px !important;
  max-width: 185px !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
  filter: drop-shadow(0 10px 24px rgba(255,255,255,0.12));
}

.end-brand-logo-only .end-brand-text,
.end-brand-logo-only .end-brand-mark {
  display: none !important;
}

.end-community-banner-card {
  width: min(760px, 100%) !important;
  aspect-ratio: 16 / 9 !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 70% 30%, rgba(228,198,124,0.20), transparent 42%),
    linear-gradient(180deg, rgba(18,18,18,0.96), rgba(8,8,8,0.98)) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow:
    0 28px 90px rgba(0,0,0,0.55),
    0 0 90px rgba(228,198,124,0.12) !important;
  position: relative !important;
  z-index: 2 !important;
}

.end-community-banner-card img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
}

.end-community-banner-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.18)),
    radial-gradient(circle at 50% 100%, rgba(228,198,124,0.16), transparent 45%);
  pointer-events: none;
}

@media (max-width: 1000px) {
  .end-header-logo-img {
    width: 145px !important;
    max-width: 145px !important;
  }

  .end-community-banner-card {
    width: 100% !important;
    border-radius: 22px !important;
  }
}

@media (max-width: 650px) {
  .end-header-logo-img {
    width: 125px !important;
    max-width: 125px !important;
  }

  .end-brand-logo-only {
    min-width: auto !important;
  }
}