/* ===============================
   Normal RDP Product Page Styles
   Modern Orange Theme with Flair
================================= */

:root {
  --cta: #ff6a00;
  --cta-hover: #e35a00;
  --text: #0b1b2b;
  --muted: #5b6b7a;
  --bg-light: #f9fbfc;
  --border: #e6edf3;
  --radius: 14px;
  --shadow: 0 8px 28px rgba(11, 29, 50, 0.08);
  --background-width: 1500px;
  --container: 1200px;
}

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


.snt-rdp-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 20px 40px;
  position: relative;
  z-index: 1;
}

/* Create a wider background layer behind the container */
.snt-rdp-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--background-width);
  height: 100%;
  transform: translateX(-50%);
  background:
    linear-gradient(to right, #FCFEFF 0%, #ffe8cc 50%, #FCFEFF 100%),
    linear-gradient(to bottom, #ffe3d3 0%, #fff 15%, #fff 100%);
  z-index: -1;
  border-radius: 0 0 60px 60px; /* optional aesthetic touch */
}

.snt-rdp-container > * {
  position: relative;
  z-index: 1;
}

/* ========== HERO SECTION ========== */
.snt-hero {
  text-align: center;
  padding: 20px 20px 50px;
  margin-bottom: 60px;
}

.snt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #fff;
  border: 2px solid var(--cta);
  border-radius: 50px;
  color: var(--cta);
  font-size: 0.85em;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.15);
  transition: all 0.3s ease;
}

.snt-hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 106, 0, 0.25);
}

.snt-hero h1 {
  font-size: 3.5em;
  margin: 0 0 20px 0;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.snt-hero h1 .highlight {
  color: var(--cta);
  position: relative;
  display: inline-block;
}

/* Smooth single-stroke underline */
.snt-hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: -2%;
  width: 104%;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 8'%3E%3Cpath d='M2,4 Q125,2 250,4 T498,4' stroke='%23ff8c3c' stroke-width='4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.85;
}

.snt-hero-subtitle {
  font-size: 1.25em;
  color: #4a4a4a;
  margin: 0 auto 35px;
  font-weight: 400;
  max-width: 700px;
  line-height: 1.7;
}

/* Hero Meta Pills */
.snt-hero-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.snt-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.95em;
  font-weight: 600;
  padding: 12px 24px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.snt-hero-meta-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.15);
}

.snt-hero-meta-icon {
  font-size: 1.3em;
}

/* ========== PRODUCT CARD ========== */
.snt-product-card {
  background: #fff;
  border-radius: 24px;
  padding: 50px;
  margin-bottom: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 106, 0, 0.1);
  transition: all 0.3s ease;
}

.snt-product-card:hover {
  box-shadow: 0 16px 50px rgba(255, 106, 0, 0.12);
  border-color: rgba(255, 106, 0, 0.2);
}

.snt-product-header {
  text-align: center;
  margin-bottom: 45px;
  border-bottom: 2px solid #f5f0e8;
  position: relative;
}

/* Decorative line accent */
.snt-product-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--cta), #ff8b1f);
  border-radius: 2px;
}

.snt-product-title {
  font-size: 2.3em;
  margin: 0 0 15px 0;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.snt-product-configuration {
  margin-top: 48px;
  margin-bottom: 6px;
  font-size: 1.25em;
  font-weight: 700;
  text-transform: uppercase;
  color: #ff7a00; /* use accent color for continuity */
  letter-spacing: 0.5px;
  text-align: center;
}

.snt-product-configuration::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff8a00, #ffa94d);
  border-radius: 3px;
  margin: 12px auto 0;
  opacity: 0.9;
}

.snt-product-subtext {
  text-align: center;
  font-size: 1.05rem;
  color: #2a2a2a;
  opacity: 0.85;
  margin-bottom: 35px;
  margin-top: 4px;
}

.snt-product-configuration::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #ff9d42;
  border-radius: 2px;
  margin: 10px auto 0;
  opacity: 0.7;
}

.snt-product-desc {
  font-size: 1.15em;
  color: #666;
  margin: 0 auto;
  line-height: 1.7;
  max-width: 800px;
}

/* ========== SPECIFICATIONS GRID ========== */
.snt-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.snt-spec-item {
  background: linear-gradient(135deg, #fff8f0 0%, #ffe8cc 100%);
  border: 2px solid #ffd699;
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover shimmer effect */
.snt-spec-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.snt-spec-item:hover::before {
  opacity: 1;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.snt-spec-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.2);
  border-color: var(--cta);
}

.snt-spec-icon {
  font-size: 2.8em;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(255, 106, 0, 0.2));
}

