/* ============================================================
   STORAGE SENSE — main.css
   Tokens · base · typography · buttons · header · footer
   All custom properties and classes are scoped with `ss-`.
   ============================================================ */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Brand blues */
  --ss-blue:        #1171BA;
  --ss-blue-hover:  #0E5F9E;
  --ss-blue-dark:   #0B4E82;
  --ss-blue-deep:   #08355A;
  --ss-blue-300:    #7FB4DC;
  --ss-blue-100:    #DEEBF7;
  --ss-blue-50:     #F1F7FC;

  /* Neutrals */
  --ss-ink:         #0A1A29;
  --ss-ink-soft:    #17364F;
  --ss-text:        #4C647A;
  --ss-text-dim:    #79909F;
  --ss-paper:       #FFFFFF;
  --ss-shell:       #F5F8FB;

  /* Support */
  --ss-amber:       #D9922B;
  --ss-amber-soft:  #FBEFD8;
  --ss-green:       #1E9E6A;
  --ss-green-soft:  #E2F4EC;

  /* Lines & shadows */
  --ss-line:        rgba(10, 26, 41, .085);
  --ss-line-mid:    rgba(10, 26, 41, .14);
  --ss-line-light:  rgba(255, 255, 255, .14);
  --ss-sh-xs:       0 1px 2px rgba(9, 30, 50, .05);
  --ss-sh-sm:       0 1px 2px rgba(9, 30, 50, .04), 0 6px 16px -6px rgba(9, 30, 50, .09);
  --ss-sh-md:       0 2px 6px rgba(9, 30, 50, .05), 0 20px 44px -18px rgba(9, 30, 50, .18);
  --ss-sh-lg:       0 2px 8px rgba(9, 30, 50, .06), 0 44px 90px -32px rgba(8, 53, 90, .34);

  /* Radii */
  --ss-r-xs: 10px;
  --ss-r-sm: 14px;
  --ss-r:    20px;
  --ss-r-lg: 28px;
  --ss-r-xl: 36px;
  --ss-r-pill: 999px;

  /* Type */
  --ss-display: "Bricolage Grotesque", "Plus Jakarta Sans", system-ui, sans-serif;
  --ss-body:    "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ss-mono:    "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Rhythm */
  --ss-gutter: 24px;
  --ss-section-y: clamp(50px, 6vw, 90px);
  --ss-header-h: 76px;
}

/* ---------- 2. Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ss-paper);
  color: var(--ss-text);
  font-family: var(--ss-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p  { margin: 0; }
button { font: inherit; color: inherit; }

::selection { background: var(--ss-blue); color: #fff; }

:focus-visible {
  outline: 2px solid var(--ss-blue);
  outline-offset: 3px;
  border-radius: 6px;
}

.ss-skip {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--ss-ink);
  color: #fff;
  border-radius: var(--ss-r-pill);
  font-size: .9rem;
}
.ss-skip:focus { left: 16px; }

/* ---------- 3. Layout helpers ---------- */
.ss-container {
  width: 100%;
  max-width: 1210px;
  margin-inline: auto;
  padding-inline: var(--ss-gutter);
}
.ss-container--narrow { max-width: 900px; }

.ss-section, .section { padding-block: var(--ss-section-y); position: relative; }

.ss-head { margin-bottom: clamp(30px, 4.4vw, 45px); }
.ss-head--center { margin-inline: auto; text-align: center; }
.ss-head--split { display: grid; gap: 26px; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); align-items: end; }
.ss-head--between { display: flex; flex-wrap: wrap; gap: 26px; align-items: flex-end; justify-content: space-between; }
.ss-head .ss-h2 { margin-top: 20px; }
.ss-head--center .ss-lead { margin-top: 18px; }
.ss-head--center .ss-btn { margin-top: 30px; }

/* ---------- 4. Typography ---------- */
.ss-h2, .ss-h3, .ss-h4 { margin: 0; font-family: var(--ss-display); color: var(--ss-ink); font-weight: 600; }

