:root {
  --navy: #03233d;
  --navy-deep: #001b32;
  --gold: #dca33b;
  --cream: #f8f1e7;
  --ink: #132237;
  --line: #ead9bd;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  line-height: 1.5;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1180px, 92vw);
  margin: auto;
}
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 10px;
  top: 10px;
  z-index: 9999;
  background: #fff;
  padding: 10px;
}
.announcement {
  height: 28px;
  background: #03213b;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.07em;
  font-weight: 600;
}
.announcement span {
  font-size: 12px;
}
.site-header {
  background: #fff;
}
.header-main {
  display: grid;
  grid-template-columns: 230px minmax(360px, 1fr) 130px auto;
  align-items: center;
  gap: 22px;
  min-height: 90px;
}
.brand img.default-logo,
.brand .custom-logo {
  width: 175px;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
}
.header-search .woocommerce-product-search {
  display: flex;
  align-items: center;
  position: relative;
}
.header-search input[type="search"] {
  width: 100%;
  height: 42px;
  border: 1px solid #e8cfaa;
  border-radius: 5px;
  padding: 0 48px 0 16px;
  background: #fff;
}
.header-search button {
  position: absolute;
  right: 0;
  top: 0;
  height: 42px;
  width: 48px;
  border: 0;
  background: transparent;
  color: #d89e31;
  font-size: 0;
}
.header-search button:after {
  content: "⌕";
  font-size: 26px;
}
.delivery-chip {
  display: grid;
  grid-template-columns: 24px 1fr;
  grid-template-rows: auto auto;
  line-height: 1.05;
}
.delivery-chip span {
  grid-row: 1/3;
  font-size: 23px;
}
.delivery-chip small {
  font-size: 9px;
  color: #777;
}
.delivery-chip b {
  font-size: 10px;
}
.header-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
  font-size: 24px;
}
.header-actions a {
  position: relative;
}
.cart-count {
  position: absolute;
  right: -7px;
  top: -4px;
  background: #05223c;
  color: #fff;
  border-radius: 999px;
  font-size: 9px;
  min-width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
}
.site-nav {
  background: #03233d;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-nav li {
  margin: 0;
}
.site-nav a {
  display: block;
  padding: 12px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.site-nav .current-menu-item > a,
.site-nav a:hover {
  border-color: var(--gold);
  color: #fff1cb;
}
.rb-hero-slider {
  height: 420px;
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
}
.rb-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  background: #f5e8d5;
}
.rb-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.rb-hero-slide:after {
  content: "";
  position: absolute;
  inset: 0 0 0 33%;
  background-image: var(--slide-image);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
}
.rb-hero-left-shape {
  position: absolute;
  z-index: 1;
  left: -5%;
  top: -18%;
  width: 52%;
  height: 137%;
  background: #001d36;
  border-radius: 0 54% 54% 0;
  border-right: 4px solid var(--gold);
  transform: rotate(-1deg);
}
.rb-hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.rb-hero-copy {
  color: #fff;
  width: 38%;
  padding-left: 22px;
}
.eyebrow,
.section-kicker {
  font-size: 10px;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.rb-hero-copy h1,
.section h2,
.why-section h2,
.rakhi-banner h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.rb-hero-copy h1 {
  font-size: 42px;
  line-height: 1.05;
  margin: 0 0 20px;
}
.rb-hero-copy h1::first-line {
  color: #fff;
}
.rb-hero-copy p {
  font-size: 12px;
  max-width: 260px;
  color: #f0f3f6;
  margin: 0 0 20px;
  letter-spacing: 0.5px;
}
.rbfcs-heading p {
    letter-spacing: 0.2px;
}

.btn-gold,
.btn-dark,
.outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 10px;
}
.btn-gold {
  padding: 12px 18px;
  background: linear-gradient(#e7b94e, #d89b2f);
  color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.btn-dark {
  padding: 12px 18px;
  background: #001f3a;
  color: #fff;
}
.outline-btn {
  padding: 10px 16px;
  border: 1px solid var(--gold);
  color: var(--navy);
  background: #fff;
}
.slider-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: rgba(10, 23, 35, 0.68);
  color: #fff;
  font-size: 25px;
}
.slider-arrow.prev {
  left: 18px;
}
.slider-arrow.next {
  right: 18px;
}
.slider-dots {
  position: absolute;
  z-index: 4;
  bottom: 12px;
  left: 50%;
  display: flex;
  gap: 7px;
}
.slider-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  padding: 0;
}
.slider-dots button.is-active {
  background: #12334e;
}
.section {
  padding: 34px 0;
}
.section > .section-kicker,
.section > h2,
.section > .section-subtitle {
  text-align: center;
}
.section h2 {
  font-size: 27px;
  margin: 0;
}
.section-subtitle {
  font-size: 11px;
  margin: 1px 0 0;
  color: #444;
}
.gold-ornament {
  text-align: center;
  color: var(--gold);
  font-size: 17px;
  line-height: 1;
  margin: 7px 0 12px;
}
.circle-grid,
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}
.circle-card,
.occasion-card {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
}
.circle-img {
  display: block;
  height: 112px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto 7px;
}
.why-section {
  background: #03233d;
  color: #fff;
  overflow: hidden;
}
.why-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: stretch;
  min-height: 262px;
}
.why-copy {
  padding: 32px 20px 28px 0;
}
.why-section h2 {
  font-size: 30px;
  margin: 0 0 7px;
}
.small-gold-line {
  color: var(--gold);
  margin: 3px 0 20px;
}
.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 25px;
}
.benefits > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
}
.benefits i {
  font-style: normal;
  color: #e1ad47;
  font-size: 22px;
}
.benefits p {
  margin: 0;
}
.benefits b {
  display: block;
  font-size: 11px;
}
.benefits span {
  display: block;
  font-size: 9px;
  color: #d7e0e6;
}
.why-media {
  position: relative;
  margin-right: -6vw;
}
.why-media:before {
  content: "";
  position: absolute;
  inset: -2px auto -2px -26px;
  width: 52px;
  border: 3px solid var(--gold);
  border-right: 0;
  border-radius: 100% 0 0 100%;
  z-index: 2;
}
.why-media img {
  width: 100%;
  height: 262px;
  object-fit: cover;
  display: block;
}
.occasion {
  padding-top: 28px;
  padding-bottom: 28px;
}
.occasion .section-kicker {
  font-size: 0;
}
.occasion .section-kicker:after {
  content: "SHOP BY OCCASION";
  font-size: 10px;
  letter-spacing: 0.14em;
}
.occasion-grid {
  gap: 12px;
}
.occasion-card span {
  display: block;
  height: 130px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto 7px;
}
.products-section {
  padding-top: 28px;
  padding-bottom: 24px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: 27px;
  text-align: left;
  margin: 0;
}
.section-head p {
  font-size: 11px;
  margin: 0;
  color: #666;
}
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin: 0 !important;
}
.woocommerce ul.products:before,
.woocommerce ul.products:after {
  display: none !important;
}
.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  border: 1px solid #e5d1b4;
  border-radius: 5px;
  padding: 0 0 12px !important;
  overflow: hidden;
  background: #fff;
  float: none !important;
}
.woocommerce ul.products li.product a img {
  margin: 0 0 10px !important;
  aspect-ratio: 1/1.03;
  object-fit: cover;
  background: #f7efe6;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: Georgia, serif !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
  padding: 0 !important;
  margin: 0 10px 7px !important;
  min-height: 33px;
}
.woocommerce ul.products li.product .price {
  font-size: 11px !important;
  color: #17304b !important;
  margin: 0 10px !important;
}
.woocommerce ul.products li.product .price del {
  opacity: 0.6;
}
.woocommerce ul.products li.product .price ins {
  text-decoration: none;
}
.woocommerce ul.products li.product .button {
  margin: 9px 10px 0 !important;
  padding: 7px 10px !important;
  border: 1px solid var(--gold) !important;
  background: #fff !important;
  color: #17304b !important;
  font-size: 9px !important;
  border-radius: 3px !important;
}
.woocommerce span.onsale {
  background: #b0b21d !important;
  min-height: auto !important;
  min-width: auto !important;
  line-height: 1 !important;
  padding: 7px 5px !important;
  border-radius: 50% !important;
  font-size: 9px !important;
  right: -5px !important;
  top: -5px !important;
  left: auto !important;
}
.rakhi-banner {
  height: 160px;
  background: #f4e0bd;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.rakhi-art {
  position: absolute;
  top: 0;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.rakhi-left-art {
  left: 0;
  width: 43%;
  background-image: url("../images/rakhi-left.jpg");
  background-position: left center;
}
.rakhi-right-art {
  right: 0;
  width: 36%;
  background-image: url("../images/rakhi-right.jpg");
  background-position: right center;
}
.rakhi-copy {
  position: relative;
  z-index: 2;
  margin-left: 39%;
  width: 32%;
  padding: 8px 0;
}
.rakhi-copy > span {
  font-family: Georgia, serif;
  font-size: 18px;
}
.rakhi-banner h2 {
  font-size: 28px;
  margin: -2px 0 5px;
}
.rakhi-copy p {
  font-size: 11px;
  margin: 0 0 12px;
}
/* =====================================
   RINGO BELLS - TRUST STRIP
===================================== */

.trust-strip {
    background: #fff;
    border-top: 1px solid #eee7dd;
    border-bottom: 1px solid #eee7dd;
    padding: 0;
    overflow: hidden;
}

.trust-strip .trust-grid {
    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    align-items: stretch;
}


/* ITEM */

.trust-strip .trust-item {
    position: relative;

    min-height: 72px;
    padding: 13px 25px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    opacity: 0;

    animation:
        ringoTrustFadeUp .7s cubic-bezier(.22,.61,.36,1)
        forwards;

    transition:
        transform .3s ease,
        background .3s ease;
}


/* STAGGER ANIMATION */

.trust-strip .trust-item:nth-child(1) {
    animation-delay: .10s;
}

.trust-strip .trust-item:nth-child(2) {
    animation-delay: .25s;
}

.trust-strip .trust-item:nth-child(3) {
    animation-delay: .40s;
}

.trust-strip .trust-item:nth-child(4) {
    animation-delay: .55s;
}


@keyframes ringoTrustFadeUp {

    0% {
        opacity: 0;
        transform: translateY(25px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}


/* DIVIDER */

.trust-strip .trust-item:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 22%;

    width: 1px;
    height: 56%;

    background: linear-gradient(
        to bottom,
        transparent,
        #e4d3b7,
        transparent
    );
}


/* ICON */

.trust-strip .trust-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e4c58d;
    border-radius: 50%;

    background: #fffaf2;

    transition:
        transform .35s cubic-bezier(.2,.8,.2,1),
        background .3s ease,
        box-shadow .3s ease;
}


.trust-strip .trust-icon i {
    display: flex;
    align-items: center;
    justify-content: center;

    font-style: normal;
    font-size: 18px;

    color: #c68b26;
}


/* TEXT */

.trust-strip .trust-item p {
    margin: 0;
    padding: 0;
}

.trust-strip .trust-item b {
    display: block;

    color: #08243d;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.trust-strip .trust-item span {
    display: block;

    margin-top: 3px;

    color: #777;

    font-size: 10px;
    line-height: 1.3;
}


/* =====================================
   HOVER
===================================== */

.trust-strip .trust-item:hover {
    transform: translateY(-3px);
    background: #fffaf3;
}


.trust-strip .trust-item:hover .trust-icon {
    transform:
        translateY(-3px)
        rotate(-5deg)
        scale(1.1);

    background: #08243d;

    border-color: #08243d;

    box-shadow:
        0 8px 22px
        rgba(8,36,61,.16);
}


.trust-strip .trust-item:hover .trust-icon i {
    color: #dca63c;
}


/* subtle shine */

.trust-strip .trust-item::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 50%;
    height: 100%;

    background: linear-gradient(
        100deg,
        transparent,
        rgba(218,164,60,.08),
        transparent
    );

    transition: left .6s ease;
}

