/* ============================================================
   RUSHABH ORNA — Section-specific styles
   ============================================================ */

/* ---------- Announcement bar ---------- */
.ro-announce {
  background: var(--ro-dark);
  color: rgba(247, 244, 238, 0.85);
  text-align: center;
  padding: 9px var(--ro-sp-md);
}

.ro-announce__text {
  font-size: var(--ro-fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ro-announce__text i {
  color: var(--ro-gold-soft);
  margin-right: 6px;
}

/* ---------- Navigation ---------- */
.ro-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background-color var(--ro-duration) var(--ro-ease),
              box-shadow var(--ro-duration) var(--ro-ease);
}

.ro-nav.is-scrolled {
  background: color-mix(in srgb, var(--ro-bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--ro-shadow-sm);
}

.ro-nav__inner {
  height: var(--ro-nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--ro-sp-lg);
}

.ro-nav__links {
  display: flex;
  gap: var(--ro-sp-lg);
}

.ro-nav__link {
  position: relative;
  font-size: var(--ro-fs-small);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ro-t1);
  padding: 6px 0;
}

.ro-nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--ro-gold);
  transition: width var(--ro-duration) var(--ro-ease),
              left var(--ro-duration) var(--ro-ease);
}

.ro-nav__link:hover::after,
.ro-nav__link.is-active::after {
  width: 100%;
  left: 0;
}

.ro-nav__brand {
  justify-self: center;
  display: inline-flex;
}

.ro-nav__logo {
  height: 52px;
  width: auto;
}

.ro-nav__logo--light {
  display: none;
}

[data-theme="dark"] .ro-nav__logo--dark {
  display: none;
}

[data-theme="dark"] .ro-nav__logo--light {
  display: block;
}

.ro-nav__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: var(--ro-sp-sm);
}

.ro-nav__icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--ro-r-full);
  color: var(--ro-t1);
  transition: background-color var(--ro-duration) var(--ro-ease),
              color var(--ro-duration) var(--ro-ease);
}

.ro-nav__icon-btn:hover {
  background: var(--ro-surface-2);
  color: var(--ro-gold);
}

.ro-nav__cart-count {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 500;
  border-radius: var(--ro-r-full);
  background: var(--ro-gold);
  color: #fff;
}

.ro-nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  padding: 10px;
}

.ro-nav__burger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--ro-t1);
  transition: transform var(--ro-duration) var(--ro-ease),
              opacity var(--ro-duration) var(--ro-ease);
}

.ro-nav__burger.is-open span:nth-child(1) {
  transform: translateY(3.75px) rotate(45deg);
}

.ro-nav__burger.is-open span:nth-child(2) {
  transform: translateY(-3.75px) rotate(-45deg);
}

.ro-nav__mobile {
  display: none;
  flex-direction: column;
  gap: var(--ro-sp-xs);
  padding: var(--ro-sp-md) var(--ro-sp-lg) var(--ro-sp-lg);
  background: var(--ro-bg);
  border-top: 1px solid var(--ro-line-soft);
  box-shadow: var(--ro-shadow-md);
}

.ro-nav__mobile.is-open {
  display: flex;
}

.ro-nav__mobile-link {
  font-family: var(--ro-fh);
  font-size: 1.4rem;
  color: var(--ro-t1);
  padding: 10px 0;
  border-bottom: 1px solid var(--ro-line-soft);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ro-ease), transform 0.5s var(--ro-ease), color 0.3s;
}

.ro-nav__mobile.is-open .ro-nav__mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.ro-nav__mobile-link:hover {
  color: var(--ro-gold);
}

/* ---------- Hero ---------- */
.ro-hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--ro-sp-xl) var(--ro-sp-2xl);
  background:
    radial-gradient(1200px 600px at 85% -10%, var(--ro-bg-alt), transparent 65%),
    var(--ro-bg);
}

.ro-hero__glow {
  position: absolute;
  right: -160px;
  top: -160px;
  width: 560px;
  height: 560px;
  border-radius: var(--ro-r-full);
  background: radial-gradient(circle, rgba(176, 141, 87, 0.16), transparent 70%);
  pointer-events: none;
}

.ro-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: var(--ro-sp-xl);
}

.ro-hero__title {
  margin-block: var(--ro-sp-md) var(--ro-sp-md);
}

.ro-hero__title em {
  font-weight: 400;
}