.ss-h2 {
  font-size: clamp(2rem, 3.5vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -.032em;
}
.ss-h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.14;
  letter-spacing: -.028em;
}
.ss-h4 {
  font-size: clamp(1.16rem, 1.35vw, 1.34rem);
  line-height: 1.28;
  letter-spacing: -.02em;
}

.ss-lead {
  font-size: clamp(1rem, 1.15vw, 1.09rem);
  line-height: 1.68;
  color: var(--ss-text);
}

.ss-mono {
  font-family: var(--ss-mono);
  font-size: .84rem;
  letter-spacing: .01em;
  text-transform: none;
}

/* Eyebrow (hero) */
.ss-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 12px;
  border: 1px solid var(--ss-line-mid);
  border-radius: var(--ss-r-pill);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(6px);
  font-family: var(--ss-mono);
  font-size: .74rem;
  color: var(--ss-ink-soft);
}
.ss-eyebrow i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ss-blue);
  box-shadow: 0 0 0 4px rgba(17, 113, 186, .16);
}

/* Section badge */
.ss-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: var(--ss-r-pill);
  background: var(--ss-blue);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: -.005em;
  box-shadow: 0 8px 18px -8px rgba(17, 113, 186, .7);
}
.ss-badge svg { width: 14px; height: 14px; }
.ss-badge--plain {
  background: var(--ss-blue-50);
  color: var(--ss-blue-dark);
  border: 1px solid var(--ss-blue-100);
  box-shadow: none;
}

/* ---------- 5. Buttons & links ---------- */
.ss-btn {
  --btn-bg: var(--ss-blue);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--ss-r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease;
}
.ss-btn svg { width: 16px; height: 16px; transition: transform .22s ease; }
.ss-btn:hover { transform: translateY(-2px); }
.ss-btn:hover svg { transform: translateX(3px); }
.ss-btn:active { transform: translateY(0); }

.ss-btn--primary { box-shadow: 0 12px 26px -12px rgba(17, 113, 186, .85); }
.ss-btn--primary:hover { --btn-bg: var(--ss-blue-hover); box-shadow: 0 18px 34px -14px rgba(17, 113, 186, .9); }

.ss-btn--dark { --btn-bg: var(--ss-ink); box-shadow: 0 12px 24px -14px rgba(10, 26, 41, .8); }
.ss-btn--dark:hover { --btn-bg: #05121e; }

.ss-btn--light { --btn-bg: #fff; --btn-fg: var(--ss-ink); }
.ss-btn--light:hover { --btn-bg: var(--ss-blue-50); }

.ss-btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--ss-ink);
  border-color: var(--ss-line-mid);
}
.ss-btn--outline:hover { --btn-fg: var(--ss-blue-dark); border-color: var(--ss-blue-300); background: var(--ss-blue-50); }

.ss-btn--ghost { --btn-bg: transparent; --btn-fg: var(--ss-ink-soft); padding-inline: 14px; }
.ss-btn--ghost:hover { --btn-fg: var(--ss-blue); }

.ss-btn--sm { padding: 10px 18px; font-size: .875rem; }
.ss-btn--lg { padding: 17px 32px; font-size: 1rem; }
.ss-btn--block { width: 100%; }

.ss-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ss-blue-dark);
  transition: gap .2s ease, color .2s ease;
}
.ss-link svg { width: 15px; height: 15px; }
.ss-link:hover { gap: 12px; color: var(--ss-blue); }

/* ---------- 6. Cards (shared shell) ---------- */
.ss-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--ss-line);
  border-radius: var(--ss-r-lg);
  background: var(--ss-paper);
  box-shadow: var(--ss-sh-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.ss-card:hover { transform: translateY(-4px); box-shadow: var(--ss-sh-md); }
.ss-card .ss-h4 { margin-bottom: 10px; }
.ss-card p { font-size: .95rem; }
.ss-card__visual {
  position: relative;
  margin-bottom: 24px;
  padding: 20px;
  border-radius: var(--ss-r);
  background: var(--ss-blue-50);
  border: 1px solid var(--ss-line);
  min-height: 196px;
}

/* ---------- 7. Reveal animation ---------- */
.ss-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.22, .8, .3, 1), transform .7s cubic-bezier(.22, .8, .3, 1);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.ss-reveal.is-in { opacity: 1; transform: none; }

