:root {
  --rts-blue: #1769e0;
  --rts-blue-dark: #0b2352;
  --rts-lime: #a5f532;
  --rts-ink: #101828;
  --rts-muted: #667085;
  --rts-line: #e6ebf2;
  --rts-soft: #f4f7fb;
  --rts-white: #fff;
  --rts-radius: 18px;
  --rts-shadow: 0 16px 45px rgba(20, 34, 66, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--rts-ink); background: var(--rts-white); font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.rts-container { width: min(1320px, calc(100% - 40px)); margin-inline: auto; }

.rts-topbar { background: #090c12; color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .02em; }
.rts-topbar__inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.rts-topbar span { color: var(--rts-lime); }
.rts-topbar a:hover { color: var(--rts-lime); }

.rts-header { position: relative; z-index: 50; background: var(--rts-white); box-shadow: 0 2px 12px rgba(16, 24, 40, .05); }
.rts-header__main { min-height: 92px; display: grid; grid-template-columns: minmax(200px, 270px) 1fr auto; align-items: center; gap: 34px; }
.rts-brand { display: flex; align-items: center; }
.custom-logo { width: auto; max-height: 58px; }
.rts-brand__text { display: inline-flex; align-items: baseline; gap: 7px; font-family: Manrope, sans-serif; line-height: 1; }
.rts-brand__text span { color: var(--rts-blue); font-size: clamp(22px, 3vw, 31px); font-weight: 800; letter-spacing: -1.5px; }
.rts-brand__text strong { max-width: 68px; font-size: 11px; line-height: 1.05; letter-spacing: .05em; }
.rts-search form { position: relative; }
.rts-search input[type="search"] { width: 100%; height: 52px; padding: 0 60px 0 20px; border: 1px solid var(--rts-line); border-radius: 12px; background: #f6f8fb; color: var(--rts-ink); outline: none; transition: .2s ease; }
.rts-search input[type="search"]:focus { background: #fff; border-color: var(--rts-blue); box-shadow: 0 0 0 4px rgba(23, 105, 224, .10); }
.rts-search button { position: absolute; inset: 0 0 0 auto; width: 54px; border: 0; background: transparent; color: var(--rts-ink); font-size: 30px; cursor: pointer; }
.rts-header-actions { display: flex; align-items: center; gap: 8px; }
.rts-header-actions a { position: relative; min-width: 62px; padding: 8px; display: grid; place-items: center; gap: 2px; border-radius: 10px; }
.rts-header-actions a:hover { background: var(--rts-soft); color: var(--rts-blue); }
.rts-action-icon { font-size: 22px; line-height: 1; }
.rts-action-label { font-size: 10px; font-weight: 700; }
.rts-cart-count { position: absolute; top: 1px; right: 8px; min-width: 18px; height: 18px; display: grid; place-items: center; border-radius: 20px; background: var(--rts-lime); color: #102042; font-size: 10px; font-weight: 800; }
.rts-menu-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 0; border-radius: 9px; background: var(--rts-soft); cursor: pointer; }
.rts-menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--rts-ink); }
.rts-nav { border-top: 1px solid var(--rts-line); }
.rts-nav__menu { min-height: 56px; margin: 0; padding: 0; display: flex; align-items: center; justify-content: center; gap: clamp(28px, 4vw, 68px); list-style: none; }
.rts-nav__menu li { margin: 0; }
.rts-nav__menu a { position: relative; display: block; padding: 18px 0; font-size: 13px; font-weight: 700; }
.rts-nav__menu a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 12px; height: 2px; background: var(--rts-blue); transition: .2s ease; }
.rts-nav__menu a:hover { color: var(--rts-blue); }
.rts-nav__menu a:hover::after { right: 0; }

.rts-category-strip { padding: 28px 0 22px; overflow: hidden; }
.rts-category-strip__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.rts-category { display: grid; justify-items: center; gap: 9px; text-align: center; font-size: 13px; transition: transform .2s ease; }
.rts-category:hover { transform: translateY(-4px); color: var(--rts-blue); }
.rts-category__circle { width: 92px; height: 92px; padding: 6px; display: grid; place-items: center; border: 3px solid var(--rts-blue); border-radius: 50%; background: #fff; box-shadow: 0 6px 22px rgba(16, 24, 40, .08); }
.rts-category__circle span { width: 100%; height: 100%; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg, #eaf2ff, #f8fbff); color: var(--rts-blue-dark); font-size: 34px; font-weight: 800; }

.rts-hero { padding: 10px 0 30px; }
.rts-hero__inner { position: relative; min-height: 450px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; overflow: hidden; border-radius: 30px; background: linear-gradient(125deg, #071a3b 0%, #0c2f6d 68%, #1154bd 100%); color: #fff; box-shadow: var(--rts-shadow); }
.rts-hero__inner::before { content: ""; position: absolute; width: 500px; height: 500px; right: -170px; top: -230px; border-radius: 50%; background: var(--rts-lime); opacity: .12; }
.rts-hero__content { position: relative; z-index: 2; padding: clamp(42px, 6vw, 78px); }
.rts-pill { display: inline-flex; padding: 7px 13px; border-radius: 999px; background: var(--rts-lime); color: #102042; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.rts-hero h1 { max-width: 720px; margin: 20px 0 18px; font-family: Manrope, sans-serif; font-size: clamp(42px, 5.5vw, 76px); line-height: .98; letter-spacing: -3px; }
.rts-hero h1::first-line { color: #fff; }
.rts-hero__content > p { max-width: 650px; margin: 0; color: #d6e4ff; font-size: 17px; line-height: 1.7; }
.rts-hero__actions { margin-top: 30px; display: flex; align-items: center; gap: 24px; }
.rts-btn { min-height: 49px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 10px; background: var(--rts-lime); color: #102042; font-size: 13px; font-weight: 800; box-shadow: 0 9px 20px rgba(165, 245, 50, .18); transition: .2s ease; }
.rts-btn:hover { transform: translateY(-2px); background: #b7ff4f; }
.rts-btn--dark { background: var(--rts-blue-dark); color: #fff; box-shadow: none; }
.rts-btn--light { background: #fff; color: var(--rts-blue-dark); box-shadow: none; }
.rts-link { font-size: 13px; font-weight: 700; color: #fff; }
.rts-link:hover { color: var(--rts-lime); }
.rts-hero__proof { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 18px; color: #b9cef4; font-size: 11px; font-weight: 600; }
.rts-hero__visual { position: relative; min-height: 450px; align-self: stretch; }
.rts-orbit { position: absolute; border: 1px solid rgba(255, 255, 255, .18); border-radius: 50%; }
.rts-orbit--one { width: 470px; height: 470px; right: -20px; top: -10px; }
.rts-orbit--two { width: 330px; height: 330px; right: 55px; top: 60px; border-color: rgba(165, 245, 50, .26); }
.rts-phone-card { position: absolute; width: 190px; height: 350px; top: 48px; border-radius: 31px; box-shadow: 0 30px 50px rgba(0, 0, 0, .28); }
.rts-phone-card--back { right: 210px; transform: rotate(-11deg); background: linear-gradient(145deg, #7baef5, #153f89); border: 4px solid rgba(255, 255, 255, .5); }
.rts-phone-card--back::before, .rts-phone-card--back::after, .rts-phone-card--back span { content: ""; position: absolute; width: 36px; height: 36px; border: 4px solid #a9c9f6; border-radius: 50%; background: #071a3b; }
.rts-phone-card--back::before { top: 22px; left: 20px; }
.rts-phone-card--back::after { top: 22px; left: 66px; }
.rts-phone-card--back span { top: 68px; left: 20px; }
.rts-phone-card--front { right: 82px; transform: rotate(8deg); background: #090d14; border: 4px solid #3a4659; padding: 8px; }
.rts-phone-notch { position: absolute; z-index: 2; width: 68px; height: 18px; top: 11px; left: 50%; transform: translateX(-50%); border-radius: 10px; background: #090d14; }
.rts-phone-screen { height: 100%; padding: 70px 20px 20px; display: flex; flex-direction: column; justify-content: center; border-radius: 21px; background: linear-gradient(155deg, #eaf2ff, #b7d3fd 55%, #a5f532); color: #102042; }
.rts-phone-screen small { font-size: 10px; font-style: normal; font-weight: 800; letter-spacing: .08em; }
.rts-phone-screen strong { margin: 7px 0; font-family: Manrope, sans-serif; font-size: 29px; line-height: .95; }
.rts-phone-screen em { font-size: 13px; font-style: normal; }
.rts-floating-tag { position: absolute; z-index: 3; padding: 12px 15px; border-radius: 12px; background: #fff; color: var(--rts-ink); box-shadow: var(--rts-shadow); }
.rts-floating-tag--grade { left: 25px; top: 90px; }
.rts-floating-tag--grade small { display: block; color: var(--rts-muted); font-size: 8px; font-weight: 800; letter-spacing: .1em; }
.rts-floating-tag--grade strong { font-size: 15px; }
.rts-floating-tag--return { right: 25px; bottom: 45px; display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; }
.rts-floating-tag--return strong { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--rts-lime); }

.rts-section { padding: 75px 0; }
.rts-section--deals { background: var(--rts-soft); }
.rts-section-head { margin-bottom: 28px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.rts-section-head h2 { margin: 4px 0 0; font-family: Manrope, sans-serif; font-size: clamp(28px, 3vw, 42px); letter-spacing: -1.5px; }
.rts-section-head p { margin: 8px 0 0; color: var(--rts-muted); }
.rts-section-head > a { color: var(--rts-blue); font-size: 13px; font-weight: 800; }
.rts-section-head--center { justify-content: center; text-align: center; }
.rts-eyebrow { color: var(--rts-blue); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

.rts-products, .woocommerce ul.products { display: grid !important; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; margin: 0 !important; }
.rts-product-card, .woocommerce ul.products li.product { position: relative !important; width: auto !important; margin: 0 !important; float: none !important; overflow: hidden; border: 1px solid var(--rts-line); border-radius: var(--rts-radius); background: #fff; box-shadow: 0 8px 24px rgba(16, 24, 40, .05); transition: transform .2s ease, box-shadow .2s ease; }
.rts-product-card:hover, .woocommerce ul.products li.product:hover { transform: translateY(-5px); box-shadow: var(--rts-shadow); }
.rts-product-card__image { position: relative; min-height: 260px; padding: 22px; display: grid; place-items: center; background: linear-gradient(145deg, #f8fafc, #eef3f8); }
.rts-product-card__image img { max-height: 220px; width: auto !important; object-fit: contain; margin: 0 !important; transition: transform .25s ease; }
.rts-product-card:hover .rts-product-card__image img { transform: scale(1.035); }
.rts-badge { position: absolute; z-index: 2; top: 14px; left: 14px; padding: 5px 9px; border-radius: 6px; background: #ef4444; color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .05em; }
.rts-badge--green { background: #138a50; }
.rts-badge--dark { background: #263244; }
.rts-product-card__content { padding: 17px 17px 18px; }
.rts-product-card__meta { min-height: 22px; display: flex; align-items: center; justify-content: space-between; gap: 8px; color: var(--rts-muted); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.rts-grade { padding: 3px 7px; border-radius: 5px; background: #eaf2ff; color: var(--rts-blue); }
.rts-stock-dot::before { content: ""; width: 6px; height: 6px; margin-right: 4px; display: inline-block; border-radius: 50%; background: #1ca463; }
.rts-product-card__title { min-height: 44px; margin: 9px 0 5px; font-size: 15px; line-height: 1.4; }
.rts-product-card__title a:hover { color: var(--rts-blue); }
.rts-product-card__rating { min-height: 20px; display: flex; align-items: center; gap: 7px; color: var(--rts-muted); font-size: 10px; }
.rts-product-card__rating .star-rating { margin: 0; color: #f4a523; font-size: 11px; }
.rts-product-card__price { min-height: 40px; margin: 5px 0 2px; color: var(--rts-blue-dark); font-size: 20px; font-weight: 800; }
.rts-product-card__price del { color: #98a2b3; font-size: 12px; font-weight: 500; }
.rts-product-card__price ins { text-decoration: none; }
.rts-product-card__assurance { margin: 6px 0 13px; color: #168451; font-size: 10px; font-weight: 700; }
.rts-product-card .button, .woocommerce ul.products li.product .button { width: 100%; min-height: 42px; margin: 0 !important; display: flex !important; align-items: center; justify-content: center; border-radius: 8px !important; background: var(--rts-blue) !important; color: #fff !important; font-size: 12px !important; font-weight: 800 !important; }
.rts-product-card .button:hover, .woocommerce ul.products li.product .button:hover { background: var(--rts-blue-dark) !important; }
.rts-empty-products { grid-column: 1 / -1; padding: 55px 20px; border: 1px dashed #cbd5e1; border-radius: var(--rts-radius); background: #fff; text-align: center; }
.rts-empty-products__icon { font-size: 38px; }
.rts-empty-products h3 { margin: 7px 0; }
.rts-empty-products p { margin: 0; color: var(--rts-muted); }

.rts-price-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.rts-price-grid a { position: relative; min-height: 130px; padding: 23px 18px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; border: 1px solid #dfe8f4; border-radius: 17px; background: linear-gradient(145deg, #fff, #edf4ff); transition: .2s ease; }
.rts-price-grid a::before { content: "₹"; position: absolute; right: -5px; bottom: -38px; color: var(--rts-blue); font-size: 108px; font-weight: 800; opacity: .07; }
.rts-price-grid a:hover { border-color: var(--rts-blue); transform: translateY(-4px); box-shadow: var(--rts-shadow); }
.rts-price-grid small { color: var(--rts-muted); font-size: 11px; font-weight: 700; }
.rts-price-grid strong { color: var(--rts-blue-dark); font-family: Manrope, sans-serif; font-size: 24px; }
.rts-price-grid span { position: absolute; right: 15px; top: 15px; color: var(--rts-blue); font-weight: 800; }

.rts-promo { padding: 20px 0; }
.rts-promo__inner { position: relative; min-height: 330px; padding: 50px 60px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; overflow: hidden; border-radius: 28px; background: linear-gradient(125deg, #d9ff9c, var(--rts-lime)); }
.rts-promo h2 { max-width: 670px; margin: 7px 0 12px; font-family: Manrope, sans-serif; font-size: clamp(32px, 4vw, 55px); line-height: 1.05; letter-spacing: -2px; }
.rts-promo p { max-width: 580px; margin: 0 0 24px; color: #314314; }
.rts-promo .rts-eyebrow { color: #234000; }
.rts-laptop { position: relative; height: 250px; }
.rts-laptop__screen { position: absolute; width: min(390px, 85%); height: 220px; right: 5%; top: 0; padding: 16px; display: grid; place-items: center; border: 10px solid #202b3e; border-radius: 15px; background: linear-gradient(145deg, #0b2352, #1769e0); color: #fff; box-shadow: 0 25px 45px rgba(42, 69, 12, .22); transform: perspective(800px) rotateY(-8deg); }
.rts-laptop__screen span { font-size: 18px; text-align: center; letter-spacing: .1em; }
.rts-laptop__screen strong { font-size: 42px; letter-spacing: -.05em; }
.rts-laptop__base { position: absolute; right: 1%; bottom: 4px; width: min(430px, 93%); height: 25px; border-radius: 2px 2px 18px 18px; background: linear-gradient(#d7deea, #8995a8); transform: perspective(400px) rotateX(55deg); }

.rts-trust { padding: 80px 0; background: var(--rts-blue-dark); color: #fff; }
.rts-trust .rts-eyebrow { color: var(--rts-lime); }
.rts-trust .rts-section-head p { color: #b7c9e8; }
.rts-trust__grid { margin-top: 42px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.rts-trust__grid > div { padding: 28px 24px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--rts-radius); background: rgba(255,255,255,.06); }
.rts-trust__grid > div > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; background: var(--rts-lime); color: #102042; font-size: 20px; font-weight: 800; }
.rts-trust__grid h3 { margin: 18px 0 8px; font-size: 17px; }
.rts-trust__grid p { margin: 0; color: #b7c9e8; font-size: 13px; }

.rts-faq__layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.rts-faq h2 { margin: 7px 0 15px; font-family: Manrope, sans-serif; font-size: clamp(32px, 4vw, 50px); line-height: 1.08; letter-spacing: -2px; }
.rts-faq p { color: var(--rts-muted); }
.rts-accordion { border-top: 1px solid var(--rts-line); }
.rts-accordion details { border-bottom: 1px solid var(--rts-line); }
.rts-accordion summary { padding: 20px 35px 20px 0; position: relative; cursor: pointer; list-style: none; font-weight: 700; }
.rts-accordion summary::-webkit-details-marker { display: none; }
.rts-accordion summary::after { content: "+"; position: absolute; right: 4px; top: 15px; font-size: 26px; color: var(--rts-blue); }
.rts-accordion details[open] summary::after { content: "−"; }
.rts-accordion details p { margin: 0; padding: 0 35px 22px 0; font-size: 14px; }

.rts-newsletter { padding: 38px 0; background: var(--rts-blue); color: #fff; }
.rts-newsletter__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.rts-newsletter .rts-eyebrow { color: var(--rts-lime); }
.rts-newsletter h2 { margin: 5px 0 0; font-family: Manrope, sans-serif; font-size: clamp(24px, 3vw, 38px); }
.rts-footer { padding-top: 65px; background: #090c12; color: #c7cfdb; }
.rts-footer__grid { display: grid; grid-template-columns: 1.35fr .7fr .8fr .8fr; gap: 55px; padding-bottom: 50px; }
.rts-brand__text--footer span { color: var(--rts-lime); }
.rts-brand__text--footer strong { color: #fff; }
.rts-footer h3 { margin: 0 0 17px; color: #fff; font-size: 14px; }
.rts-footer p { max-width: 380px; margin: 17px 0; font-size: 13px; }
.rts-footer__operator { color: #fff; font-weight: 700; }
.rts-footer ul { margin: 0; padding: 0; list-style: none; }
.rts-footer li { margin: 9px 0; font-size: 12px; }
.rts-footer a:hover { color: var(--rts-lime); }
.rts-footer__bottom { padding: 19px 0; border-top: 1px solid rgba(255,255,255,.1); color: #7f8b9d; font-size: 11px; }
.rts-whatsapp { position: fixed; z-index: 70; right: 20px; bottom: 20px; width: 54px; height: 54px; display: grid; place-items: center; border: 3px solid #fff; border-radius: 50%; background: #25d366; color: #fff; font-size: 25px; box-shadow: 0 12px 28px rgba(0,0,0,.22); }

.rts-content, .rts-shop-main { padding: 55px 0 80px; min-height: 60vh; background: #f7f9fc; }
.rts-page { max-width: 960px; }
.rts-page > article { padding: clamp(25px, 5vw, 60px); border: 1px solid var(--rts-line); border-radius: var(--rts-radius); background: #fff; box-shadow: var(--rts-shadow); }
.rts-page__header h1 { margin: 0 0 28px; font-family: Manrope, sans-serif; font-size: clamp(34px, 5vw, 56px); line-height: 1.05; letter-spacing: -2px; }
.rts-page__content { color: #344054; }
.rts-page__content h2, .rts-page__content h3 { color: var(--rts-ink); }
.rts-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rts-post-card { overflow: hidden; border-radius: var(--rts-radius); background: #fff; box-shadow: var(--rts-shadow); }
.rts-post-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.rts-post-card__content { padding: 24px; }
.rts-post-card__content h2 { margin-top: 0; }

/* WooCommerce pages */
.woocommerce .woocommerce-breadcrumb { color: var(--rts-muted); font-size: 12px; }
.woocommerce .woocommerce-breadcrumb a { color: var(--rts-blue); }
.woocommerce-products-header__title, .woocommerce div.product .product_title, .cart_totals h2, .woocommerce-checkout h3 { font-family: Manrope, sans-serif; letter-spacing: -1px; }
.woocommerce .woocommerce-ordering select { min-height: 44px; padding: 0 34px 0 14px; border: 1px solid var(--rts-line); border-radius: 9px; background: #fff; }
.woocommerce span.onsale { min-width: 48px; min-height: 28px; padding: 5px 9px; display: grid; place-items: center; border-radius: 6px; background: #ef4444; line-height: 1; font-size: 10px; }
.woocommerce div.product { padding: clamp(20px, 4vw, 45px); border: 1px solid var(--rts-line); border-radius: 22px; background: #fff; box-shadow: var(--rts-shadow); }
.woocommerce div.product div.images img { border-radius: 16px; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--rts-blue); font-size: 25px; font-weight: 800; }
.woocommerce div.product form.cart .button, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt { min-height: 48px; border-radius: 9px; background: var(--rts-blue); }
.woocommerce div.product form.cart .button:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover { background: var(--rts-blue-dark); }
.woocommerce div.product form.cart div.quantity input { min-height: 48px; border: 1px solid var(--rts-line); border-radius: 9px; }
.rts-single-assurance { margin: 22px 0; padding: 15px; display: grid; gap: 9px; border: 1px solid #dfe8f4; border-radius: 12px; background: #f4f8ff; color: #24503c; font-size: 12px; font-weight: 700; }
.rts-checkout-notice { margin: 0 0 18px; padding: 12px 14px; border-left: 4px solid var(--rts-blue); border-radius: 7px; background: #eef5ff; color: var(--rts-blue-dark); font-size: 13px; }
.woocommerce div.product .woocommerce-tabs ul.tabs { padding: 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs::before { border-color: var(--rts-line); }
.woocommerce table.shop_table { border-color: var(--rts-line); border-radius: 14px; background: #fff; }
.woocommerce-cart-form, .cart_totals, .woocommerce-checkout-review-order, .woocommerce-form-coupon, .woocommerce-form-login { padding: 20px; border-radius: 14px; background: #fff; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .select2-container--default .select2-selection--single { min-height: 46px; border: 1px solid #d6dce6; border-radius: 8px; }
.woocommerce-message, .woocommerce-info { border-top-color: var(--rts-blue); }
.woocommerce-message::before, .woocommerce-info::before { color: var(--rts-blue); }

@media (max-width: 1100px) {
  .rts-header__main { grid-template-columns: 220px 1fr auto; gap: 18px; }
  .rts-products, .woocommerce ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .rts-price-grid { grid-template-columns: repeat(3, 1fr); }
  .rts-trust__grid { grid-template-columns: repeat(2, 1fr); }
  .rts-phone-card--back { right: 145px; }
  .rts-phone-card--front { right: 35px; }
  .rts-floating-tag--grade { left: 0; }
}

@media (max-width: 820px) {
  .rts-container { width: min(100% - 28px, 720px); }
  .rts-topbar__inner { justify-content: center; text-align: center; }
  .rts-topbar a { display: none; }
  .rts-header__main { min-height: 74px; grid-template-columns: auto 1fr auto; }
  .rts-menu-toggle { display: block; }
  .rts-brand { justify-content: center; }
  .rts-brand__text span { font-size: 23px; }
  .rts-brand__text strong { font-size: 9px; }
  .rts-search { grid-column: 1 / -1; grid-row: 2; padding-bottom: 13px; }
  .rts-search input[type="search"] { height: 46px; }
  .rts-action-label { display: none; }
  .rts-header-actions a { min-width: 40px; }
  .rts-header-actions a:first-child { display: none; }
  .rts-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; background: #fff; border-top: 1px solid var(--rts-line); box-shadow: 0 18px 35px rgba(16, 24, 40, .15); }
  .rts-nav.is-open { display: block; }
  .rts-nav__menu { padding: 12px 20px 22px; display: block; }
  .rts-nav__menu a { padding: 12px 5px; border-bottom: 1px solid var(--rts-line); }
  .rts-category-strip { overflow-x: auto; }
  .rts-category-strip__grid { min-width: 680px; }
  .rts-category__circle { width: 74px; height: 74px; }
  .rts-hero__inner { grid-template-columns: 1fr; }
  .rts-hero__content { padding: 50px 30px; }
  .rts-hero__visual { display: none; }
  .rts-products, .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rts-product-card__image { min-height: 210px; }
  .rts-promo__inner { padding: 42px 30px; grid-template-columns: 1fr; }
  .rts-laptop { margin-top: 35px; }
  .rts-faq__layout { grid-template-columns: 1fr; gap: 35px; }
  .rts-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .rts-post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .rts-container { width: min(100% - 20px, 500px); }
  .rts-topbar { font-size: 9px; }
  .rts-header__main { gap: 8px; }
  .rts-menu-toggle { width: 38px; height: 38px; }
  .rts-brand__text { gap: 4px; }
  .rts-brand__text span { font-size: 18px; letter-spacing: -.8px; }
  .rts-brand__text strong { max-width: 44px; font-size: 7px; }
  .custom-logo { max-width: 155px; max-height: 45px; }
  .rts-category-strip { padding-top: 18px; }
  .rts-category-strip__grid { min-width: 570px; gap: 10px; }
  .rts-category__circle { width: 64px; height: 64px; }
  .rts-category__circle span { font-size: 25px; }
  .rts-category { font-size: 11px; }
  .rts-hero { padding-top: 4px; }
  .rts-hero__inner { min-height: auto; border-radius: 20px; }
  .rts-hero__content { padding: 42px 23px; }
  .rts-pill { font-size: 8px; }
  .rts-hero h1 { margin-top: 16px; font-size: 39px; letter-spacing: -2px; }
  .rts-hero__content > p { font-size: 14px; }
  .rts-hero__actions { align-items: flex-start; flex-direction: column; gap: 15px; }
  .rts-hero__proof { display: grid; gap: 7px; }
  .rts-section { padding: 52px 0; }
  .rts-section-head { align-items: start; }
  .rts-section-head h2 { font-size: 29px; }
  .rts-section-head > a { padding-top: 10px; white-space: nowrap; }
  .rts-products, .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .rts-product-card__image { min-height: 160px; padding: 14px; }
  .rts-product-card__image img { max-height: 140px; }
  .rts-product-card__content { padding: 11px; }
  .rts-product-card__meta { display: block; }
  .rts-stock-dot { display: none; }
  .rts-product-card__title { min-height: 52px; font-size: 13px; }
  .rts-product-card__rating { display: none; }
  .rts-product-card__price { font-size: 17px; }
  .rts-product-card__assurance { min-height: 28px; font-size: 8px; }
  .rts-product-card .button, .woocommerce ul.products li.product .button { min-height: 38px; font-size: 10px !important; }
  .rts-price-grid { grid-template-columns: repeat(2, 1fr); gap: 9px; }
  .rts-price-grid a { min-height: 110px; padding: 18px 13px; }
  .rts-price-grid strong { font-size: 20px; }
  .rts-promo__inner { padding: 37px 23px; border-radius: 20px; }
  .rts-promo h2 { font-size: 34px; }
  .rts-laptop { height: 190px; }
  .rts-laptop__screen { height: 170px; }
  .rts-laptop__screen strong { font-size: 30px; }
  .rts-trust__grid { grid-template-columns: 1fr; gap: 10px; }
  .rts-trust__grid > div { padding: 22px; }
  .rts-faq h2 { font-size: 36px; }
  .rts-newsletter__inner { align-items: flex-start; flex-direction: column; }
  .rts-footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .rts-post-grid { grid-template-columns: 1fr; }
  .woocommerce div.product { padding: 14px; }
}
