/*
$breakpoint argument choices
- s-ees
- s-es
- s-s
- s-m
- s-b
- s-eb
- s-eeb
- s-large
*/
:root {
  --color-primary: #feca3e;
  --color-primary-light: #ffe8ab;
  --color-primary-dark: #e6a700;
  --color-secondary: #ce3517;
  --color-secondary-light: #e84e31;
  --color-secondary-dark: #982711;
  --color-tertiary: #fff21a;
  --color-tertiary-light: #fff880;
  --color-tertiary-dark: #e6d900;
  --color-alert: #f51720;
  --color-alert-light: #ffe8e9f7;
  --color-white: #fff;
  --color-black: #000;
  --color-footer: #212121;
  --color-maroon-dark1: #140000;
  --color-maroon-dark2: #1f0000;
  --color-grey-light-1: #faf9f9;
  --color-grey-light-2: #f4f2f2;
  --color-grey-light-3: #f0eeee;
  --color-grey-light-4: #ccc;
  --color-grey-dark-1: #333;
  --color-grey-dark-2: #777;
  --color-grey-dark-3: #999;
  --color-body: #e4e4e4de;
  --shadow-darkest: 0 4rem 7rem rgba(0, 0, 0, 0.5);
  --shadow-dark: 0 2rem 6rem rgba(0, 0, 0, 0.3);
  --shadow-light: 0 2rem 5rem rgba(0, 0, 0, 0.1);
  --line: 1px solid var(--color-grey-light-2); }

.modal {
  display: none;
  position: fixed;
  z-index: 11;
  padding-top: 4rem;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6); }
  .modal__content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 70%;
    height: 90vh;
    border-radius: 1rem;
    overflow: hidden; }
    @media only screen and (max-width: 56.25em) {
      .modal__content {
        width: 90%; } }
  .modal__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--color-grey-light-4);
    position: relative; }
    @media only screen and (max-width: 31.25em) {
      .modal__header {
        justify-content: center;
        align-items: flex-start; } }
  .modal__title {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary-dark); }
    @media only screen and (max-width: 31.25em) {
      .modal__title {
        font-size: 2.2rem;
        display: flex;
        flex-direction: column;
        padding: 1rem 0 2rem 0; } }
  .modal__logo {
    width: 12rem;
    height: 12rem; }
  .modal__close {
    font-family: Weidemann Regular, sans-serif;
    color: #aaaaaa;
    float: right;
    font-size: 2.2rem;
    font-weight: bold;
    position: absolute;
    right: 0;
    top: -2rem; }
    .modal__close:hover, .modal__close:focus {
      color: #000;
      text-decoration: none;
      cursor: pointer; }
  .modal__body {
    padding: 4rem 2rem;
    overflow-y: scroll;
    overflow-x: clip;
    max-height: 75%; }
  .modal__subheading {
    color: var(--color-grey-light-2);
    background-color: var(--color-secondary-dark);
    width: fit-content;
    margin: 0 auto;
    border-radius: 5px;
    margin-bottom: 4rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    padding: 0.2rem 17rem; }
    @media only screen and (max-width: 37.5em) {
      .modal__subheading {
        width: max-content;
        padding: 0.2rem 14rem; } }
    @media only screen and (max-width: 31.25em) {
      .modal__subheading {
        width: max-content;
        padding: 0.2rem 8rem; } }
  .modal__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    justify-content: center;
    gap: 4rem; }
    @media only screen and (max-width: 31.25em) {
      .modal__grid {
        grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr));
        gap: 2rem; } }
  .modal__block {
    text-align: center;
    background-color: var(--color-grey-light-3);
    border-radius: 6px;
    padding: 2rem 1rem; }
  .modal__name {
    font-size: 2.5rem;
    color: var(--color-secondary-dark); }
  .modal__address {
    font-size: 1.6rem;
    padding: 1rem; }
  .modal__contact {
    font-size: 1.6rem; }
    .modal__contact__link {
      color: currentColor;
      text-decoration: none;
      font-weight: 600; }
      .modal__contact__link:hover {
        text-decoration: underline; }