/* ---------- 8. Header ---------- */
.ss-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding-block: 14px;
  transition: background-color .3s ease, box-shadow .3s ease, padding .3s ease;
}
.ss-header.is-stuck {
  padding-block: 8px;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--ss-line), 0 14px 30px -26px rgba(9, 30, 50, .5);
}

.ss-nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.ss-brand { display: inline-flex; align-items: center; gap: 11px; max-width: 240px; }
.ss-brand__mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(150deg, #2A8AD1, var(--ss-blue) 46%, var(--ss-blue-dark));
  color: #fff;
  box-shadow: 0 10px 20px -12px rgba(17, 113, 186, .95);
}
.ss-brand__mark svg { width: 22px; height: 22px; }
.ss-brand__name {
  font-family: var(--ss-display);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -.036em;
  color: var(--ss-ink);
}
.ss-brand__name span { color: var(--ss-blue); }

.ss-menu { display: flex; align-items: center; gap: 34px; }
.ss-menu__list { display: flex; align-items: center; gap: 4px; }
.ss-menu__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border: 0;
  background: none;
  border-radius: var(--ss-r-pill);
  font-size: .93rem;
  font-weight: 500;
  color: var(--ss-ink-soft);
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
}
.ss-menu__link:hover { color: var(--ss-blue); background: var(--ss-blue-50); }
.ss-menu__link--drop svg { width: 11px; height: 11px; transition: transform .25s ease; }
.ss-has-drop { position: relative; }
.ss-has-drop.is-open > .ss-menu__link { color: #fff; background: var(--ss-blue); }
.ss-has-drop.is-open > .ss-menu__link svg { transform: rotate(180deg); }

.ss-drop {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 300px;
  padding: 10px;
  translate: -50% 0;
  border: 1px solid var(--ss-line);
  border-radius: var(--ss-r);
  background: #fff;
  box-shadow: var(--ss-sh-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}
.ss-has-drop.is-open .ss-drop { opacity: 1; visibility: visible; transform: none; }
.ss-drop a {
  display: block;
  padding: 11px 13px;
  border-radius: var(--ss-r-xs);
  transition: background-color .2s ease;
}
.ss-drop a:hover { background: var(--ss-blue-50); }
.ss-drop strong { display: block; font-size: .93rem; color: var(--ss-ink); font-weight: 600; }
.ss-drop span { display: block; font-size: .8rem; color: var(--ss-text-dim); line-height: 1.45; }

.ss-menu__actions { display: flex; align-items: center; gap: 8px; }

.ss-burger {
  display: none;
  width: 44px; height: 44px;
  padding: 0 11px;
  border: 1px solid var(--ss-line-mid);
  border-radius: 13px;
  background: rgba(255, 255, 255, .8);
  cursor: pointer;
}
.ss-burger span {
  display: block;
  height: 1.8px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--ss-ink);
  transition: transform .28s ease, opacity .2s ease;
}
.ss-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.ss-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.ss-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 9. Footer ---------- */
.ss-footer {
  position: relative;
  overflow: hidden;
  padding-block: clamp(60px, 6vw, 86px) 30px;
  background: linear-gradient(180deg, #0A1E31, #061420 78%);
  color: rgba(255, 255, 255, .62);
}
.ss-footer::before {
  content: "";
  position: absolute;
  top: -180px; left: 50%;
  width: 780px; height: 420px;
  translate: -50% 0;
  background: radial-gradient(closest-side, rgba(17, 113, 186, .5), transparent 72%);
  opacity: .5;
  pointer-events: none;
}
.ss-footer > * { position: relative; }
.ss-footer__top { padding-bottom: clamp(38px, 4vw, 56px); }
.ss-brand--light .ss-brand__name { color: #fff; }
.ss-brand--light .ss-brand__name span { color: var(--ss-blue-300); }

.ss-footer__pitch { margin-top: 20px; max-width: 340px; font-size: .93rem; line-height: 1.7; }

.ss-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--ss-r-pill);
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .8);
}
.ss-status i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, .18);
}

