:root {
  --sa-navy: #061a3d;
  --sa-navy-deep: #020d24;
  --sa-gold: #d4aa4f;
  --sa-gold-dark: #ad7c22;
  --sa-text: #17233b;
  --sa-muted: #667085;
  --sa-surface: #ffffff;
  --sa-background: #f5f6f8;
  --sa-danger: #d92d20;
  --sa-success: #14804a;
  --sa-announcement-speed: 28s;
  --sa-border: #e6e8ec;
  --sa-shadow: 0 12px 35px rgba(9, 27, 61, .09);
  --sa-radius: 16px;
  --sa-container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--sa-text);
  background: var(--sa-background);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.sa-no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.sa-container { width: min(calc(100% - 32px), var(--sa-container)); margin-inline: auto; }
.sa-section { padding: 72px 0; }
.sa-section--white { background: var(--sa-surface); }
.sa-section--navy { color: #fff; background: var(--sa-navy); }
.sa-section-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 30px; }
.sa-section-heading p { margin: 0 0 7px; color: var(--sa-gold-dark); font-size: 13px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.sa-section-heading h2 { margin: 0; color: var(--sa-navy); font-size: clamp(28px, 4vw, 42px); line-height: 1.08; letter-spacing: -.03em; }
.sa-section-heading > a { font-weight: 800; text-decoration: none; border-bottom: 2px solid var(--sa-gold); }
.sa-section-heading--light h2 { color: #fff; }
.sa-section-heading--light p { color: var(--sa-gold); }
.sa-kicker { color: var(--sa-gold-dark); font-size: 13px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.sa-button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 22px;
  border: 1px solid transparent; border-radius: 10px; background: var(--sa-gold); color: var(--sa-navy);
  font-weight: 850; text-decoration: none; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s;
}
.sa-button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(212, 170, 79, .3); }
.sa-button--navy { background: var(--sa-navy); color: #fff; }
.sa-button--outline { border-color: rgba(255,255,255,.48); background: transparent; color: #fff; }
.sa-button--light { background: #fff; color: var(--sa-navy); }
.sa-button--full { width: 100%; }
.sa-link-button { border: 0; padding: 0; background: transparent; color: var(--sa-navy); font-weight: 800; text-decoration: underline; cursor: pointer; }
.sa-empty-state { padding: 60px 20px; text-align: center; border: 1px dashed #cbd1db; border-radius: 16px; background: #fff; }
.sa-empty-state span { font-size: 46px; }
.sa-empty-state h2 { margin: 15px 0 8px; color: var(--sa-navy); }
.sa-empty-state p { color: var(--sa-muted); }

/* announcement */
.sa-announcement { overflow: hidden; background: var(--sa-gold); color: var(--sa-navy); }
.sa-announcement-track { width: max-content; display: flex; animation: sa-marquee var(--sa-announcement-speed) linear infinite; }
.sa-announcement-track span { padding: 9px 28px; white-space: nowrap; font-size: 12px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.sa-announcement-track b { margin-left: 26px; }
@keyframes sa-marquee { to { transform: translateX(-50%); } }

/* header */
.sa-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.97); box-shadow: 0 8px 28px rgba(6,26,61,.07); backdrop-filter: blur(14px); }
.sa-header-main { min-height: 76px; display: grid; grid-template-columns: 210px minmax(260px, 1fr) auto; align-items: center; gap: 28px; }
.sa-logo img { width: 190px; height: 52px; object-fit: contain; object-position: left center; }
.sa-search { position: relative; display: flex; overflow: visible; border: 1px solid #dfe3ea; border-radius: 12px; background: #f7f8fa; }
.sa-search input { width: 100%; min-width: 0; padding: 13px 50px 13px 16px; border: 0; outline: 0; background: transparent; color: var(--sa-text); }
.sa-search button { position: absolute; top: 4px; right: 4px; width: 40px; height: 38px; border: 0; border-radius: 9px; background: var(--sa-navy); color: #fff; font-size: 24px; cursor: pointer; }
.sa-search-suggestions { position: absolute; top: calc(100% + 8px); left: 0; right: 0; display: none; overflow: hidden; border: 1px solid var(--sa-border); border-radius: 12px; background: #fff; box-shadow: var(--sa-shadow); }
.sa-search-suggestions.is-open { display: block; }
.sa-search-suggestions a { display: grid; grid-template-columns: 52px 1fr; gap: 12px; align-items: center; padding: 10px 12px; text-decoration: none; border-bottom: 1px solid #eef0f3; }
.sa-search-suggestions a:last-child { border-bottom: 0; }
.sa-search-suggestions img { width: 52px; height: 52px; object-fit: cover; border-radius: 8px; background: #f3f4f6; }
.sa-search-suggestions span { min-width: 0; font-size: 13px; font-weight: 750; }
.sa-search-suggestions small { display: block; margin-top: 4px; color: var(--sa-danger); }
.sa-search-suggestions p { margin: 0; padding: 18px; text-align: center; color: var(--sa-muted); }
.sa-header-actions { display: flex; align-items: center; gap: 18px; }
.sa-icon-link { position: relative; display: inline-flex; flex-direction: column; align-items: center; gap: 2px; min-width: 42px; text-decoration: none; color: var(--sa-navy); }
.sa-icon-link > span { font-size: 23px; line-height: 1; }
.sa-icon-link small { font-size: 10px; font-weight: 800; }
.sa-count { position: absolute; top: -8px; right: -5px; min-width: 18px; height: 18px; padding: 0 4px; display: grid; place-items: center; border-radius: 999px; background: var(--sa-danger); color: #fff; font-size: 10px; }
.sa-nav { min-height: 47px; display: flex; align-items: center; justify-content: center; gap: 31px; border-top: 1px solid #edf0f4; }
.sa-nav a { position: relative; padding: 15px 0 13px; color: #26334c; font-size: 13px; font-weight: 750; text-decoration: none; }
.sa-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 9px; height: 2px; background: var(--sa-gold); transition: right .2s; }
.sa-nav a:hover::after, .sa-nav a.is-active::after { right: 0; }
.sa-icon-button { border: 0; background: transparent; color: var(--sa-navy); font-size: 28px; cursor: pointer; }
.sa-mobile-menu-button { display: none; }
.sa-mobile-drawer, .sa-drawer-overlay { display: none; }

/* hero */
.sa-hero { position: relative; overflow: hidden; background: var(--sa-navy); }
.sa-hero-track { display: flex; transition: transform .65s cubic-bezier(.22,.8,.22,1); }
.sa-hero-slide { min-width: 100%; min-height: 590px; position: relative; display: grid; align-items: center; color: #fff; }
.sa-hero-slide::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(1,11,33,.92) 0%, rgba(5,29,67,.78) 46%, rgba(5,29,67,.15) 100%); z-index: 1; }
.sa-hero-slide > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sa-hero-content { position: relative; z-index: 2; max-width: 650px; padding: 80px 0 95px; }
.sa-hero-content .sa-kicker { color: var(--sa-gold); }
.sa-hero-content h1 { max-width: 620px; margin: 15px 0 18px; font-size: clamp(42px, 6vw, 72px); line-height: 1.02; letter-spacing: -.05em; }
.sa-hero-content p { max-width: 590px; margin: 0 0 28px; color: #d9e1ef; font-size: 17px; line-height: 1.72; }
.sa-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.sa-hero-controls { position: absolute; z-index: 3; left: 50%; bottom: 24px; width: min(calc(100% - 32px), var(--sa-container)); transform: translateX(-50%); display: flex; align-items: center; justify-content: space-between; }
.sa-hero-arrow { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; background: rgba(2,13,36,.35); color: #fff; font-size: 22px; cursor: pointer; }
.sa-hero-dots { display: flex; gap: 8px; }
.sa-hero-dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 99px; background: rgba(255,255,255,.45); cursor: pointer; transition: width .2s, background .2s; }
.sa-hero-dot.is-active { width: 28px; background: var(--sa-gold); }

/* trust strip */
.sa-trust-strip { position: relative; z-index: 4; margin-top: -28px; }
.sa-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-radius: 16px; background: #fff; box-shadow: 0 15px 45px rgba(3,18,50,.16); }
.sa-trust-item { min-height: 92px; display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 13px; padding: 20px; border-right: 1px solid #edf0f4; }
.sa-trust-item:last-child { border-right: 0; }
.sa-trust-item span { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 50%; background: #fff8e8; color: var(--sa-gold-dark); font-size: 22px; }
.sa-trust-item strong { display: block; color: var(--sa-navy); font-size: 14px; }
.sa-trust-item small { display: block; margin-top: 4px; color: var(--sa-muted); font-size: 12px; }

/* categories */
.sa-categories { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.sa-category-card { min-width: 0; text-align: center; text-decoration: none; }
.sa-category-media { position: relative; aspect-ratio: 1; overflow: hidden; border: 5px solid #fff; border-radius: 50%; background: #edf1f7; box-shadow: 0 8px 25px rgba(6,26,61,.1); transition: transform .25s, border-color .25s; }
.sa-category-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.sa-category-card:hover .sa-category-media { transform: translateY(-5px); border-color: var(--sa-gold); }
.sa-category-card:hover img { transform: scale(1.06); }
.sa-category-card h3 { margin: 12px 0 0; color: var(--sa-navy); font-size: 15px; }

/* banners */
.sa-banner-slider { position: relative; overflow: hidden; border-radius: 22px; box-shadow: var(--sa-shadow); }
.sa-banner-track { display: flex; transition: transform .6s ease; }
.sa-banner-slide { min-width: 100%; min-height: 360px; position: relative; display: grid; align-items: center; overflow: hidden; background: var(--sa-navy); }
.sa-banner-slide::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,13,36,.88), rgba(2,13,36,.15)); z-index: 1; }
.sa-banner-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sa-banner-content { position: relative; z-index: 2; max-width: 530px; padding: 52px; color: #fff; }
.sa-banner-content h3 { margin: 10px 0 12px; font-size: clamp(30px, 4vw, 50px); line-height: 1.05; }
.sa-banner-content p { margin: 0 0 23px; color: #d9e1ef; line-height: 1.6; }
.sa-banner-dots { position: absolute; z-index: 3; left: 50%; bottom: 18px; display: flex; gap: 7px; transform: translateX(-50%); }
.sa-banner-dots button { width: 8px; height: 8px; border: 0; border-radius: 99px; background: rgba(255,255,255,.5); }
.sa-banner-dots button.is-active { width: 25px; background: var(--sa-gold); }

/* products */
.sa-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.sa-product-card { min-width: 0; overflow: hidden; border: 1px solid var(--sa-border); border-radius: 15px; background: #fff; transition: transform .25s, box-shadow .25s; }
.sa-product-card:hover { transform: translateY(-5px); box-shadow: var(--sa-shadow); }
.sa-product-media { position: relative; aspect-ratio: 1 / 1.05; overflow: hidden; background: #f0f2f5; }
.sa-product-media > a { display: block; width: 100%; height: 100%; }
.sa-product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.sa-product-card:hover .sa-product-media img { transform: scale(1.045); }
.sa-badge { position: absolute; z-index: 2; top: 12px; left: 12px; padding: 6px 9px; border-radius: 7px; color: #fff; font-size: 11px; font-weight: 900; }
.sa-sale-badge { background: var(--sa-danger); }
.sa-stock-badge { top: auto; bottom: 12px; background: #596579; }
.sa-wishlist-button { position: absolute; z-index: 3; top: 11px; right: 11px; width: 38px; height: 38px; border: 1px solid rgba(6,26,61,.08); border-radius: 50%; background: rgba(255,255,255,.94); color: var(--sa-navy); font-size: 20px; cursor: pointer; }
.sa-wishlist-button.is-active { color: var(--sa-danger); }
.sa-product-quick-actions { position: absolute; left: 15px; right: 15px; bottom: -48px; opacity: 0; transition: bottom .25s, opacity .25s; }
.sa-product-quick-actions a { display: block; padding: 11px; border-radius: 9px; background: rgba(6,26,61,.92); color: #fff; text-align: center; text-decoration: none; font-size: 12px; font-weight: 800; }
.sa-product-card:hover .sa-product-quick-actions { bottom: 14px; opacity: 1; }
.sa-product-info { padding: 16px; }
.sa-product-category { color: var(--sa-gold-dark); font-size: 11px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; text-decoration: none; }
.sa-product-info h3 { min-height: 45px; margin: 8px 0 8px; font-size: 16px; line-height: 1.35; }
.sa-product-info h3 a { color: var(--sa-navy); text-decoration: none; }
.sa-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.sa-rating span { color: #f5b301; font-size: 12px; letter-spacing: -1px; }
.sa-rating small { color: var(--sa-muted); font-size: 11px; }
.sa-product-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 13px; }
.sa-product-price strong { color: var(--sa-danger); font-size: 18px; }
.sa-product-price del { color: #8a93a2; font-size: 12px; }
.sa-add-cart { width: 100%; min-height: 42px; border: 0; border-radius: 9px; background: var(--sa-navy); color: #fff; font-weight: 850; cursor: pointer; }
.sa-add-cart:disabled { background: #aab1bd; cursor: not-allowed; }

/* deal */
.sa-deal { overflow: hidden; border-radius: 24px; display: grid; grid-template-columns: 1fr 1.1fr; background: var(--sa-navy); color: #fff; box-shadow: var(--sa-shadow); }
.sa-deal-content { padding: 58px; }
.sa-deal-content h2 { margin: 12px 0 14px; font-size: clamp(36px, 5vw, 58px); line-height: 1.02; }
.sa-deal-content > p { color: #d7dfec; line-height: 1.7; }
.sa-countdown { display: flex; gap: 10px; margin: 28px 0; }
.sa-countdown div { min-width: 72px; padding: 13px 10px; border: 1px solid rgba(255,255,255,.15); border-radius: 10px; background: rgba(255,255,255,.06); text-align: center; }
.sa-countdown strong { display: block; color: var(--sa-gold); font-size: 25px; }
.sa-countdown small { font-size: 9px; text-transform: uppercase; }
.sa-deal-media { min-height: 470px; background: #0d2d62; }
.sa-deal-media img { width: 100%; height: 100%; object-fit: cover; }

/* videos */
.sa-video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sa-video-card { overflow: hidden; border-radius: 18px; background: #fff; box-shadow: var(--sa-shadow); }
.sa-video-media { position: relative; aspect-ratio: 9 / 11; overflow: hidden; background: #e8ebf1; cursor: pointer; }
.sa-video-media img, .sa-video-media video { width: 100%; height: 100%; object-fit: cover; }
.sa-video-play { position: absolute; inset: 0; display: grid; place-items: center; background: linear-gradient(transparent, rgba(2,13,36,.4)); }
.sa-video-play span { width: 70px; height: 70px; display: grid; place-items: center; padding-left: 5px; border: 2px solid rgba(255,255,255,.7); border-radius: 50%; background: rgba(6,26,61,.68); color: #fff; font-size: 29px; }
.sa-video-copy { padding: 20px; }
.sa-video-copy h3 { margin: 0 0 8px; color: var(--sa-navy); }
.sa-video-copy p { margin: 0; color: var(--sa-muted); font-size: 13px; line-height: 1.6; }

/* brands/testimonials/newsletter */
.sa-brand-marquee { overflow: hidden; border-block: 1px solid var(--sa-border); background: #fff; }
.sa-brand-track { width: max-content; display: flex; animation: sa-brand 25s linear infinite; }
.sa-brand-track span { min-width: 190px; padding: 27px 30px; color: #c9952f; font-size: 18px; font-weight: 900; text-align: center; letter-spacing: .08em; }
@keyframes sa-brand { to { transform: translateX(-50%); } }
.sa-testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sa-testimonial { padding: 26px; border: 1px solid var(--sa-border); border-radius: 16px; background: #fff; }
.sa-testimonial .sa-rating { margin-bottom: 15px; }
.sa-testimonial p { color: var(--sa-muted); line-height: 1.7; }
.sa-testimonial strong { color: var(--sa-navy); }
.sa-newsletter { display: grid; grid-template-columns: 1fr minmax(300px, 520px); align-items: center; gap: 50px; padding: 50px; border-radius: 24px; background: linear-gradient(135deg, var(--sa-navy), #0b3978); color: #fff; }
.sa-newsletter h2 { margin: 8px 0 10px; font-size: clamp(30px, 4vw, 48px); }
.sa-newsletter p { margin: 0; color: #d8e0ed; }
.sa-newsletter form { display: flex; padding: 5px; border-radius: 12px; background: #fff; }
.sa-newsletter input { min-width: 0; flex: 1; padding: 13px; border: 0; outline: 0; }
.sa-newsletter button { border: 0; border-radius: 9px; background: var(--sa-gold); color: var(--sa-navy); padding: 12px 19px; font-weight: 850; }

/* footer */
.sa-footer { padding-bottom: 0; background: var(--sa-navy-deep); color: #fff; }
.sa-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.35fr; gap: 48px; padding-top: 64px; padding-bottom: 55px; }
.sa-footer-logo img { width: 190px; height: 58px; object-fit: contain; object-position: left; filter: brightness(0) invert(1); }
.sa-footer p { color: #aebbd0; font-size: 13px; line-height: 1.75; }
.sa-footer h3 { margin: 8px 0 18px; color: #fff; font-size: 15px; }
.sa-footer-grid > div > a:not(.sa-footer-logo) { display: block; margin: 0 0 11px; color: #aebbd0; font-size: 13px; text-decoration: none; }
.sa-socials { display: flex; gap: 9px; margin-top: 18px; }
.sa-socials a { width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; text-decoration: none; }
.sa-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.sa-footer-bottom > div { min-height: 58px; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: #8f9bb0; font-size: 11px; }
.sa-floating-whatsapp { position: fixed; z-index: 950; right: 18px; bottom: 22px; width: 54px; height: 54px; display: grid; place-items: center; border: 3px solid #fff; border-radius: 50%; background: #20b45a; color: #fff; box-shadow: 0 9px 24px rgba(0,0,0,.22); font-size: 27px; text-decoration: none; }
.sa-mobile-dock { display: none; }

/* generic pages */
.sa-page-hero { padding: 64px 0; background: linear-gradient(135deg, var(--sa-navy-deep), #0a3b7b); color: #fff; }
.sa-page-hero h1 { margin: 10px 0 10px; font-size: clamp(38px, 6vw, 62px); }
.sa-page-hero p { max-width: 670px; margin: 0; color: #d7e0ee; line-height: 1.7; }
.sa-breadcrumb { margin-bottom: 12px; color: var(--sa-gold); font-size: 12px; font-weight: 800; }
.sa-breadcrumb a { text-decoration: none; }

/* shop */
.sa-shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 34px; align-items: start; }
.sa-shop-sidebar { position: sticky; top: 145px; padding: 22px; border: 1px solid var(--sa-border); border-radius: 15px; background: #fff; }
.sa-filter-group { padding: 0 0 22px; margin-bottom: 22px; border-bottom: 1px solid var(--sa-border); }
.sa-filter-group:last-child { margin: 0; padding: 0; border: 0; }
.sa-filter-group h3 { margin: 0 0 13px; color: var(--sa-navy); font-size: 14px; }
.sa-filter-option { display: flex; align-items: center; gap: 9px; margin: 9px 0; color: var(--sa-muted); font-size: 13px; cursor: pointer; }
.sa-filter-option input { accent-color: var(--sa-navy); }
.sa-shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 22px; }
.sa-shop-toolbar p { margin: 0; color: var(--sa-muted); font-size: 13px; }
.sa-shop-toolbar select { min-width: 190px; padding: 11px 35px 11px 12px; border: 1px solid var(--sa-border); border-radius: 9px; background: #fff; }
.sa-filter-mobile-button { display: none; }

/* product page */
.sa-product-page { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: 55px; align-items: start; }
.sa-product-gallery { display: grid; grid-template-columns: 86px 1fr; gap: 14px; }
.sa-product-thumbs { display: flex; flex-direction: column; gap: 10px; }
.sa-product-thumb { padding: 0; overflow: hidden; border: 2px solid transparent; border-radius: 10px; background: #fff; cursor: pointer; }
.sa-product-thumb.is-active { border-color: var(--sa-gold); }
.sa-product-thumb img { width: 82px; aspect-ratio: 1; object-fit: cover; }
.sa-product-main-image { overflow: hidden; border-radius: 18px; background: #edf0f5; }
.sa-product-main-image img { width: 100%; aspect-ratio: 1 / 1.05; object-fit: cover; }
.sa-product-details { position: sticky; top: 150px; }
.sa-product-details h1 { margin: 10px 0 14px; color: var(--sa-navy); font-size: clamp(31px, 4vw, 48px); line-height: 1.08; }
.sa-product-details .sa-product-price strong { font-size: 31px; }
.sa-product-description-short { color: var(--sa-muted); line-height: 1.75; }
.sa-stock-status { display: inline-flex; align-items: center; gap: 7px; margin: 8px 0 18px; color: var(--sa-success); font-size: 13px; font-weight: 800; }
.sa-stock-status.is-out { color: var(--sa-danger); }
.sa-quantity-row { display: flex; gap: 12px; margin: 22px 0 12px; }
.sa-quantity { display: grid; grid-template-columns: 40px 48px 40px; overflow: hidden; border: 1px solid var(--sa-border); border-radius: 10px; background: #fff; }
.sa-quantity button { border: 0; background: #f1f3f6; font-size: 20px; cursor: pointer; }
.sa-quantity input { width: 100%; border: 0; text-align: center; font-weight: 800; }
.sa-product-buy { flex: 1; }
.sa-whatsapp-order { margin-top: 10px; background: #1da851; color: #fff; }
.sa-product-benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 22px; }
.sa-product-benefits div { padding: 13px; border: 1px solid var(--sa-border); border-radius: 10px; background: #fff; font-size: 12px; font-weight: 750; }
.sa-tabs { margin-top: 55px; }
.sa-tab-buttons { display: flex; gap: 20px; border-bottom: 1px solid var(--sa-border); }
.sa-tab-buttons button { padding: 14px 0; border: 0; border-bottom: 2px solid transparent; background: transparent; color: var(--sa-muted); font-weight: 800; cursor: pointer; }
.sa-tab-buttons button.is-active { color: var(--sa-navy); border-color: var(--sa-gold); }
.sa-tab-panel { display: none; padding: 25px 0; color: var(--sa-muted); line-height: 1.75; }
.sa-tab-panel.is-active { display: block; }

/* cart/checkout/forms */
.sa-cart-layout, .sa-checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 30px; align-items: start; }
.sa-cart-list, .sa-form-card, .sa-summary-card { border: 1px solid var(--sa-border); border-radius: 16px; background: #fff; box-shadow: 0 8px 26px rgba(6,26,61,.04); }
.sa-cart-item { display: grid; grid-template-columns: 110px 1fr auto; gap: 18px; align-items: center; padding: 18px; border-bottom: 1px solid var(--sa-border); }
.sa-cart-item:last-child { border-bottom: 0; }
.sa-cart-item img { width: 110px; height: 110px; object-fit: cover; border-radius: 12px; background: #f0f2f5; }
.sa-cart-item h3 { margin: 0 0 7px; color: var(--sa-navy); font-size: 17px; }
.sa-cart-item p { margin: 0 0 12px; color: var(--sa-danger); font-weight: 850; }
.sa-cart-item-actions { display: flex; align-items: center; gap: 12px; }
.sa-remove-item { border: 0; background: transparent; color: var(--sa-danger); font-size: 12px; font-weight: 800; cursor: pointer; }
.sa-cart-line-total { text-align: right; white-space: nowrap; color: var(--sa-navy); font-weight: 900; }
.sa-summary-card { position: sticky; top: 150px; padding: 24px; }
.sa-summary-card h2 { margin: 0 0 19px; color: var(--sa-navy); }
.sa-summary-row { display: flex; justify-content: space-between; gap: 15px; padding: 12px 0; border-bottom: 1px solid var(--sa-border); color: var(--sa-muted); font-size: 13px; }
.sa-summary-row strong { color: var(--sa-navy); }
.sa-summary-total { font-size: 17px; border-bottom: 0; }
.sa-summary-total strong { color: var(--sa-danger); font-size: 21px; }
.sa-summary-card .sa-button { margin-top: 15px; }
.sa-form-card { padding: 26px; }
.sa-form-card h2 { margin: 0 0 22px; color: var(--sa-navy); }
.sa-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.sa-field { display: flex; flex-direction: column; gap: 7px; }
.sa-field--full { grid-column: 1 / -1; }
.sa-field label { color: var(--sa-navy); font-size: 12px; font-weight: 800; }
.sa-field input, .sa-field textarea, .sa-field select { width: 100%; padding: 13px; border: 1px solid #d9dee7; border-radius: 9px; outline: none; background: #fff; }
.sa-field input:focus, .sa-field textarea:focus, .sa-field select:focus { border-color: var(--sa-gold); box-shadow: 0 0 0 3px rgba(212,170,79,.15); }
.sa-field textarea { min-height: 105px; resize: vertical; }
.sa-order-success { padding: 30px; border-radius: 16px; background: #e9f8ef; color: #116b3f; text-align: center; }

/* info/contact/track */
.sa-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sa-info-card { padding: 28px; border: 1px solid var(--sa-border); border-radius: 16px; background: #fff; }
.sa-info-card span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: #fff5db; color: var(--sa-gold-dark); font-size: 22px; }
.sa-info-card h3 { color: var(--sa-navy); }
.sa-info-card p, .sa-info-card a { color: var(--sa-muted); font-size: 13px; line-height: 1.7; }
.sa-about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 55px; align-items: center; }
.sa-about-visual { overflow: hidden; border-radius: 24px; background: var(--sa-navy); }
.sa-about-visual img { width: 100%; min-height: 510px; object-fit: cover; }
.sa-about-copy h2 { margin: 12px 0 18px; color: var(--sa-navy); font-size: clamp(34px, 5vw, 54px); }
.sa-about-copy p { color: var(--sa-muted); line-height: 1.8; }
.sa-track-card { max-width: 760px; margin: 0 auto; padding: 32px; border: 1px solid var(--sa-border); border-radius: 18px; background: #fff; box-shadow: var(--sa-shadow); }
.sa-track-result { margin-top: 22px; }
.sa-status-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 25px; }
.sa-status-step { position: relative; padding-top: 35px; text-align: center; color: var(--sa-muted); font-size: 11px; }
.sa-status-step::before { content: ""; position: absolute; top: 8px; left: calc(50% + 10px); right: calc(-50% + 10px); height: 3px; background: #dce1e8; }
.sa-status-step:last-child::before { display: none; }
.sa-status-step::after { content: ""; position: absolute; top: 0; left: 50%; width: 19px; height: 19px; transform: translateX(-50%); border: 4px solid #dce1e8; border-radius: 50%; background: #fff; }
.sa-status-step.is-done { color: var(--sa-success); font-weight: 800; }
.sa-status-step.is-done::before { background: var(--sa-success); }
.sa-status-step.is-done::after { border-color: var(--sa-success); background: var(--sa-success); }

/* settings page */
.sa-settings-layout { display: grid; grid-template-columns: 270px 1fr; gap: 25px; align-items: start; }
.sa-settings-nav { position: sticky; top: 150px; padding: 16px; border-radius: 15px; background: var(--sa-navy); color: #fff; }
.sa-settings-nav button { width: 100%; padding: 12px; border: 0; border-radius: 8px; background: transparent; color: #cbd7e8; text-align: left; cursor: pointer; }
.sa-settings-nav button.is-active { background: var(--sa-gold); color: var(--sa-navy); font-weight: 800; }
.sa-settings-panel { display: none; padding: 26px; border: 1px solid var(--sa-border); border-radius: 16px; background: #fff; }
.sa-settings-panel.is-active { display: block; }
.sa-settings-panel h2 { margin-top: 0; color: var(--sa-navy); }
.sa-settings-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.sa-color-field { display: grid; grid-template-columns: 55px 1fr; gap: 10px; align-items: center; }
.sa-color-field input[type="color"] { width: 55px; height: 45px; padding: 2px; }
.sa-json-box { width: 100%; min-height: 300px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; }

/* toast */
.sa-toast-region { position: fixed; z-index: 3000; right: 18px; top: 18px; display: grid; gap: 9px; }
.sa-toast { max-width: 340px; padding: 13px 17px; border-radius: 10px; background: var(--sa-navy); color: #fff; box-shadow: var(--sa-shadow); opacity: 0; transform: translateY(-8px); transition: .2s; font-size: 13px; }
.sa-toast.success { background: var(--sa-success); }
.sa-toast.error { background: var(--sa-danger); }
.sa-toast.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .sa-header-main { grid-template-columns: 170px 1fr auto; gap: 16px; }
  .sa-logo img { width: 160px; }
  .sa-nav { gap: 18px; }
  .sa-product-grid { grid-template-columns: repeat(3, 1fr); }
  .sa-categories { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
  .sa-deal { grid-template-columns: 1fr; }
  .sa-deal-media { min-height: 370px; }
  .sa-product-page { gap: 30px; }
  .sa-cart-layout, .sa-checkout-layout { grid-template-columns: 1fr 330px; }
  .sa-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  .sa-section { padding: 52px 0; }
  .sa-container { width: min(calc(100% - 24px), var(--sa-container)); }
  .sa-announcement-track span { padding: 8px 18px; font-size: 10px; }
  .sa-header { position: relative; }
  .sa-header-main { min-height: 64px; grid-template-columns: 38px 1fr auto; gap: 10px; }
  .sa-mobile-menu-button { display: block; }
  .sa-logo { justify-self: center; }
  .sa-logo img { width: 145px; height: 42px; object-position: center; }
  .sa-header-main > .sa-search { grid-column: 1 / -1; grid-row: 2; margin-bottom: 11px; }
  .sa-header-actions { gap: 10px; }
  .sa-desktop-only, .sa-nav { display: none !important; }
  .sa-mobile-drawer { position: fixed; z-index: 2100; inset: 0 auto 0 0; width: min(86vw, 360px); display: block; padding: 24px; overflow-y: auto; background: #fff; transform: translateX(-105%); transition: transform .3s; }
  .sa-mobile-drawer.is-open { transform: translateX(0); }
  .sa-drawer-overlay { position: fixed; z-index: 2050; inset: 0; display: block; visibility: hidden; opacity: 0; background: rgba(2,13,36,.62); transition: .25s; }
  .sa-drawer-overlay.is-open { visibility: visible; opacity: 1; }
  .sa-drawer-close { position: absolute; top: 12px; right: 13px; border: 0; background: transparent; color: var(--sa-navy); font-size: 34px; }
  .sa-drawer-logo img { width: 170px; height: 62px; object-fit: contain; object-position: left; }
  .sa-mobile-drawer nav { display: grid; margin-top: 16px; }
  .sa-mobile-drawer nav a { padding: 13px 2px; border-bottom: 1px solid #edf0f3; color: var(--sa-navy); text-decoration: none; font-weight: 750; }
  .sa-drawer-contact { display: grid; gap: 7px; margin-top: 24px; padding: 17px; border-radius: 10px; background: #f3f5f8; }
  .sa-drawer-contact a { color: var(--sa-navy); font-size: 12px; font-weight: 800; text-decoration: none; }
  .sa-hero-slide { min-height: 520px; }
  .sa-hero-slide::before { background: linear-gradient(90deg, rgba(1,11,33,.94), rgba(5,29,67,.6)); }
  .sa-hero-content { padding: 60px 0 86px; }
  .sa-hero-content h1 { font-size: clamp(39px, 11vw, 60px); }
  .sa-hero-content p { font-size: 15px; }
  .sa-trust-strip { margin-top: 0; background: #fff; }
  .sa-trust-grid { grid-template-columns: repeat(2, 1fr); border-radius: 0; box-shadow: none; }
  .sa-trust-item { min-height: 82px; padding: 14px 10px; grid-template-columns: 39px 1fr; }
  .sa-trust-item:nth-child(2) { border-right: 0; }
  .sa-trust-item:nth-child(-n+2) { border-bottom: 1px solid #edf0f4; }
  .sa-trust-item span { width: 38px; height: 38px; font-size: 18px; }
  .sa-trust-item strong { font-size: 12px; }
  .sa-trust-item small { font-size: 10px; }
  .sa-categories { display: flex; gap: 15px; overflow-x: auto; padding: 4px 2px 12px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .sa-categories::-webkit-scrollbar { display: none; }
  .sa-category-card { min-width: 108px; scroll-snap-align: start; }
  .sa-category-card h3 { font-size: 12px; }
  .sa-banner-slide { min-height: 330px; }
  .sa-banner-content { padding: 30px; }
  .sa-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .sa-product-info { padding: 12px; }
  .sa-product-info h3 { min-height: 39px; font-size: 13px; }
  .sa-product-price { flex-wrap: wrap; gap: 5px; }
  .sa-product-price strong { font-size: 15px; }
  .sa-rating small { display: none; }
  .sa-product-quick-actions { display: none; }
  .sa-add-cart { min-height: 38px; font-size: 12px; }
  .sa-deal-content { padding: 35px 25px; }
  .sa-video-grid, .sa-testimonial-grid { grid-template-columns: 1fr; }
  .sa-video-media { aspect-ratio: 16 / 12; }
  .sa-newsletter { grid-template-columns: 1fr; padding: 35px 24px; gap: 25px; }
  .sa-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; padding-top: 45px; }
  .sa-footer-grid > div:first-child { grid-column: 1 / -1; }
  .sa-footer-bottom > div { flex-direction: column; justify-content: center; padding-block: 15px; text-align: center; }
  .sa-floating-whatsapp { right: 12px; bottom: 78px; width: 50px; height: 50px; }
  .sa-mobile-dock { position: fixed; z-index: 900; left: 0; right: 0; bottom: 0; min-height: 62px; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid #e5e8ed; background: rgba(255,255,255,.97); box-shadow: 0 -8px 25px rgba(6,26,61,.08); }
  .sa-mobile-dock a { position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2px; color: var(--sa-navy); text-decoration: none; }
  .sa-mobile-dock span { font-size: 20px; line-height: 1; }
  .sa-mobile-dock small { font-size: 9px; font-weight: 800; }
  .sa-mobile-dock b { position: absolute; top: 7px; right: calc(50% - 22px); min-width: 16px; height: 16px; display: grid; place-items: center; padding: 0 3px; border-radius: 50%; background: var(--sa-danger); color: #fff; font-size: 9px; }
  .sa-footer { padding-bottom: 62px; }
  .sa-shop-layout { grid-template-columns: 1fr; }
  .sa-shop-sidebar { position: fixed; z-index: 2200; top: 0; bottom: 0; left: 0; width: min(88vw, 360px); overflow-y: auto; border-radius: 0; transform: translateX(-105%); transition: transform .3s; }
  .sa-shop-sidebar.is-open { transform: translateX(0); }
  .sa-filter-mobile-button { display: inline-flex; }
  .sa-shop-toolbar { align-items: stretch; flex-wrap: wrap; }
  .sa-shop-toolbar select { min-width: 0; flex: 1; }
  .sa-product-page { grid-template-columns: 1fr; }
  .sa-product-details { position: static; }
  .sa-product-gallery { grid-template-columns: 1fr; }
  .sa-product-thumbs { order: 2; flex-direction: row; overflow-x: auto; }
  .sa-product-thumb img { width: 70px; }
  .sa-cart-layout, .sa-checkout-layout { grid-template-columns: 1fr; }
  .sa-summary-card { position: static; }
  .sa-cart-item { grid-template-columns: 88px 1fr; gap: 12px; }
  .sa-cart-item img { width: 88px; height: 88px; }
  .sa-cart-line-total { grid-column: 2; text-align: left; }
  .sa-form-grid { grid-template-columns: 1fr; }
  .sa-field--full { grid-column: auto; }
  .sa-info-grid { grid-template-columns: 1fr; }
  .sa-about-layout { grid-template-columns: 1fr; }
  .sa-about-visual img { min-height: 330px; }
  .sa-settings-layout { grid-template-columns: 1fr; }
  .sa-settings-nav { position: static; display: flex; overflow-x: auto; }
  .sa-settings-nav button { min-width: max-content; }
  .sa-status-timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 12px;
  row-gap: 30px;
  overflow-x: visible;
  width: 100%;
}

.sa-status-step {
  min-width: 0;
  font-size: 11px;
  line-height: 1.25;
}

.sa-status-step:nth-child(3n)::before {
  display: none;
}
}

@media (max-width: 430px) {
  .sa-section-heading { align-items: start; flex-direction: column; }
  .sa-hero-actions .sa-button { width: 100%; }
  .sa-hero-arrow { width: 39px; height: 39px; }
  .sa-product-grid { gap: 9px; }
  .sa-product-media { aspect-ratio: 1 / 1.12; }
  .sa-product-info { padding: 10px; }
  .sa-product-info h3 { font-size: 12px; }
  .sa-product-category { font-size: 9px; }
  .sa-add-cart { font-size: 11px; }
  .sa-countdown div { min-width: 59px; }
  .sa-newsletter form { flex-direction: column; background: transparent; padding: 0; gap: 8px; }
  .sa-newsletter input, .sa-newsletter button { min-height: 47px; border-radius: 9px; }
}
/* S.A Studio official blue/gold logo visibility */
.sa-footer-logo{display:inline-flex!important;padding:7px 10px;background:#fff;border-radius:12px}
.sa-footer-logo img{filter:none!important;width:210px!important;height:auto!important}

/* Admin uploaded sliders — full picture, no cutting */
.sa-hero-slide.is-image-only::before,
.sa-banner-slide.is-image-only::before {
  display: none;
}

.sa-hero-slide.is-image-only .sa-hero-content,
.sa-banner-slide.is-image-only .sa-banner-content {
  display: none;
}

.sa-hero-slide.is-image-only,
.sa-banner-slide.is-image-only {
  min-height: 0;
  aspect-ratio: 16 / 9;
  background: #061a3d;
}

/* Desktop: slider full width */
.sa-hero-slide.is-image-only > img,
.sa-banner-slide.is-image-only > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Mobile: full picture without cutting */
@media (max-width: 780px) {
  .sa-hero-slide.is-image-only,
  .sa-banner-slide.is-image-only {
    min-height: 0;
    aspect-ratio: 4 / 5;
    background: #061a3d;
  }

  .sa-hero-slide.is-image-only > img,
  .sa-banner-slide.is-image-only > img {
    object-fit: contain;
    object-position: center;
  }
}


/* Muted automatic homepage product videos */
.sa-video-media video{width:100%;height:100%;object-fit:cover;background:#020d24}
.sa-video-muted-badge{position:absolute;right:10px;top:10px;z-index:2;padding:6px 9px;border-radius:999px;background:rgba(2,13,36,.78);color:#fff;font-size:10px;font-weight:800;pointer-events:none}


/* Editable Deal of the Week + Premium Deals */
.sa-offers-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}
.sa-offer-card{position:relative;min-height:520px;overflow:hidden;border-radius:26px;background:var(--sa-navy);color:#fff;box-shadow:var(--sa-shadow)}
.sa-offer-card-image{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.sa-offer-card-shade{position:absolute;inset:0;background:linear-gradient(90deg,rgba(2,13,36,.94) 0%,rgba(2,13,36,.78) 48%,rgba(2,13,36,.18) 100%)}
.sa-offer-card-content{position:relative;z-index:2;display:flex;flex-direction:column;align-items:flex-start;justify-content:center;min-height:520px;padding:50px;max-width:680px}
.sa-offer-card-content h2{margin:12px 0 14px;font-size:clamp(34px,4.4vw,58px);line-height:1.03}
.sa-offer-card-content>p{margin:0 0 22px;color:#d7dfec;font-size:17px;line-height:1.65}
.sa-offer-card.is-image-only{min-height:520px;background:#fff}
.sa-offer-card.is-image-only .sa-offer-card-image{object-fit:cover}
.sa-offer-card--premium .sa-offer-card-shade{background:linear-gradient(90deg,rgba(2,13,36,.88),rgba(2,13,36,.28))}
@media(max-width:980px){.sa-offers-grid{grid-template-columns:1fr}.sa-offer-card,.sa-offer-card-content,.sa-offer-card.is-image-only{min-height:470px}}
@media(max-width:600px){.sa-offers-grid{gap:18px}.sa-offer-card,.sa-offer-card-content,.sa-offer-card.is-image-only{min-height:410px}.sa-offer-card-content{padding:30px 24px}.sa-offer-card-content>p{font-size:15px}.sa-offer-card-shade{background:linear-gradient(180deg,rgba(2,13,36,.9),rgba(2,13,36,.58))}.sa-offer-card.is-image-only{aspect-ratio:1/1;min-height:0}.sa-offer-card.is-image-only .sa-offer-card-image{object-fit:cover}}
/* Category moving slider golden */
.sa-brand-track {
  background: #d4af37 !important;
}

/* Fashion, Accessories, Kitchen waghera dark blue */
.sa-brand-track span {
  color: #071b3d !important;
  font-weight: 900;
}
/* Trust section — white background with light golden cards */
.sa-trust-strip {
  background: #ffffff !important;
  padding: 14px 0 22px;
}

.sa-trust-grid {
  background: #ffffff !important;
  padding: 10px;
  gap: 10px;
  border-radius: 20px !important;
}

/* Four light-golden boxes */
.sa-trust-item {
  background: linear-gradient(135deg, #fff9e8, #f5df9b) !important;
  border: 1px solid #e2bc52 !important;
  border-radius: 15px;
  box-shadow: 0 5px 14px rgba(7, 27, 61, 0.08);
}

/* Golden icon circles */
.sa-trust-item span {
  background: #ffffff !important;
  color: #b48216 !important;
  border: 1px solid #ddb64a;
}

/* Main names dark blue */
.sa-trust-item strong {
  color: #071b3d !important;
}

/* Small descriptions */
.sa-trust-item small {
  color: #46536a !important;
}

/* Purani dividing lines remove */
.sa-trust-item:nth-child(2),
.sa-trust-item:nth-child(-n+2),
.sa-trust-item:last-child {
  border: 1px solid #e2bc52 !important;
}

/* Mobile adjustment */
@media (max-width: 780px) {
  .sa-trust-strip {
    padding: 8px 0 18px;
  }

  .sa-trust-grid {
    padding: 8px;
    gap: 8px;
  }

  .sa-trust-item {
    padding: 14px 10px;
  }
}
/* Moving slider above Shop by Category */
.sa-moving-strip {
  padding: 10px 22px 18px;
  background: transparent;
}

.sa-moving-strip-wrap {
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(90deg, #061a3d, #0b2c63);
  border: 1px solid #d4af37;
  box-shadow: 0 6px 18px rgba(7, 27, 61, 0.10);
}

.sa-moving-strip-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  padding: 13px 0;
  animation: saMoveStrip 20s linear infinite;
}

.sa-moving-strip-track span {
  color: #f3d06a;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

@keyframes saMoveStrip {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 780px) {
  .sa-moving-strip {
    padding: 8px 22px 16px;
  }

  .sa-moving-strip-wrap {
    border-radius: 14px;
  }

  .sa-moving-strip-track {
    gap: 24px;
    padding: 11px 0;
    animation: saMoveStrip 16s linear infinite;
  }

  .sa-moving-strip-track span {
    font-size: 12px;
  }
}
/* Moving slider full screen width */
.sa-moving-strip {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 10px 0 18px !important;
}

.sa-moving-strip-wrap {
  width: 100% !important;
  border-radius: 0 !important;
  border-left: none !important;
  border-right: none !important;
  border-top: 1px solid #d4af37 !important;
  border-bottom: 1px solid #d4af37 !important;
}

html,
body {
  overflow-x: hidden;
}
/* =====================================
   S.A STUDIO ANIMATED FOOTER WAVES
===================================== */

.sa-footer-wave {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
  background: #ffffff;
  margin-bottom: -2px;
}

.sa-wave {
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 150px;
  display: block;
}

/* Golden Wave */

.sa-wave-gold {
  left: 0;
  z-index: 2;
  fill: #d4af37;
  filter: drop-shadow(0 -4px 12px rgba(212, 175, 55, 0.35));
  animation: saWaveMoveGold 9s linear infinite;
}

/* Dark Blue Wave */

.sa-wave-blue {
  left: -100%;
  z-index: 1;
  fill: #061a3a;
  animation: saWaveMoveBlue 12s linear infinite;
}

/* Golden Wave Movement */

@keyframes saWaveMoveGold {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Blue Wave Movement */

@keyframes saWaveMoveBlue {
  0% {
    transform: translateX(-10%);
  }

  50% {
    transform: translateX(15%);
  }

  100% {
    transform: translateX(-10%);
  }
}


/* =====================================
   S.A STUDIO FOOTER
===================================== */

.sa-footer {
  width: 100%;
  background: #061a3a;
  color: #ffffff;
  padding: 25px 20px 30px;
  text-align: center;
}

.sa-footer-content {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.sa-footer h2 {
  margin: 0 0 10px;
  font-size: 30px;
  color: #d4af37;
  letter-spacing: 2px;
}

.sa-footer p {
  margin: 8px 0;
  color: #e4e8ef;
  line-height: 1.6;
}

.sa-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 20px 0;
}

.sa-footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s ease;
}

.sa-footer-links a:hover {
  color: #d4af37;
}

.sa-copyright {
  padding-top: 18px;
  margin-top: 18px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
}


/* Mobile Responsive */

@media (max-width: 768px) {

  .sa-footer-wave {
    height: 105px;
  }

  .sa-wave {
    height: 105px;
  }

  .sa-footer {
    padding: 20px 15px 25px;
  }

  .sa-footer h2 {
    font-size: 25px;
  }

  .sa-footer p {
    font-size: 14px;
  }

  .sa-footer-links {
    gap: 12px;
  }

  .sa-footer-links a {
    font-size: 13px;
  }
}


/* Reduce animation for users who disable motion */

@media (prefers-reduced-motion: reduce) {
  .sa-wave-gold,
  .sa-wave-blue {
    animation: none;
  }
}
/* =====================================
   S.A STUDIO SEAMLESS ANIMATED WAVES
===================================== */

.sa-footer-wave {
  position: relative;
  width: 100%;
  height: 125px;
  overflow: hidden;
  background: #ffffff;
  margin-bottom: -2px;
}

.sa-wave-track {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 200%;
  height: 100%;
  display: flex;
  will-change: transform;
}

.sa-wave-piece {
  display: block;
  width: 50%;
  height: 100%;
  flex: 0 0 50%;
}

/* Dark Blue Wave */

.sa-blue-track {
  z-index: 1;
  animation: saBlueWaveMove 14s linear infinite;
}

.sa-blue-track path {
  fill: #061a3a;
}

/* Golden Wave */

.sa-gold-track {
  z-index: 2;
  animation: saGoldWaveMove 10s linear infinite;
  filter: drop-shadow(
    0 -3px 7px rgba(212, 175, 55, 0.35)
  );
}

.sa-gold-track path {
  fill: #d4af37;
}

/* Gold moves left */

@keyframes saGoldWaveMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Blue moves opposite direction */

@keyframes saBlueWaveMove {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* Mobile */

@media (max-width: 768px) {
  .sa-footer-wave {
    height: 100px;
  }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {
  .sa-gold-track,
  .sa-blue-track {
    animation: none;
  }
}
/* Wave ko upar newsletter ke qareeb lana */
.sa-footer-wave {
  margin-top: -70px;
  height: 110px;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .sa-footer-wave {
    margin-top: -55px;
    height: 100px;
  }
}
/* ==========================================
   S.A STUDIO LUXURY GOLD & BLUE MOVING WAVE
========================================== */

.sa-luxury-wave {
  position: relative;
  width: 100%;
  height: 165px;
  overflow: hidden;
  background: #ffffff;
  margin-bottom: -3px;
}

.sa-luxury-wave-svg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 200%;
  height: 100%;
  display: block;
  will-change: transform;
  animation: saLuxuryWaveMove 14s linear infinite;
}

/* Continuous Seamless Movement */

@keyframes saLuxuryWaveMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Mobile */

@media (max-width: 768px) {
  .sa-luxury-wave {
    height: 115px;
  }

  .sa-luxury-wave-svg {
    animation-duration: 11s;
  }
}

/* Small Mobile */

@media (max-width: 480px) {
  .sa-luxury-wave {
    height: 100px;
  }
}

/* Motion Disabled Setting */

@media (prefers-reduced-motion: reduce) {
  .sa-luxury-wave-svg {
    animation: none;
  }
}
.sa-luxury-wave-svg {
  shape-rendering: geometricPrecision;
}
/* S.A Studio Luxury Wave Final Adjustment */

.sa-luxury-wave {
  height: 90px !important;
  margin-top: -75px !important;
  margin-bottom: -3px !important;
  overflow: hidden !important;
  background: #ffffff !important;
}

.sa-luxury-wave-svg {
  width: 202% !important;
  height: 100% !important;
  left: -1% !important;
  bottom: -2px !important;

  /* Smooth movement */
  animation-duration: 16s !important;
  animation-timing-function: linear !important;

  /* Duplicate joining line hide */
  shape-rendering: geometricPrecision;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

/* Mobile Adjustment */

@media (max-width: 768px) {
  .sa-luxury-wave {
    height: 82px !important;
    margin-top: -65px !important;
  }

  .sa-luxury-wave-svg {
    width: 204% !important;
    left: -2% !important;
    animation-duration: 14s !important;
  }
}
/* Footer ko fixed mobile menu se bachana */
@media (max-width: 768px) {
  [data-site-footer] {
    padding-bottom: 115px !important;
  }

  .sa-luxury-wave {
    margin-top: 0 !important;
    height: 105px !important;
  }

  .sa-luxury-wave-svg {
    bottom: -3px !important;
  }
}
/* S.A Studio Final Seamless Luxury Wave */

.sa-final-wave {
  position: relative;
  width: 100%;
  height: 105px;
  overflow: hidden;
  background: #ffffff;
  margin-top: -55px;
  margin-bottom: -3px;
}

.sa-final-wave-svg {
  position: absolute;
  left: 0;
  bottom: -2px;
  display: block;
  width: 200%;
  height: 100%;
  animation: saFinalWaveMove 15s linear infinite;
  will-change: transform;
  shape-rendering: geometricPrecision;
  backface-visibility: hidden;
}

@keyframes saFinalWaveMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .sa-final-wave {
    height: 95px;
    margin-top: -65px;
  }

  .sa-final-wave-svg {
    animation-duration: 13s;
  }

  [data-site-footer] {
    display: block;
    padding-bottom: 110px;
    background: #061a3a;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sa-final-wave-svg {
    animation: none;
  }
}
/* V12 product gallery: swipe, autoplay, arrows, dots and thumbnails */
.sa-product-gallery{display:grid;grid-template-columns:1fr;gap:12px;min-width:0}.sa-product-stage{position:relative;overflow:hidden;border-radius:20px;background:#f2f3f5;touch-action:pan-y}.sa-product-slide-track{display:flex;width:100%;transition:transform .42s cubic-bezier(.22,.61,.36,1);will-change:transform}.sa-product-slide{flex:0 0 100%;margin:0;opacity:.55;transition:opacity .25s}.sa-product-slide.is-active{opacity:1}.sa-product-slide img{display:block;width:100%;aspect-ratio:1/1.03;object-fit:contain;background:#f2f3f5;user-select:none}.sa-product-arrow{position:absolute;top:50%;z-index:3;display:grid;place-items:center;width:44px;height:44px;margin-top:-22px;border:1px solid rgba(6,26,61,.18);border-radius:50%;background:rgba(255,255,255,.9);color:#061a3d;font-size:31px;box-shadow:0 7px 22px rgba(6,26,61,.12)}.sa-product-arrow.is-prev{left:12px}.sa-product-arrow.is-next{right:12px}.sa-product-dots{position:absolute;left:50%;bottom:13px;z-index:3;display:flex;gap:6px;transform:translateX(-50%);padding:6px 9px;border-radius:999px;background:rgba(6,26,61,.55)}.sa-product-dots button{width:7px;height:7px;padding:0;border:0;border-radius:999px;background:#c8ced8;transition:.2s}.sa-product-dots button.is-active{width:23px;background:#d4aa4f}.sa-product-counter{position:absolute;right:12px;bottom:13px;z-index:3;padding:6px 9px;border-radius:999px;background:rgba(6,26,61,.72);color:#fff;font-size:11px;font-weight:800}.sa-product-thumbs{display:flex;order:2;gap:9px;overflow-x:auto;padding:2px 1px 7px;scrollbar-width:none}.sa-product-thumbs::-webkit-scrollbar{display:none}.sa-product-thumb{flex:0 0 76px;padding:3px;border:2px solid transparent;border-radius:12px;background:#fff;transition:.2s}.sa-product-thumb.is-active{border-color:#d4aa4f;box-shadow:0 0 0 2px rgba(212,170,79,.18)}.sa-product-thumb img{display:block;width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:8px;background:#f2f3f5}
@media(max-width:780px){.sa-product-stage{border-radius:0;margin-left:-23px;margin-right:-23px}.sa-product-slide img{aspect-ratio:1/1.08}.sa-product-arrow{width:40px;height:40px}.sa-product-thumbs{padding-left:0}.sa-product-thumb{flex-basis:68px}}