.gallery {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(9, 4vw);
  padding: 1.5rem;
  position: relative; }
  @media only screen and (max-width: 68.75em) {
    .gallery {
      grid-template-rows: repeat(9, 5.5vw); } }
  @media only screen and (max-width: 56.25em) {
    .gallery {
      padding: 1.5rem 0; } }
  @media only screen and (max-width: 37.5em) {
    .gallery {
      grid-template-columns: repeat(6, 1fr);
      grid-template-rows: repeat(12, 6.5vw); } }
  @media only screen and (max-width: 31.25em) {
    .gallery {
      grid-template-rows: repeat(12, 10.5vw);
      padding: 1rem; } }
  .gallery__brand-container {
    background-image: linear-gradient(45deg, var(--color-primary-dark), var(--color-primary) 94%);
    color: var(--color-footer);
    height: 96.5%;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    border: 2px solid var(--color-grey-dark-2);
    border-right: none;
    position: relative;
    transition: all 0.5s; }
    @media only screen and (max-width: 37.5em) {
      .gallery__brand-container {
        justify-content: flex-start; } }
    .gallery__brand-container:hover {
      z-index: 2; }
    .gallery__brand-container:not(.active) {
      background-image: linear-gradient(45deg, var(--color-maroon-dark1), var(--color-maroon-dark2) 110%);
      color: var(--color-body);
      border-right: 2px solid var(--color-grey-dark-2); }
      .gallery__brand-container:not(.active) .arrow-right {
        display: none; }
      .gallery__brand-container:not(.active) .btn-view-more {
        display: block; }
    .gallery__brand-container.tl {
      border-radius: 30px 0 0 0; }
      @media only screen and (max-width: 37.5em) {
        .gallery__brand-container.tl {
          border-radius: 20px 20px 0 0; } }
    .gallery__brand-container.bl {
      border-radius: 0 0 0 30px; }
    .gallery__brand-container .img {
      height: 67%;
      padding: 1rem;
      width: auto;
      object-fit: contain;
      border-radius: 30px; }
    .gallery__brand-container .paragraph {
      padding: 0 6rem;
      font-size: 2.2rem;
      text-align: center; }
      @media only screen and (max-width: 68.75em) {
        .gallery__brand-container .paragraph {
          padding: 0px 2rem;
          font-size: 1.8rem; } }
      @media only screen and (max-width: 37.5em) {
        .gallery__brand-container .paragraph {
          width: 70%;
          text-align: left; } }
      @media only screen and (max-width: 21.87em) {
        .gallery__brand-container .paragraph {
          width: 75%; } }
    .gallery__brand-container .arrow-right {
      width: 0;
      height: 0;
      border-top: 60px solid transparent;
      border-bottom: 60px solid transparent;
      border-left: 36px solid var(--color-primary);
      position: absolute;
      right: -32px;
      z-index: 1; }
      @media only screen and (max-width: 68.75em) {
        .gallery__brand-container .arrow-right {
          right: -35px; } }
      @media only screen and (max-width: 37.5em) {
        .gallery__brand-container .arrow-right {
          display: none; } }
    .gallery__brand-container a.btn-view-more {
      position: absolute;
      bottom: 0.4rem;
      right: 1rem;
      font-size: 1.1rem;
      color: var(--color-grey-light-4);
      display: none;
      padding: 0.1rem 0.5rem; }
      @media only screen and (max-width: 68.75em) {
        .gallery__brand-container a.btn-view-more {
          font-size: 1rem; } }
      @media only screen and (max-width: 37.5em) {
        .gallery__brand-container a.btn-view-more {
          position: relative;
          margin-top: 0.8rem !important; } }
      @media only screen and (max-width: 21.87em) {
        .gallery__brand-container a.btn-view-more {
          font-size: 1.2rem;
          padding: 0.1rem 1.5rem; } }
  .gallery__item {
    position: relative;
    cursor: pointer;
    transition: all 0.5s;
    width: 100%;
    height: 100%; }
    .gallery__item--1 {
      grid-row: 1 / span 3;
      grid-column: 1 / span 3; }
      @media only screen and (max-width: 56.25em) {
        .gallery__item--1 {
          grid-column: 1 / span 4; } }
      @media only screen and (max-width: 37.5em) {
        .gallery__item--1 {
          grid-column: 1 / -1;
          grid-row: 1 / span 2; } }
      @media only screen and (max-width: 21.87em) {
        .gallery__item--1 {
          grid-row: 1 / span 3; } }
    .gallery__item--2 {
      grid-row: 4 / span 3;
      grid-column: 1 / span 3; }
      @media only screen and (max-width: 56.25em) {
        .gallery__item--2 {
          grid-column: 1 / span 4; } }
      @media only screen and (max-width: 37.5em) {
        .gallery__item--2 {
          grid-column: 1 / -1;
          grid-row: 3 / span 2; } }
      @media only screen and (max-width: 21.87em) {
        .gallery__item--2 {
          grid-row: 4 / span 3; } }
    .gallery__item--3 {
      grid-row: 7 / span 3;
      grid-column: 1 / span 3; }
      @media only screen and (max-width: 56.25em) {
        .gallery__item--3 {
          grid-column: 1 / span 4; } }
      @media only screen and (max-width: 37.5em) {
        .gallery__item--3 {
          grid-column: 1 / -1;
          grid-row: 5 / span 2; }
          .gallery__item--3 .bl {
            border-radius: 0; } }
      @media only screen and (max-width: 21.87em) {
        .gallery__item--3 {
          grid-row: 7 / span 3; } }
    .gallery__item--4 {
      grid-row: 1 / span 4;
      grid-column: 4 / span 3; }
      @media only screen and (max-width: 56.25em) {
        .gallery__item--4 {
          grid-column: 5 / span 2; } }
      @media only screen and (max-width: 37.5em) {
        .gallery__item--4 {
          grid-column: 1 / span 2;
          grid-row: 7 / span 3; } }
      @media only screen and (max-width: 21.87em) {
        .gallery__item--4 {
          grid-row: 10 / span 3; } }
    .gallery__item--5 {
      grid-row: 1 / span 3;
      grid-column: 7 / span 2; }
      @media only screen and (max-width: 37.5em) {
        .gallery__item--5 {
          grid-column: 3 / span 2;
          grid-row: 7 / span 3; }
          .gallery__item--5 img {
            border-radius: 0 !important; } }
      @media only screen and (max-width: 21.87em) {
        .gallery__item--5 {
          grid-row: 10 / span 3; } }
    .gallery__item--6 {
      grid-row: 4 / span 4;
      grid-column: 7 / span 2; }
      @media only screen and (max-width: 37.5em) {
        .gallery__item--6 {
          grid-column: 5 / span 2;
          grid-row: 7 / span 4; } }
      @media only screen and (max-width: 21.87em) {
        .gallery__item--6 {
          grid-row: 10 / span 3; } }
    .gallery__item--7 {
      grid-row: 5 / span 5;
      grid-column: 4 / span 3; }
      @media only screen and (max-width: 56.25em) {
        .gallery__item--7 {
          grid-column: 5 / span 2; } }
      @media only screen and (max-width: 37.5em) {
        .gallery__item--7 {
          grid-column: 1 / span 2;
          grid-row: 10 / span 3; }
          .gallery__item--7 img {
            border-radius: 0 0 0 20px; } }
      @media only screen and (max-width: 21.87em) {
        .gallery__item--7 {
          grid-row: 13 / span 3; } }
    .gallery__item--8 {
      grid-row: 8 / span 2;
      grid-column: 7 / span 1; }
      @media only screen and (max-width: 37.5em) {
        .gallery__item--8 {
          grid-column: 3 / span 2;
          grid-row: 10 / span 3; } }
      @media only screen and (max-width: 21.87em) {
        .gallery__item--8 {
          grid-row: 13 / span 3; } }
    .gallery__item--9 {
      grid-row: 8 / span 2;
      grid-column: 8 / span 1; }
      @media only screen and (max-width: 68.75em) {
        .gallery__item--9 {
          font-size: 1.2rem; } }
      @media only screen and (max-width: 37.5em) {
        .gallery__item--9 {
          grid-column: 5 / span 2;
          grid-row: 11 / span 2;
          font-size: 1.6rem; } }
      @media only screen and (max-width: 21.87em) {
        .gallery__item--9 {
          grid-row: 13 / span 3; } }
      .gallery__item--9.btn.btn--white.gallery__item {
        margin: 0.3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 95%;
        width: 96%;
        background-color: var(--color-maroon-dark1);
        color: var(--color-grey-light-1);
        padding: 0;
        text-transform: none;
        border-radius: 0 0 30px 0; }
        @media only screen and (max-width: 37.5em) {
          .gallery__item--9.btn.btn--white.gallery__item {
            border-radius: 0 0 20px 0;
            height: 90%; } }
        .gallery__item--9.btn.btn--white.gallery__item:hover {
          color: var(--color-maroon-dark1); }
    .gallery__item__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      margin: 0 auto;
      padding: 3px; }
      .gallery__item__img.tl {
        border-radius: 30px 0 0 0; }
      .gallery__item__img.tr {
        border-radius: 0 30px 0 0; }
      .gallery__item__img.bl {
        border-radius: 0 0 0 30px; }
      .gallery__item__img.br {
        border-radius: 0 0 30px 0; }
    .gallery__item__caption {
      text-align: center;
      font-size: 0.1em;
      font-weight: 800;
      color: var(--color-grey-dark-1);
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: var(--color-primary-light);
      padding: 0 2rem;
      border-radius: 26px;
      width: fit-content;
      opacity: 0;
      transition: all 0.5s; }
    .gallery__item:hover {
      transform: scale(1.2);
      z-index: 11;
      transition-delay: 0.3s; }
    .gallery__item:hover > .gallery__item__img:not(.rectangle) {
      border-radius: 3rem; }
    .gallery__item:hover > .gallery__item__img.rectangle {
      border-radius: 30px; }
    .gallery__item:hover > .gallery__item__caption {
      font-size: 1.6rem;
      top: 90%;
      left: 50%;
      transform: translate(-50%, -50%);
      opacity: 1;
      width: max-content; }