.ss-footer__title {
  margin: 0 0 16px;
  font-family: var(--ss-mono);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}
.ss-footer__links { display: grid; gap: 11px; }
.ss-footer__links a, .ss-footer__links li {
  font-size: .92rem;
  color: rgba(255, 255, 255, .68);
  transition: color .2s ease, padding-left .2s ease;
}
.ss-footer__links a:hover { color: #fff; padding-left: 4px; }

.ss-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .45);
}
.ss-social { display: flex; gap: 8px; }
.ss-social a {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 11px;
  color: rgba(255, 255, 255, .7);
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.ss-social a svg { width: 16px; height: 16px; }
.ss-social a:hover { background: var(--ss-blue); border-color: transparent; color: #fff; transform: translateY(-2px); }
.ss-footer__made { color: rgba(255, 255, 255, .32); }

/* ---------- 10. Back to top ---------- */
.ss-top {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border: 1px solid var(--ss-line-mid);
  border-radius: 14px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(10px);
  color: var(--ss-ink);
  box-shadow: var(--ss-sh-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  cursor: pointer;
  transition: opacity .25s ease, transform .25s ease, visibility .25s, background-color .2s ease, color .2s ease;
}
.ss-top svg { width: 18px; height: 18px; }
.ss-top.is-shown { opacity: 1; visibility: visible; transform: none; }
.ss-top:hover { background: var(--ss-blue); border-color: transparent; color: #fff; }

/* ---------- 11. Responsive: header & footer ---------- */
@media (max-width: 991.98px) {
  .ss-burger { display: block; }
  .ss-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: var(--ss-gutter);
    right: var(--ss-gutter);
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--ss-line);
    border-radius: var(--ss-r-lg);
    background: #fff;
    box-shadow: var(--ss-sh-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .ss-menu.is-open { opacity: 1; visibility: visible; transform: none; }
  .ss-menu__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .ss-menu__link { justify-content: space-between; padding: 12px 14px; font-size: 1rem; }
  .ss-drop {
    position: static;
    width: auto;
    translate: none;
    display: none;
    margin: 4px 0 8px;
    box-shadow: none;
    background: var(--ss-blue-50);
    border-color: var(--ss-blue-100);
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .ss-has-drop.is-open .ss-drop { display: block; }
  .ss-menu__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .ss-menu__actions .ss-btn { width: 100%; }
  .ss-head--split { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 575.98px) {
  :root { --ss-gutter: 18px; }
  .ss-footer__bottom { flex-direction: column; align-items: flex-start; }
  .ss-top { right: 14px; bottom: 14px; }
}

/* ---------- 12. Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .ss-reveal { opacity: 1; transform: none; }
}

/* General Pages */

  .page-title {
        background: #ecf6ff;
    border-bottom: 1px solid var(--bs-border-color);
    background-size: cover;
    padding: 160px 0 80px;
  }
  .page-title h1 {
    text-align: center;
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.025em;
  }
  .order-summary {
    padding: 27px !important;
    border-radius: 16px;
    background: var(--dark-text);
    border: 1px solid #d1d1d1;
  }
  
  .checkout_area select {
    padding: 12px;
    border-radius: 5px;
    box-shadow: none;
    outline: none;
    appearance: auto;
    width: 100%;
    border: var(--bs-border-width) solid var(--bs-border-color);
    margin-bottom: 15px;
    min-height: 50px;
  }
  .checkout_area .form-control {
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    box-shadow: none;
    outline: none;
  }
  
  .contact_info_section .contact_info_box {
    background: linear-gradient(180deg, #4f7cff22 0%, transparent 100%);
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #dee2e6;
    display: flex;
        align-items: center;
    gap: 20px;
  }
  .contact_info_section p{
    margin-bottom: 1rem;
  }
#my-widget-popup{
      top: auto !important;
    bottom: 20px !important;
}
#widget-content{
    bottom: 0px !important;
    top: auto !important;
}