.trust-strip .trust-item:hover::before {
    left: 120%;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 900px) {

    .trust-strip .trust-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .trust-strip .trust-item:nth-child(2)::after {
        display: none;
    }

}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 600px) {

    .trust-strip .trust-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .trust-strip .trust-item {
        min-height: 68px;

        justify-content: flex-start;

        padding: 12px 14px;
        gap: 9px;
    }

    .trust-strip .trust-item::after {
        display: none;
    }

    .trust-strip .trust-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .trust-strip .trust-icon i {
        font-size: 15px;
    }

    .trust-strip .trust-item b {
        font-size: 11px;
    }

    .trust-strip .trust-item span {
        font-size: 9px;
    }

}


/* accessibility */

@media (prefers-reduced-motion: reduce) {

    .trust-strip .trust-item {
        opacity: 1;
        animation: none;
        transform: none;
    }

}
.site-footer {
  background: #03233d;
  color: #fff;
  padding-top: 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.1fr 1.2fr;
  gap: 38px;
}
.footer-logo img {
  width: 150px;
}
.footer-brand p {
  font-size: 12px;
  color: #d8e0e7;
  max-width: 210px;
}
.footer-social {
  font-size: 13px;
  margin-top: 16px;
}
.site-footer h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
}
.site-footer ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.site-footer li {
  margin: 5px 0;
  color: #dbe3ea;
  font-size: 12px;
}
.newsletter p {
  font-size: 12px;
  color: #dbe3ea;
}
.newsletter form {
  display: flex;
}
.newsletter input {
  height: 30px;
  width: 100%;
  border: 0;
  padding: 0 10px;
  font-size: 9px;
}
.newsletter button {
  width: 34px;
  border: 1px solid #dba73f;
  background: transparent;
  color: #fff;
}
.app-label {
  display: block;
  font-size: 12px;
  margin: 12px 0 5px;
}
.app-badges {
  display: flex;
  gap: 5px;
}
.app-badges span {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 5px 7px;
  border-radius: 3px;
  font-size: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 22px;
  padding: 12px 0;
  font-size: 12px;
  color: #c9d2dc;
  display: flex;
  justify-content: space-between;
}
.payment-badges {
  font-weight: 700;
}
.content-area,
.shop-main {
  padding-top: 45px;
  padding-bottom: 60px;
}
.content-card {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}
@media (max-width: 900px) {
  .header-main {
    grid-template-columns: 1fr auto;
  }
  .header-search {
    grid-column: 1/-1;
    grid-row: 2;
    padding-bottom: 12px;
  }
  .delivery-chip {
    display: none;
  }
  .site-nav .container {
    overflow: auto;
  }
  .site-nav ul {
    gap: 24px;
    justify-content: flex-start;
    width: max-content;
  }
  .rb-hero-slider {
    height: 430px;
  }
  .rb-hero-slide:after {
    inset: 0;
    background-position: center;
  }
  .rb-hero-slide:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(0, 29, 54, 0.95),
      rgba(0, 29, 54, 0.48)
    );
    z-index: 1;
  }
  .rb-hero-left-shape {
    display: none;
  }
  .rb-hero-copy {
    width: 70%;
  }
  .circle-grid,
  .occasion-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-media {
    margin: 0;
  }
  .why-media:before {
    display: none;
  }
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
  .rakhi-left-art {
    opacity: 0.35;
  }
  .rakhi-right-art {
    opacity: 0.35;
  }
  .rakhi-copy {
    margin-left: 0;
    width: 60%;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .container {
    width: min(92vw, 480px);
  }
  .announcement {
    font-size: 9px;
  }
  .header-main {
    min-height: 70px;
  }
  .brand img.default-logo,
  .brand .custom-logo {
    width: 145px;
  }
  .rb-hero-slider {
    height: 390px;
  }
  .rb-hero-copy {
    width: 88%;
    padding-left: 5px;
  }
  .rb-hero-copy h1 {
    font-size: 36px;
  }
  .circle-grid,
  .occasion-grid {
    display: flex;
    overflow: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }
  .circle-card,
  .occasion-card {
    min-width: 105px;
    scroll-snap-align: start;
  }
  .benefits {
    grid-template-columns: 1fr;
  }
  .section-head {
    align-items: flex-start;
    gap: 12px;
  }
  .woocommerce ul.products {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .rakhi-copy {
    width: 82%;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    gap: 12px;
    flex-wrap: wrap;
  }
}