.products {
  grid-column: center-start / center-end;
  display: flex;
  flex-direction: column;
  align-items: center; }
  @media only screen and (max-width: 31.25em) {
    .products {
      grid-column: full-start / full-end; } }
  .products__btn {
    margin: 5rem 0; }

.pcard__priceunit {
  margin-left: 1rem;
  font-size: 1.1rem; }

.pcard__pricesuffix {
  font-size: 1rem;
  padding: 0 1rem;
  background-color: var(--color-grey-light-1);
  color: var(--color-footer);
  border-radius: 2rem; }

.toppicks {
  grid-column: center-start / center-end; }
  @media only screen and (max-width: 68.75em) {
    .toppicks {
      grid-column: full-start / full-end;
      padding: 0 3rem; } }
  @media only screen and (max-width: 31.25em) {
    .toppicks {
      grid-column: full-start / full-end;
      padding: 0 2rem; } }
  .toppicks .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50rem, 1fr));
    grid-template-rows: repeat(2, 1fr);
    row-gap: 8rem;
    column-gap: 6rem; }
    @media only screen and (max-width: 93.75em) {
      .toppicks .grid {
        grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
        row-gap: 5rem;
        column-gap: 3rem; } }
    @media only screen and (max-width: 68.75em) {
      .toppicks .grid {
        grid-template-columns: repeat(auto-fit, minmax(39rem, 1fr));
        row-gap: 3rem;
        column-gap: 3rem; } }
    @media only screen and (max-width: 31.25em) {
      .toppicks .grid {
        grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr)); } }
    @media only screen and (max-width: 21.87em) {
      .toppicks .grid {
        grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr)); } }
    .toppicks .grid__product {
      display: grid;
      grid-template-columns: min-content 1fr;
      grid-template-rows: 20% 1fr;
      column-gap: 2rem;
      padding: 2rem;
      border: 3px solid var(--color-grey-light-2);
      border-radius: 30px;
      background-color: var(--color-body);
      box-shadow: var(--shadow-darkest); }
      @media only screen and (max-width: 31.25em) {
        .toppicks .grid__product {
          grid-template-columns: 1fr;
          grid-template-rows: 20% min-content 1fr;
          padding: 0rem;
          text-align: center;
          align-items: center;
          align-content: center; } }
      @media only screen and (max-width: 31.25em) {
        .toppicks .grid__product {
          padding: 2rem; } }
    .toppicks .grid__name {
      grid-column: 2 / -1;
      border-bottom: 1px solid var(--color-grey-light-4); }
      @media only screen and (max-width: 31.25em) {
        .toppicks .grid__name {
          grid-column: 1 / -1; } }
    .toppicks .grid__imageContainer {
      height: 200px;
      width: 200px;
      z-index: 9; }
      @media only screen and (max-width: 93.75em) {
        .toppicks .grid__imageContainer {
          height: 150px;
          width: 150px; } }
      @media only screen and (max-width: 68.75em) {
        .toppicks .grid__imageContainer {
          height: 125px;
          width: 125px; } }
      @media only screen and (max-width: 31.25em) {
        .toppicks .grid__imageContainer {
          margin: 0 auto; } }
    .toppicks .grid__image {
      height: 100%;
      width: 100%;
      border-radius: 5px;
      object-fit: cover;
      cursor: pointer; }
      .toppicks .grid__image:hover {
        transform: scale(1.5);
        transition: all 0.5s; }
    .toppicks .grid__details {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: 1rem; }
      @media only screen and (max-width: 31.25em) {
        .toppicks .grid__details {
          align-items: center; } }
      .toppicks .grid__details__price {
        font-size: 3rem;
        font-weight: 200;
        display: flex;
        flex-direction: column;
        align-items: flex-start; }
        @media only screen and (max-width: 31.25em) {
          .toppicks .grid__details__price {
            align-items: center; } }
        .toppicks .grid__details__price .pcard__priceunit {
          margin-left: 0;
          font-size: 1.3rem !important; }
      @media only screen and (max-width: 56.25em) {
        .toppicks .grid__details__description {
          font-size: 2rem; } }
      @media only screen and (max-width: 93.75em) {
        .toppicks .grid__details .btn-view-more {
          margin-bottom: 3rem; } }
      @media only screen and (max-width: 37.5em) {
        .toppicks .grid__details .btn-view-more {
          font-size: 1.6rem; } }