.ro-hero__desc {
  max-width: 480px;
  margin-bottom: var(--ro-sp-lg);
}

.ro-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ro-sp-md);
  margin-bottom: var(--ro-sp-lg);
}

.ro-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ro-sp-md) var(--ro-sp-lg);
}

.ro-hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--ro-fs-small);
  color: var(--ro-t3);
}

.ro-hero__badges i {
  color: var(--ro-gold);
}

.ro-hero__visual {
  position: relative;
  justify-self: center;
}

.ro-hero__frame {
  width: min(440px, 80vw);
  border-radius: var(--ro-r-arch);
  overflow: hidden;
  border: 1px solid var(--ro-line);
  box-shadow: var(--ro-shadow-lg);
  background: var(--ro-surface);
}

.ro-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ro-ease);
}

.ro-hero__visual:hover .ro-hero__frame img {
  transform: scale(1.04);
}

.ro-hero__chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: color-mix(in srgb, var(--ro-surface) 92%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid var(--ro-line-soft);
  border-radius: var(--ro-r-md);
  box-shadow: var(--ro-shadow-md);
  animation: ro-float 5s ease-in-out infinite;
}

.ro-hero__chip i {
  color: var(--ro-gold);
  font-size: 1.1rem;
}

.ro-hero__chip strong {
  display: block;
  font-size: var(--ro-fs-small);
  font-weight: 500;
  color: var(--ro-t1);
}

.ro-hero__chip span {
  font-size: var(--ro-fs-label);
  letter-spacing: 0.06em;
  color: var(--ro-t3);
}

.ro-hero__chip--one {
  left: -44px;
  top: 18%;
}

.ro-hero__chip--two {
  right: -30px;
  bottom: 14%;
  animation-delay: 2.2s;
}

@keyframes ro-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Intro ---------- */
.ro-intro__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: var(--ro-sp-2xl);
}

.ro-intro__visual {
  position: relative;
}

.ro-intro__frame {
  border-radius: var(--ro-r-xl);
  overflow: hidden;
  border: 1px solid var(--ro-line);
  box-shadow: var(--ro-shadow-md);
  rotate: -2deg;
  transition: rotate var(--ro-duration) var(--ro-ease);
}

.ro-intro__visual:hover .ro-intro__frame {
  rotate: 0deg;
}

.ro-intro__stamp {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: var(--ro-gold);
  background: var(--ro-surface);
  border: 1px dashed var(--ro-gold-soft);
  border-radius: var(--ro-r-full);
  box-shadow: var(--ro-shadow-sm);
}

.ro-intro__content .ro-h2 {
  margin-block: var(--ro-sp-md);
}

.ro-intro__content .ro-body {
  margin-bottom: var(--ro-sp-md);
  max-width: 520px;
}

.ro-intro__content .ro-script {
  display: block;
  margin-block: var(--ro-sp-sm) var(--ro-sp-md);
}

/* ---------- Featured products ---------- */
.ro-product {
  overflow: hidden;
}

.ro-product__media {
  position: relative;
  display: block;
  aspect-ratio: 6 / 5.6;
  overflow: hidden;
  background: var(--ro-surface-2);
}

.ro-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ro-ease);
}

.ro-product:hover .ro-product__media img {
  transform: scale(1.06);
}

.ro-product__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  font-size: var(--ro-fs-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ro-gold);
  border-radius: var(--ro-r-full);
}

.ro-product__tag--new {
  background: var(--ro-accent);
}

.ro-product__wish {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--ro-r-full);
  background: color-mix(in srgb, var(--ro-surface) 85%, transparent);
  color: var(--ro-t2);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity var(--ro-duration) var(--ro-ease),
              transform var(--ro-duration) var(--ro-ease),
              color 0.3s;
}

.ro-product:hover .ro-product__wish {
  opacity: 1;
  transform: translateY(0);
}

.ro-product__wish:hover {
  color: #c0392b;
}

.ro-product__body {
  padding: var(--ro-sp-md) var(--ro-sp-md) var(--ro-sp-lg);
  text-align: center;
}

.ro-product__cat {
  font-size: var(--ro-fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ro-t3);
}

.ro-product__name {
  font-family: var(--ro-fh);
  font-size: 1.35rem;
  font-weight: 500;
  margin-block: 6px 4px;
}

.ro-product__name a {
  color: var(--ro-t1);
  transition: color 0.3s;
}

.ro-product__name a:hover {
  color: var(--ro-gold);
}