.snt-spec-label {
  font-size: 0.8em;
  color: #999;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
}

.snt-spec-value {
  font-size: 1.2em;
  color: var(--text);
  margin: 0;
  font-weight: 700;
}

/* ========== ALERT BOXES ========== */
.snt-alert {
  padding: 20px 24px;
  border-radius: 14px;
  margin: 30px 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.snt-alert-info {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border: 2px solid #90caf9;
  color: #0d47a1;
}

.snt-alert-warning {
  background: linear-gradient(135deg, #fff3cd 0%, #ffe0b2 100%);
  border: 2px solid #ffb74d;
  color: #e65100;
}

.snt-alert-icon {
  font-size: 1.6em;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.snt-alert-content {
  flex: 1;
  line-height: 1.7;
  font-size: 0.95em;
}

.snt-alert-content strong {
  color: var(--text);
  font-weight: 700;
}

.snt-alert-content a {
  color: var(--cta);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.snt-alert-content a:hover {
  color: var(--cta-hover);
}

/* ========== STORAGE SELECTOR ========== */
.snt-storage-section {
  margin: 50px 0;
  padding: 45px;
  background: linear-gradient(135deg, #fff8f0 0%, #ffe8cc 100%);
  border-radius: 24px;
  border: 2px solid #ffd699;
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.1);
}

.snt-storage-header {
  text-align: center;
  margin-bottom: 40px;
}

.snt-storage-title {
  font-size: 2em;
  color: var(--text);
  margin: 0 0 12px 0;
  font-weight: 800;
}

.snt-storage-subtitle {
  font-size: 1.05em;
  color: #666;
  margin: 0;
}

/* Storage Options Grid - FIXED 2x2 */
.snt-storage-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  justify-items: center;
}


.snt-storage-option {
  width: 100%;
  max-width: 300px;
}

.snt-storage-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.snt-storage-label {
  display: block;
  padding: 32px 20px;
  background: #fff;
  border: 3px solid #e0e0e0;
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Gradient overlay on hover */
.snt-storage-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.05) 0%, rgba(255, 139, 31, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.snt-storage-label:hover {
  border-color: var(--cta);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 106, 0, 0.2);
}

.snt-storage-label:hover::before {
  opacity: 1;
}

/* Selected state */
.snt-storage-input:checked + .snt-storage-label {
  background: linear-gradient(135deg, var(--cta) 0%, #ff8b1f 100%);
  border-color: var(--cta);
  box-shadow: 0 15px 35px rgba(255, 106, 0, 0.35);
  transform: translateY(-8px) scale(1.05);
}

.snt-storage-input:checked + .snt-storage-label::before {
  opacity: 0;
}

.snt-storage-input:checked + .snt-storage-label .snt-storage-size,
.snt-storage-input:checked + .snt-storage-label .snt-storage-price {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.snt-storage-input:checked + .snt-storage-label .snt-badge {
  background: #fff;
  color: var(--cta);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.snt-storage-size {
  font-size: 2em;
  font-weight: 900;
  color: var(--text);
  display: block;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  letter-spacing: -1px;
}

.snt-storage-price {
  font-size: 1.4em;
  color: var(--cta);
  font-weight: 800;
  display: block;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.snt-storage-price small {
  font-size: 0.65em;
  font-weight: 600;
  opacity: 0.9;
}

/* Badges */
.snt-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.7em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  background: #f0f0f0;
  color: #666;
  transition: all 0.3s ease;
}

.snt-badge-popular {
  background: linear-gradient(135deg, #4caf50 0%, #43a047 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
  }
  50% {
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.6), 0 0 0 8px rgba(76, 175, 80, 0.1);
  }
}

.snt-storage-note {
  text-align: center;
  color: #666;
  font-size: 0.95em;
  line-height: 1.7;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  border: 2px dashed #ffd699;
}

/* ========== PRICE DISPLAY ========== */
.snt-price-display {
  text-align: center;
  padding: 45px;
  background: linear-gradient(135deg, #ffb366 0%, #ffc285 100%);
  border-radius: 24px;
  margin: 35px 0;
  box-shadow: 0 6px 20px rgba(255, 179, 102, 0.2);
  position: relative;
  overflow: hidden;
}

/* Soft shimmer */
.snt-price-display::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
  animation: shimmerPrice 3s infinite;
}

@keyframes shimmerPrice {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.snt-price-label {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.snt-price-amount {
  font-size: 4.5em;
  font-weight: 900;
  margin: 0;
  color: #fff;
  position: relative;
  z-index: 1;
  letter-spacing: -2px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.snt-price-order-now {
  font-size: 0.3em;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.snt-price-amount sup {
  font-size: 0.45em;
  font-weight: 700;
  opacity: 0.95;
  vertical-align: super;
}

.snt-price-period {
  font-size: 0.9em;
  opacity: 0.95;
}

/* ========== ORDER BUTTON ========== */
.snt-order-btn {
  display: block;
  width: 100%;
  padding: 24px 40px;
  background: linear-gradient(135deg, #ffb366 0%, #ffc285 100%);
  color: #fff;
  border: none;
  border-radius: 16px;
  font-size: 1.3em;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(255, 179, 102, 0.25);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sliding shine effect */
.snt-order-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.snt-order-btn:hover::before {
  left: 100%;
}

.snt-order-btn:hover {
  background: linear-gradient(135deg, #ffa352 0%, #ffb871 100%);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 28px rgba(255, 179, 102, 0.3);
  color: #fff;
  text-decoration: none;
}

.snt-order-btn:active {
  transform: translateY(-2px) scale(1);
}

/* ========== FEATURES LIST ========== */
.snt-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 35px;
}

.snt-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid #dee2e6;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.snt-feature:hover {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-color: #90caf9;
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(144, 202, 249, 0.3);
}

.snt-feature-icon {
  color: #4caf50;
  font-size: 1.6em;
  flex-shrink: 0;
  font-weight: 900;
  filter: drop-shadow(0 2px 4px rgba(76, 175, 80, 0.3));
}

.snt-feature-text {
  color: var(--text);
  font-size: 0.95em;
  margin: 0;
  font-weight: 600;
}

/* ========== INFO SECTIONS ========== */
.snt-info-section {
  background: #fff;
  border-radius: 20px;
  padding: 45px;
  margin-bottom: 35px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 106, 0, 0.08);
  transition: all 0.3s ease;
}

.snt-info-section:hover {
  box-shadow: 0 12px 32px rgba(255, 106, 0, 0.12);
  border-color: rgba(255, 106, 0, 0.15);
}

.snt-info-title {
  font-size: 1.8em;
  color: var(--text);
  margin: 0 0 25px 0;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 14px;
}

.snt-info-content {
  color: #4a4a4a;
  line-height: 1.8;
  font-size: 1.05em;
}

.snt-info-content p {
  margin: 0 0 18px 0;
  color: #4a4a4a;
}

.snt-info-content ul {
  padding-left: 28px;
  margin: 22px 0;
}

.snt-info-content li {
  margin-bottom: 14px;
  color: #4a4a4a;
  position: relative;
}

/* Custom bullet points */
.snt-info-content li::marker {
  color: var(--cta);
  font-size: 1.2em;
}

.snt-info-content strong {
  color: var(--text);
  font-weight: 700;
}

.snt-info-content a {
  color: var(--cta);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.snt-info-content a:hover {
  color: var(--cta-hover);
  border-bottom-color: var(--cta);
}

/* ========== COMPARISON BOX ========== */
.snt-comparison {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border: 2px solid #ffb74d;
  border-radius: 24px;
  padding: 45px;
  margin-top: 45px;
  margin-bottom: 45px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(255, 183, 77, 0.2);
}

.snt-comparison-title {
  font-size: 1.9em;
  color: var(--text);
  margin: 0 0 12px 0;
  font-weight: 800;
}

.snt-comparison p {
  color: #666;
  margin: 0 0 30px 0;
  font-size: 1.05em;
}

.snt-comparison-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.snt-comparison-link {
  padding: 14px 28px;
  background: #fff;
  color: var(--cta);
  border: 2px solid var(--cta);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.05em;
}

.snt-comparison-link:hover {
  background: var(--cta);
  color: #fff;
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.3);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .snt-rdp-container {
    padding: 40px 15px 0px;
  }

  .snt-hero h1 {
    font-size: 2.2em;
  }

  .snt-hero-subtitle {
    font-size: 1.1em;
  }

  .snt-hero-meta {
    flex-direction: column;
    gap: 12px;
  }

  .snt-hero-meta-item {
    width: 100%;
    justify-content: center;
  }

  .snt-product-card {
    padding: 30px 20px;
  }

  .snt-storage-section {
    padding: 30px 20px;
  }

  .snt-storage-options {
    grid-template-columns: 1fr;
  }

  .snt-specs-grid {
    grid-template-columns: 1fr;
  }

  .snt-price-amount {
    font-size: 3em;
  }

  .snt-info-section {
    padding: 30px 20px;
  }

  .snt-comparison {
    padding: 30px 20px;
  }

  .snt-comparison-links {
    flex-direction: column;
  }

  .snt-comparison-link {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .snt-hero h1 {
    font-size: 1.8em;
  }

  .snt-product-title {
    font-size: 1.6em;
  }

  .snt-storage-title {
    font-size: 1.5em;
  }

  .snt-order-btn {
    font-size: 1.1em;
    padding: 20px 30px;
  }
}
/* ===== Final Fixed Grid (SnTHostings Normal RDP) ===== */

.snt-storage-grid-fixed-wrap {
  position: relative;
  padding: 20px 0;
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

/* Main grid */
.snt-storage-grid-fixed {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(280px, 1fr)) !important;
  gap: 32px !important;
  justify-items: center !important;
  align-items: center !important;
  max-width: 900px !important;
  margin: 0 auto 40px !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .snt-storage-grid-fixed {
    grid-template-columns: 1fr !important;
    max-width: 400px !important;
  }
}

/* Each clean fixed card */
.snt-storage-grid-fixed .fixed-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(255, 106, 0, 0.15);
  box-shadow: 0 8px 24px rgba(11, 29, 50, 0.08);
  height: 200px;
  width: 100%;
  transition: all 0.25s ease;
  cursor: pointer;
}

.snt-storage-grid-fixed .fixed-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(255, 106, 0, 0.18);
}

/* Text */
.fixed-card .fixed-size {
  font-size: 1.9rem;
  font-weight: 800;
  color: #0b1b2b;
  margin-bottom: 6px;
}

.fixed-card .fixed-price {
  font-size: 1.2rem;
  color: #ff6a00;
  font-weight: 800;
  margin-bottom: 10px;
}

.fixed-card .fixed-badge {
  background: #f0f0f0;
  color: #555;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.fixed-card.popular .fixed-badge {
  background: linear-gradient(135deg, #4caf50, #43a047);
  color: #fff;
}

/* Hide broken layout by default */
.snt-storage-options {
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* When grid is ready */
.snt-storage-grid-fixed-wrap.is-ready {
  opacity: 1 !important;
}

/* JS off fallback */
noscript .snt-storage-options {
  opacity: 1 !important;
  height: auto !important;
  overflow: visible !important;
  pointer-events: auto !important;
}
/* ===== Active / Selected Card Highlight ===== */
.snt-storage-grid-fixed .fixed-card.active {
  border: 2px solid #ff8a00;
  box-shadow: 0 8px 30px rgba(255, 138, 0, 0.25);
  transform: translateY(-4px);
  transition: all 0.25s ease;
}

.snt-storage-grid-fixed .fixed-card.active .fixed-price {
  color: #ff8a00;
}

.snt-storage-grid-fixed .fixed-card:not(.active):hover {
  border: 1px solid rgba(255, 106, 0, 0.2);
}

.trust-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.trust-cta-inner h3 {
font-weight: 700; margin-bottom: 10px;
    text-align: center;
    padding-bottom: 30px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.trust-logos img {
  height: 36px;
  opacity: 0.8;
  filter: grayscale(100%) brightness(0.9);
  transition: all 0.3s ease;
}

.trust-logos img:hover {
  opacity: 1;
  filter: none;
  transform: scale(1.06);
}
.snt-payment-section {
  background: #fff;
  border-radius: 20px;
  padding: 45px;
  padding-bottom: 0px;
  margin-bottom: 35px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 106, 0, 0.08);
  transition: all 0.3s ease;
  z-index:0;
}

.snt-payment-section:hover {
  box-shadow: 0 12px 32px rgba(255, 106, 0, 0.12);
  border-color: rgba(255, 106, 0, 0.15);
}
.new-order-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 30px;
  background: linear-gradient(135deg, #ff7f50 0%, #ff4500 100%);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(255, 69, 0, 0.25);
  text-align: center;
  margin: 20px 0;
}

.new-order-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.new-order-btn:hover::before {
  left: 100%;
}

.new-order-btn:hover {
  background: linear-gradient(135deg, #ff6347 0%, #ff4500 100%);
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 32px rgba(255, 69, 0, 0.35);
  color: #fff;
  text-decoration: none;
}

.new-order-btn:active {
  transform: translateY(-3px) scale(1);
}

.new-order-btn .new-price-label {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.new-order-btn .new-price-amount {
  font-size: 2.2em;
  margin: 0;
  color: #fff;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.new-order-btn .new-price-amount sup {
  font-size: 0.4em;
  font-weight: 700;
  opacity: 0.9;
  vertical-align: super;
}

.new-order-btn .new-price-period {
  font-size: 0.7em;
  opacity: 0.9;
}

.new-order-btn .new-order-text {
  font-size: 1em;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}