.fame {
  grid-column: full-start / full-end;
  display: grid;
  grid-template-columns: 1fr 40%; }
  @media only screen and (max-width: 68.75em) {
    .fame {
      position: relative;
      background-color: var(--color-primary-dark);
      text-align: center;
      grid-template-columns: 1fr;
      grid-template-rows: 1fr 60rem 12rem; } }
  .fame__details {
    background-image: linear-gradient(to left top, var(--color-primary-dark) 60%, var(--color-primary-light));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 4rem 2rem;
    padding-left: 6rem; }
    @media only screen and (max-width: 93.75em) {
      .fame__details {
        padding-left: 5rem; } }
    @media only screen and (max-width: 68.75em) {
      .fame__details {
        padding-bottom: 0; } }
    @media only screen and (max-width: 31.25em) {
      .fame__details {
        padding-left: 2rem;
        padding: 8rem 2rem; } }
    .fame__details__heading.heading-primary--inner {
      font-size: 6.5rem;
      width: 100%; }
      @media only screen and (max-width: 68.75em) {
        .fame__details__heading.heading-primary--inner {
          font-size: 5.5rem; } }
      @media only screen and (max-width: 31.25em) {
        .fame__details__heading.heading-primary--inner {
          font-size: 3.5rem; } }
      @media only screen and (max-width: 21.87em) {
        .fame__details__heading.heading-primary--inner {
          font-size: 3.5rem; } }
    .fame__details__paragraph {
      padding: 2rem; }
  .fame__image {
    background-image: url(../../img/products/Garam-masala.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 20% center; }
    @media only screen and (max-width: 68.75em) {
      .fame__image {
        background-size: cover;
        background-position: bottom center;
        background-attachment: fixed; } }
  @media only screen and (max-width: 68.75em) {
    .fame .btn {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      margin-bottom: 2rem; } }

.discount {
  grid-column: full-start / full-end;
  background-image: linear-gradient(to left bottom, var(--color-primary-light), var(--color-primary-dark) 30%);
  position: relative;
  display: grid;
  grid-template-columns: minmax(6rem, 1fr) [discount-start] minmax(min-content, max-content) [discount-end] minmax(6rem, 1fr); }
  @media only screen and (max-width: 31.25em) {
    .discount {
      display: block; } }
  .discount__content {
    grid-column: discount-start / discount-end;
    grid-row: 1 / -1;
    padding: 5rem 10rem;
    display: flex;
    flex-direction: column; }
    @media only screen and (max-width: 68.75em) {
      .discount__content {
        padding: 5rem 0rem; } }
    .discount__content__heading.heading-primary--inner {
      font-size: 6.5rem;
      padding: 0 2rem; }
      @media only screen and (max-width: 68.75em) {
        .discount__content__heading.heading-primary--inner {
          font-size: 5.5rem; } }
      @media only screen and (max-width: 31.25em) {
        .discount__content__heading.heading-primary--inner {
          font-size: 3.5rem; } }
      @media only screen and (max-width: 21.87em) {
        .discount__content__heading.heading-primary--inner {
          font-size: 3.5rem; } }
    .discount__content__paragraph {
      width: 100%;
      padding: 0 2rem; }
    .discount__content__imageBlock {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 4vw 1fr;
      column-gap: 1rem;
      margin-bottom: 5rem; }
      @media only screen and (max-width: 56.25em) {
        .discount__content__imageBlock {
          grid-template-rows: 10vw 1fr; } }
      @media only screen and (max-width: 31.25em) {
        .discount__content__imageBlock {
          display: flex;
          flex-direction: column;
          gap: 4rem; } }
    .discount__content__btn {
      width: fit-content;
      padding-bottom: 4rem;
      margin: 0 auto;
      margin-top: 5rem; }
      @media only screen and (max-width: 31.25em) {
        .discount__content__btn {
          font-size: 1.2rem !important; } }
  .discount__div {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    border: 0.1px solid var(--color-grey-dark-3);
    box-shadow: var(--shadow-darkest);
    background: linear-gradient(to bottom, #000 50%, #282828);
    border: 1px solid var(--color-maroon-dark1);
    cursor: pointer; }
    @media only screen and (max-width: 31.25em) {
      .discount__div {
        width: 35rem;
        margin: 0 auto; } }
    @media only screen and (max-width: 21.87em) {
      .discount__div {
        width: 28rem; } }
    .discount__div.div--1 {
      grid-row: 2 / -1;
      transform: skew(10deg, 3deg);
      background: linear-gradient(to bottom, #000 50%, #363434); }
      .discount__div.div--1:hover {
        transform: skew(10deg, 3deg) scale(1.05); }
      @media only screen and (max-width: 31.25em) {
        .discount__div.div--1 {
          transform: skew(0, 0); }
          .discount__div.div--1:hover {
            transform: scale(1.1); } }
    .discount__div.div--2 {
      grid-row: 1 / -1;
      transform: scale(1.1);
      z-index: 1; }
      .discount__div.div--2:hover {
        transform: scale(1.15); }
      @media only screen and (max-width: 31.25em) {
        .discount__div.div--2 {
          display: none; } }
    .discount__div.div--3 {
      grid-row: 2 / -1;
      transform: skew(-10deg, -3deg);
      background: linear-gradient(to bottom, #000 50%, #3b3b3b); }
      .discount__div.div--3:hover {
        transform: skew(-10deg, -3deg) scale(1.05); }
      @media only screen and (max-width: 31.25em) {
        .discount__div.div--3 {
          transform: skew(0, 0); }
          .discount__div.div--3:hover {
            transform: scale(1.1); } }
  .discount__image {
    width: 100%;
    height: 100%;
    object-fit: cover; }
    @media only screen and (max-width: 31.25em) {
      .discount__image {
        object-fit: contain; } }
    .discount__image.image--1 {
      transform: skew(-10deg, -3deg); }
      @media only screen and (max-width: 31.25em) {
        .discount__image.image--1 {
          transform: skew(0, 0); } }
    .discount__image.image--3 {
      transform: skew(10deg, 3deg); }
      @media only screen and (max-width: 31.25em) {
        .discount__image.image--3 {
          transform: skew(0, 0); } }
  .discount__label {
    grid-column: discount-start / discount-end;
    grid-row: 1 / -1;
    width: 23rem;
    height: 16rem;
    display: inline-block;
    background-image: radial-gradient(var(--color-primary-dark) 11rem, var(--color-black));
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-grey-light-1);
    text-align: center;
    padding: 4rem;
    line-height: 1.6;
    position: absolute;
    right: -1rem;
    top: -5.5rem;
    transform: rotate(20deg);
    animation: beat 0.5s infinite alternate; }
    @media only screen and (max-width: 68.75em) {
      .discount__label {
        width: 18rem;
        height: 12rem;
        font-size: 1.8rem;
        line-height: 2.7rem;
        padding: 2rem; } }
    @media only screen and (max-width: 56.25em) {
      .discount__label {
        width: 16.5rem;
        height: 9.5rem;
        font-size: 1.8rem;
        line-height: 2.2rem;
        padding: 1.4rem; } }
    @media only screen and (max-width: 31.25em) {
      .discount__label {
        right: 2rem; } }
  .discount.section-discount .hiddenLeft {
    opacity: 0;
    transform: translateX(-100%) rotate(-42deg); }
  .discount.section-discount .hiddenRight {
    opacity: 0;
    transform: translateX(100%) rotate(42deg); }
  .discount.section-discount .zoomed {
    opacity: 0;
    transform: scale(2); }

.partners {
  grid-column: full-start / full-end;
  background-color: var(--color-grey-light-2); }
  .partners__content {
    display: grid;
    grid-template-columns: minmax(12rem, 1fr) minmax(min-content, max-content) minmax(min-content, max-content) minmax(12rem, 1fr);
    column-gap: 6rem;
    padding: 8rem 0; }
    @media only screen and (max-width: 93.75em) {
      .partners__content {
        grid-template-columns: minmax(6rem, 1fr) minmax(min-content, max-content) minmax(min-content, max-content) minmax(6rem, 1fr);
        column-gap: 6rem; } }
    @media only screen and (max-width: 68.75em) {
      .partners__content {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        padding: 1rem 5rem;
        text-align: center; } }
    @media only screen and (max-width: 56.25em) {
      .partners__content {
        padding: 0rem 5rem; } }
    @media only screen and (max-width: 31.25em) {
      .partners__content {
        grid-template-rows: max-content max-content;
        padding: 0rem 1rem;
        row-gap: 0; } }
    .partners__content__text {
      grid-column: 2/3; }
      @media only screen and (max-width: 68.75em) {
        .partners__content__text {
          grid-column: 1 / -1; } }
    .partners__content__heading.heading-tertiary {
      text-transform: uppercase; }
    .partners__content__tagline.heading-primary--inner {
      font-size: 3rem; }
      @media only screen and (max-width: 93.75em) {
        .partners__content__tagline.heading-primary--inner {
          font-size: 2.5rem;
          padding: 2rem 0;
          line-height: 4rem; } }
      @media only screen and (max-width: 68.75em) {
        .partners__content__tagline.heading-primary--inner {
          padding: 4rem 0 2rem 0; } }
      @media only screen and (max-width: 56.25em) {
        .partners__content__tagline.heading-primary--inner {
          font-size: 2.3rem; } }
      @media only screen and (max-width: 31.25em) {
        .partners__content__tagline.heading-primary--inner {
          font-size: 1.8rem; } }
    @media only screen and (max-width: 68.75em) {
      .partners__content__delersbtn {
        margin: 4rem 0 !important; } }
    .partners__content__brands {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 3rem;
      align-content: center; }
      @media only screen and (max-width: 93.75em) {
        .partners__content__brands {
          grid-gap: 2rem; } }
      @media only screen and (max-width: 68.75em) {
        .partners__content__brands {
          margin: 0 auto; } }
      @media only screen and (max-width: 31.25em) {
        .partners__content__brands {
          grid-template-columns: repeat(2, 1fr); } }
      @media only screen and (max-width: 21.87em) {
        .partners__content__brands {
          grid-template-columns: 1fr; } }
    .partners__content__image {
      width: 14rem;
      height: 14rem;
      object-fit: contain;
      background-color: var(--color-white); }
      @media only screen and (max-width: 68.75em) {
        .partners__content__image {
          width: 16rem;
          height: 16rem; } }
      @media only screen and (max-width: 31.25em) {
        .partners__content__image {
          width: 18rem;
          height: 14rem; } }
      @media only screen and (max-width: 21.87em) {
        .partners__content__image {
          width: 26rem;
          height: 16rem; } }

.contact {
  grid-column: full-start / full-end;
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35)), url(../../img/products/Ladoos_platter.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center; }
  .contact__div {
    padding: 8rem 10rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; }
    @media only screen and (max-width: 31.25em) {
      .contact__div {
        padding: 8rem 0rem; } }
  .contact__heading.contact__title {
    font-size: 4rem; }
    @media only screen and (max-width: 93.75em) {
      .contact__heading.contact__title {
        font-size: 3.5rem; } }
    @media only screen and (max-width: 56.25em) {
      .contact__heading.contact__title {
        font-size: 2.5rem; } }
    @media only screen and (max-width: 31.25em) {
      .contact__heading.contact__title {
        padding: 0rem 1rem; } }

.section {
  transition: all 1.5s; }
  .section__popin {
    transition: all 1.5s; }

.section--hidden {
  opacity: 0;
  transform: translateY(8rem); }

.section--hiddenLeft {
  opacity: 0;
  transform: translateX(-100%) rotate(-42deg); }

.section--hiddenRight {
  opacity: 0;
  transform: translateX(100%) rotate(42deg); }

.onsale {
  position: absolute;
  top: 14px;
  left: -2px;
  background-color: var(--color-alert);
  transform: rotateZ(-45deg);
  color: var(--color-grey-light-1);
  padding: 0 1rem;
  font-size: 1.3rem;
  border-radius: 20px;
  z-index: 9; }

span.available {
  color: green; }

span.not-available {
  color: var(--color-alert); }

.go-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-image: radial-gradient(var(--color-primary) 0%, var(--color-primary) 50%, var(--color-tertiary) 116%);
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-grey-dark-2);
  text-decoration: none;
  padding: 1.2rem;
  line-height: 1.5rem;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: all 2s; }
  .go-to-top span {
    display: block; }
  .go-to-top:hover {
    transform: translateY(-0.3rem);
    box-shadow: var(--color-secondary-dark); }

.go-to-top.reveal {
  opacity: 1;
  visibility: visible; }

.hover__effect:hover,
.ui-slider-handle:hover {
  transform: scale(1.05); }

.footer {
  background-color: var(--color-black);
  grid-column: full-start / full-end;
  color: var(--color-grey-light-4);
  font-size: 1.6rem;
  padding: 4rem 7rem;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  grid-template-rows: 80% 1fr;
  column-gap: 2rem;
  row-gap: 1rem;
  justify-items: center; }
  @media only screen and (max-width: 68.75em) {
    .footer {
      padding: 4rem 2rem; } }
  @media only screen and (max-width: 56.25em) {
    .footer {
      grid-template-rows: repeat(3, 1fr);
      grid-template-columns: 1fr;
      align-items: center;
      text-align: center; } }
  @media only screen and (max-width: 37.5em) {
    .footer {
      grid-template-rows: 2fr 1fr 2fr; } }
  @media only screen and (max-width: 31.25em) {
    .footer {
      grid-template-rows: min-content;
      row-gap: 6rem; } }
  .footer__heading.heading-tertiary {
    text-transform: uppercase;
    padding-bottom: 1rem;
    border-bottom: 0.2px groove var(--color-grey-light-4);
    margin-bottom: 2rem;
    text-align: center; }
  .footer__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(min-content, max-content));
    column-gap: 8rem;
    align-items: center; }
    @media only screen and (max-width: 93.75em) {
      .footer__list {
        column-gap: 3rem;
        row-gap: 1rem; } }
    @media only screen and (max-width: 56.25em) {
      .footer__list {
        grid-template-columns: repeat(4, minmax(min-content, max-content));
        column-gap: 2rem; } }
    @media only screen and (max-width: 37.5em) {
      .footer__list {
        grid-template-columns: repeat(2, minmax(min-content, max-content));
        column-gap: 10rem; } }
    @media only screen and (max-width: 31.25em) {
      .footer__list {
        column-gap: 3rem; } }
  .footer__item {
    list-style: none; }
  .footer__link {
    display: flex;
    align-items: center;
    text-decoration: none; }
    .footer__link span {
      text-align: left; }
  .footer__icon {
    height: 1.5rem;
    width: 1.5rem;
    margin-right: 2rem;
    fill: currentColor; }
  .footer__contactlink {
    color: currentColor;
    text-decoration: none; }
    .footer__contactlink:hover {
      text-decoration: underline; }
  .footer__social__list {
    list-style: none;
    display: flex;
    justify-content: space-around; }
    .footer__social__list__icon {
      width: 3rem;
      height: 3rem;
      margin-right: 1.2rem;
      filter: contrast(0.5); }
  @media only screen and (max-width: 37.5em) {
    .footer__navigation {
      margin-top: 2rem; } }
  @media only screen and (max-width: 37.5em) {
    .footer__social {
      margin-top: 7rem; } }
  @media only screen and (max-width: 31.25em) {
    .footer__social {
      margin-top: 4rem; } }
  @media only screen and (max-width: 37.5em) {
    .footer__address {
      margin-top: 2rem; } }
  .footer__address-grid {
    display: grid;
    grid-template-columns: minmax(min-content, max-content);
    align-items: center;
    row-gap: 2rem; }
    @media only screen and (max-width: 56.25em) {
      .footer__address-grid {
        justify-items: center; } }
    @media only screen and (max-width: 31.25em) {
      .footer__address-grid {
        justify-items: left; } }
  .footer__address-item {
    display: flex;
    align-items: center; }
    @media only screen and (max-width: 31.25em) {
      .footer__address-item span {
        width: 100%; } }
    @media only screen and (max-width: 31.25em) {
      .footer__address-item {
        width: 100%; } }
  .footer a:link:not(.special) {
    color: currentColor; }
  .footer a:link.special {
    color: var(--color-primary); }
  .footer a:hover,
  .footer a:focus {
    color: var(--color-primary-light); }
  .footer a:visited:not(.special) {
    color: currentColor; }
  .footer a:visited:hover:not(.special) {
    color: var(--color-primary-light); }
  .footer a:visited.special {
    color: var(--color-primary-light); }
  .footer a:visited:hover.special {
    color: var(--color-primary); }
  .footer__copyright {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 0;
    width: 100%;
    border-top: 2px dashed currentColor; }
    @media only screen and (max-width: 56.25em) {
      .footer__copyright {
        margin-top: 4rem; } }

.toppicks .grid {
  grid-template-rows: auto;
  align-items: stretch; }

.toppicks .grid__product {
  grid-template-rows: auto 1fr;
  height: 100%;
  align-items: start; }
  @media only screen and (max-width: 31.25em) {
    .toppicks .grid__product {
      grid-template-rows: auto min-content 1fr; } }

.toppicks .grid__details {
  min-width: 0;
  height: 100%; }

.toppicks .grid__details__price {
  font-size: clamp(2.4rem, 2.2vw, 3rem); }

.toppicks .grid__details__description {
  font-size: 1.8rem;
  line-height: 1.55;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4; }
  @media only screen and (max-width: 56.25em) {
    .toppicks .grid__details__description {
      font-size: 1.7rem;
      -webkit-line-clamp: 5; } }
  @media only screen and (max-width: 31.25em) {
    .toppicks .grid__details__description {
      font-size: 1.6rem;
      text-align: center;
      -webkit-line-clamp: 6; } }

.toppicks .grid__details .btn-view-more {
  margin-top: auto !important;
  margin-bottom: 0;
  align-self: flex-start; }
  @media only screen and (max-width: 31.25em) {
    .toppicks .grid__details .btn-view-more {
      align-self: center; } }