.ro-product__price {
  font-size: var(--ro-fs-body);
  font-weight: 400;
  color: var(--ro-accent);
}

.ro-product__price s {
  margin-left: 8px;
  font-size: var(--ro-fs-small);
  color: var(--ro-t3);
}

.ro-featured__more {
  margin-top: var(--ro-sp-xl);
  text-align: center;
}

/* ---------- Value props ---------- */
.ro-values__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--ro-sp-lg);
}

.ro-values__item {
  display: flex;
  align-items: flex-start;
  gap: var(--ro-sp-md);
  padding-right: var(--ro-sp-md);
}

.ro-values__item + .ro-values__item {
  border-left: 1px solid var(--ro-line-soft);
  padding-left: var(--ro-sp-lg);
}

.ro-values__item i {
  font-size: 1.5rem;
  color: var(--ro-gold);
  margin-top: 4px;
}

.ro-values__item strong {
  display: block;
  font-family: var(--ro-fh);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ro-t1);
}

.ro-values__item span {
  font-size: var(--ro-fs-small);
  color: var(--ro-t3);
}

/* ---------- Categories ---------- */
.ro-cats__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--ro-sp-lg);
  max-width: none;
}

.ro-cats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: var(--ro-sp-md);
}

.ro-cats__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--ro-r-lg);
  border: 1px solid var(--ro-line-soft);
}

.ro-cats__card--tall {
  grid-row: span 2;
}

.ro-cats__card--wide {
  grid-column: span 2;
}

.ro-cats__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ro-ease);
}

.ro-cats__card:hover img {
  transform: scale(1.07);
}

.ro-cats__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--ro-sp-lg);
  background: linear-gradient(to top, var(--ro-overlay), transparent 55%);
}

.ro-cats__count {
  font-size: var(--ro-fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.8);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--ro-duration) var(--ro-ease),
              transform var(--ro-duration) var(--ro-ease);
}

.ro-cats__card:hover .ro-cats__count {
  opacity: 1;
  transform: translateY(0);
}

.ro-cats__name {
  color: #fdfcf9;
}

.ro-cats__arrow {
  position: absolute;
  right: var(--ro-sp-lg);
  bottom: var(--ro-sp-lg);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--ro-r-full);
  background: rgba(253, 252, 249, 0.16);
  backdrop-filter: blur(6px);
  color: #fdfcf9;
  transform: translateX(10px);
  opacity: 0;
  transition: opacity var(--ro-duration) var(--ro-ease),
              transform var(--ro-duration) var(--ro-ease);
}

.ro-cats__card:hover .ro-cats__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Stats ---------- */
.ro-stats__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--ro-sp-lg);
  text-align: center;
}

.ro-stats__num,
.ro-stats__suffix {
  font-family: var(--ro-fh);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--ro-gold-soft);
  line-height: 1;
}

.ro-stats__item p {
  margin-top: 8px;
  font-size: var(--ro-fs-small);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.6);
}

/* ---------- Custom orders ---------- */
.ro-custom__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--ro-sp-2xl);
}

.ro-custom__content .ro-h2 {
  margin-block: var(--ro-sp-md);
}

.ro-custom__content .ro-body {
  max-width: 500px;
  margin-bottom: var(--ro-sp-lg);
}

.ro-custom__steps {
  display: grid;
  gap: var(--ro-sp-md);
  margin-bottom: var(--ro-sp-lg);
}

.ro-custom__steps li {
  display: flex;
  align-items: center;
  gap: var(--ro-sp-md);
  color: var(--ro-t2);
}

.ro-custom__steps span {
  font-family: var(--ro-fh);
  font-size: 1.1rem;
  color: var(--ro-gold);
  border: 1px solid var(--ro-gold-soft);
  border-radius: var(--ro-r-full);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.ro-custom__visual {
  border-radius: var(--ro-r-xl);
  overflow: hidden;
  border: 1px solid var(--ro-line);
  box-shadow: var(--ro-shadow-md);
}

.ro-custom__visual img {
  width: 100%;
  transition: transform 1s var(--ro-ease);
}

.ro-custom__visual:hover img {
  transform: scale(1.04);
}

/* ---------- Testimonials ---------- */
.ro-quotes__card {
  position: relative;
  padding: var(--ro-sp-lg);
}

.ro-quotes__mark {
  font-size: 1.6rem;
  color: var(--ro-gold-soft);
  margin-bottom: var(--ro-sp-md);
}

.ro-quotes__text {
  font-family: var(--ro-fh);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ro-t1);
  margin-bottom: var(--ro-sp-lg);
}

.ro-quotes__who {
  display: flex;
  align-items: center;
  gap: var(--ro-sp-md);
}

.ro-quotes__avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  font-family: var(--ro-fh);
  font-size: 1.2rem;
  color: #fdfcf9;
  background: var(--ro-accent);
  border-radius: var(--ro-r-full);
  flex-shrink: 0;
}

.ro-quotes__who strong {
  display: block;
  font-weight: 500;
  color: var(--ro-t1);
}

.ro-quotes__stars {
  margin-left: auto;
  color: var(--ro-gold);
  font-size: 0.7rem;
  letter-spacing: 2px;
  white-space: nowrap;
}

/* ---------- Trust strip ---------- */
.ro-trust {
  border-top: 1px solid var(--ro-line-soft);
  border-bottom: 1px solid var(--ro-line-soft);
}

.ro-trust__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--ro-sp-lg);
  text-align: center;
}

.ro-trust__list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--ro-sp-sm);
}

.ro-trust__list i {
  font-size: 1.4rem;
  color: var(--ro-accent);
}

.ro-trust__list span {
  font-size: var(--ro-fs-small);
  color: var(--ro-t3);
}

/* ---------- Newsletter ---------- */
.ro-news__inner {
  text-align: center;
}

.ro-news__inner .ro-script {
  color: var(--ro-gold-soft);
}

.ro-news__inner .ro-h2 {
  margin-block: var(--ro-sp-sm) var(--ro-sp-lg);
}

.ro-news__form {
  max-width: 520px;
  margin-inline: auto;
}

.ro-news__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.ro-news__row {
  display: flex;
  gap: var(--ro-sp-sm);
  padding: 6px;
  background: rgba(253, 252, 249, 0.08);
  border: 1px solid rgba(253, 252, 249, 0.18);
  border-radius: var(--ro-r-full);
  transition: border-color 0.3s;
}

.ro-news__row:focus-within {
  border-color: var(--ro-gold-soft);
}

.ro-news__input {
  flex: 1;
  padding: 10px 20px;
  color: #fdfcf9;
  min-width: 0;
}

.ro-news__input::placeholder {
  color: rgba(247, 244, 238, 0.45);
}

/* ---------- Footer ---------- */
.ro-footer {
  background: var(--ro-dark-2);
  color: rgba(247, 244, 238, 0.75);
  padding-top: var(--ro-sp-2xl);
}

.ro-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--ro-sp-xl);
  padding-bottom: var(--ro-sp-xl);
}

.ro-footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: var(--ro-sp-md);
}

.ro-footer__tag {
  color: rgba(247, 244, 238, 0.55);
  max-width: 300px;
  margin-bottom: var(--ro-sp-md);
}

.ro-footer__social {
  display: flex;
  gap: var(--ro-sp-sm);
}

.ro-footer__social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 244, 238, 0.2);
  border-radius: var(--ro-r-full);
  color: rgba(247, 244, 238, 0.75);
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
}

.ro-footer__social a:hover {
  background: var(--ro-gold);
  border-color: var(--ro-gold);
  color: #fff;
  transform: translateY(-3px);
}

.ro-footer__heading {
  font-family: var(--ro-fh);
  font-size: 1.15rem;
  font-weight: 500;
  color: #fdfcf9;
  margin-bottom: var(--ro-sp-md);
}

.ro-footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.ro-footer__link {
  position: relative;
  font-size: var(--ro-fs-small);
  color: rgba(247, 244, 238, 0.6);
  transition: color 0.3s;
}

.ro-footer__link:not(.ro-footer__link--static)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--ro-gold-soft);
  transition: width var(--ro-duration) var(--ro-ease);
}

.ro-footer__link:not(.ro-footer__link--static):hover {
  color: #fdfcf9;
}

.ro-footer__link:not(.ro-footer__link--static):hover::after {
  width: 100%;
}

.ro-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ro-sp-md);
  padding-block: var(--ro-sp-md);
  border-top: 1px solid rgba(247, 244, 238, 0.12);
}

.ro-footer__bottom .ro-small {
  color: rgba(247, 244, 238, 0.45);
}

.ro-footer__heart {
  color: #c0714f;
}
