@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Caveat:wght@400..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lobster&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    /* Fonts */
    --font-family: "Lobster", sans-serif;
    --second-family: "Poppins", sans-serif;
    --third-family: "Inter", sans-serif;
    --fourth-family: "Caveat", sans-serif;
    --fifth-family: "Almarai", sans-serif;
    --sixth-family: "Nunito", sans-serif;
    --seventh-family: "Lato", sans-serif;

    /* Colors */
    --primary: #2b2a2a;
    --secondary: #db1c35;
    --white: #fff;
    --black: #000;
    --black2: #17171b;
    --black3: #151515;
    --pink: #f7d9db;
    --pink2: #f3e0e2;
    --light-pink: #ffe7e7;
    --heading: #333333;
    --bg: #f5f5f5;
    --bg2: #ececec;
    --loader-bg: #dd5152;
    --grey: #504b4b;
    --grey2: #686363;
    --blue: #211f54;
    /* --grey2: #222; */
    --red: #ff0100;
    --yellow: #e59819;
    --star: #e7b66b;
    --btn-border: #dadada;
    --size-border: #a3a3a3;
    /* shadow */
    --shadow: var(--secondary) 0px 14px 28px, #00000038 0px 10px 10px;
    --btn-shadow: -1px -1px 5px 0px var(--white), 7px 7px 20px 0px #0003,
        4px 4px 5px 0px #0002;
    interpolate-size: allow-keywords;
}

/* Default */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-color: var(--secondary) transparent;
    scrollbar-width: thin;
}
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-thumb {
    background: var(--black);
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}
::-moz-selection {
    /*  Firefox */
    color: var(--bg);
    background: var(--secondary);
}
::selection {
    color: var(--bg);
    background: var(--secondary);
}
html,
body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    position: relative;
}
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
b,
i,
u,
ul,
ol,
li,
span {
    margin: 0;
    padding: 0;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
/* Text Stylings */
h1,
.sub-head {
    font-family: var(--font-family);
    color: var(--black2);
    font-weight: 400;
    font-size: 30px;
    letter-spacing: 2.5px;
}
h2 {
    font-family: var(--second-family);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.8px;
}
h3 {
    font-family: var(--second-family);
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--grey);
}
h4 {
    font-family: var(--second-family);
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
}
h5 {
    font-family: var(--second-family);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 5px;
}
h6 {
    font-family: var(--fourth-family);
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--black);
}
p {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    /* letter-spacing: 0.8px; */
}
/* global background color components */
.bg-1 {
    background-color: var(--primary);
}
.bg-2 {
    background-color: var(--bg);
}
/* Button */
.btn-main {
    background-color: var(--secondary);
    color: var(--bg);
    font-family: var(--second-family);
    border: none;
    border-radius: 22px;
    padding: 14px 40px;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all 0.75s ease-in-out;
    border: 0.5px solid var(--secondary);
    cursor: pointer;
}
.btn-main:hover {
    background-color: var(--white);
    color: var(--secondary);
}
.section {
    padding-top: 90px;
    padding-bottom: 90px;
}
/* Scroll slider Animation*/
.scroll-watcher {
    background-color: var(--secondary);
    height: 3px;
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    scale: 0 1;
    transform-origin: left;
    animation: scroll-watcher linear;
    animation-timeline: scroll();
}
@keyframes scroll-watcher {
    to {
        scale: 1 1;
    }
}
textarea {
    resize: none;
}

.bg-3 {
    background-color: var(--secondary) !important;
    color: var(--white) !important;
}
/* Sidebar New */
.sidebar {
    background-color: var(--black);
    height: 100%;
    width: 40%;
    position: fixed;
    top: 0;
    right: -41%;
    z-index: 99999;
    transition: all 1s;
    transition-delay: 0.5s;
}
.sidebar-inner button:focus {
    outline: none !important;
}
.sidebar-inner .menu img {
    width: 40px;
}
/* open animation */
.open-sidebar {
    right: 0;
    transition: all 0.8s;
}
#homeMain {
    transition: all 0.8s;
}
/* close button */
.close {
    font-size: 50px;
    display: block;
    position: absolute;
    top: 4px;
    left: 20px;
    cursor: pointer;
}
.close img {
    width: 50px;
}
#sidebarNav {
    height: 100vh;
    display: flex;
    justify-content: center;
    padding-top: 60px;
}
#sidebarNav ul li a {
    color: var(
        --bg
    ) !important; /* applied to overwrite the defeault bootstrap style */
    font-family: var(--second-family);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    padding-top: 14px;
    padding-bottom: 0;
    transition: 0.3s ease-in;
}
#sidebarNav ul li a.active {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 4px;
    position: relative;
}
/* open button */
.sidebarMain {
    position: fixed;
    right: 0;
    height: 100vh;
    width: 7%;
    background-color: var(--primary);
}
.siebarProducts {
    z-index: 15;
}
.menu {
    cursor: pointer;
    background-color: var(--primary);
    z-index: 9999;
    border: none;
}
#sidebarNav ul li a.active::after {
    content: "";
    background-color: var(--red);
    height: 20px; /* navbar active line */
    width: 130px;
    position: absolute;
    bottom: 3px;
    right: 0;
    z-index: -1;
    display: block;
}
.active-bar {
    background-color: var(--red);
    height: 20px; /* navbar active line */
    width: 130px;
    position: absolute;
    bottom: 10px;
    right: 0;
    z-index: -1;
    display: block;
}
.active-sm {
    right: -24px;
    bottom: 18px;
}
#sidebarNav .dropend {
    position: relative; /* dropdown Menu */
}
#sidebarNav .dropend .dropdown-menu {
    transition: 0.6s ease-in-out;
}
#sidebarNav .dropend:hover > .dropdown-menu {
    display: block;
    position: absolute;
    left: 140px;
    top: -20px;
    background-color: unset;
    border: none;
}
#sidebarNav .dropdown-menu.show {
    background-color: var(
        --grey2
    ) !important; /* applied to overwrite the default bootstrap style */
}
#sidebarNav .dropdown-menu li a {
    font-size: 14px !important; /* applied to overwrite the default bootstrap style */
    border: none !important;
}
#sidebarNav .dropdown-menu {
    padding: 15px !important; /* applied to overwrite the default bootstrap style */
}
#sidebarNav .navbar-nav {
    gap: 20px;
}
#sidebarNav ul li a:hover,
nav ul li a:hover {
    color: var(
        --pink
    ) !important; /* applied to overwrite the default bootstrap style */
    transform: translatex(10px) scale(1.1);
    background-color: transparent;
}
#sidebarNav .dropdown li a {
    font-family: var(--second-family);
    font-weight: 800;
}
#sidebarNav .dropdown li a:hover {
    transform: unset;
}
#sidebarNav .dropdown-menu li a {
    padding-top: 5px;
    font-size: 15px;
    font-weight: 500;
}
.sidebar-inner {
    background-color: var(--primary);
    height: 100vh; /* applied as required by the design */
    width: 100%;
    text-align: center;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    transition: all 0.45s ease-in-out;
}
.sidebar-text {
    display: flex; /* applied to align the image and text */
    align-items: center;
    flex-direction: column;
    gap: 10px;
}
.sidebar-text h5 a {
    color: var(--bg);
    font-size: 11px;
    writing-mode: vertical-rl; /* applied to rotate the sidebar text vertically */
}
.sidebar-cart button {
    background-color: transparent;
    border: none;
    display: block;
}
.sidebar-cart button img {
    width: 48px;
}
.sidebar-cart .cart-count {
    border: 1px solid var(--grey);
    background-color: var(--bg);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    position: relative;
    left: 34px;
    top: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.55s ease-in-out;
    cursor: default;
}
.sidebar-cart .cart-count:hover {
    background-color: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}
.sidebar-cart .cart-count p {
    font-family: var(--second-family);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.65px;
}
/* Display None Smooth Transition */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* -webkit-animation: fadeIn 1s;
animation: fadeIn 1.5s; */
/* Sidebar style ends */
.prod-img .btn-shop,
.personalized-prod .btn-shop,
.exploreProducts .btn-shop, .transform-ur-QR .btn-shop {
    background: var(--secondary);
    font-family: var(--fifth-family);
    color: var(--white);
    font-size: 10.79px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 4px 6px 4px 10px;
    border-radius: 50px;
    position: absolute;
    bottom: 39px;
    z-index: 100;
    border: none !important;
    transition: all 0.55s ease-in-out;
}
.transform-ur-QR.Qr2 .btn-shop{
     /* bottom: 102px; */
     bottom: 30px; /*changed by naresh from 102 to 30*/
     width: fit-content;
}
/* Preloader Animation */
#pre-loader1 {
    background: var(--loader-bg) url(../../images/pre-loader/loading.gif)
        no-repeat center center;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 10000;
}

@media (max-width: 767px) {
    html,
    body {
        overflow-x: hidden !important;
    }
    .section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    h1,
    .sub-head {
        font-size: 1.6rem;
    }
    .footer-mid {
        border: none;
    }
    .home-main {
        width: 100% !important;
        padding-right: 0 !important;
    }
    #sidebarNav {
        justify-content: start;
          overflow-y: scroll;
    }
    .sidebarMain {
        display: none !important;
    }
    .sidebarMain .sidebar {
        display: none !important;
    }
    .sidebar .product-search {
        left: 50% !important;
        top: -43px !important;
    }
      .your-story{
        padding-top: 52px !important;
        text-align: center;
    }
    .searchInput input {
        background: var(--secondary);
        border: none;
        border-radius: 50px;
        padding: 10px;
    }
    .searchInput input::placeholder {
        color: var(--white) !important;
    }
    .searchInput button {
        background: transparent;
        border: none;
    }
    .searchInput button i {
        color: var(--white);
        font-size: 20px;
    }
    .searchInput button {
        position: absolute;
        right: 22px;
        top: 10px;
    }
    .searchInput {
        display: inline-block;
    }
    #sidebarNav ul li a.active::after {
        height: 12px !important;
        width: 100px !important;
    }
    .mobileMenu {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .mobileMenu img {
        width: 30px;
    }
    #sidebarNav {
        padding-top: 100px !important;
    }
    .mobileSide #sidebarNav {
        margin-right: 50px;
    }
    .mobileSide #sidebarNav .navbar-nav {
        right: -500px;
        position: relative;
    }
    #mobMenu {
        background-color: transparent;
        border: none;
        outline: none;
        font-size: 40px;
        display: inline-block;
    }
    .mobileSide #sidebarNav {
        height: 100%;
    }
    #sidebarNav .navbar-nav {
        position: relative;
        right: -32px;
        margin-right: 35px;
    }
    #sidebarNav ul li a.active {
        font-size: 1.5em !important;
    }
    #sidebarNav ul li a {
        font-size: 1.2em;
    }
    .mobileSide .sidebar {
        height: 100%;
        width: 100% !important;
        right: -531px;
    }
    .sidebar.open-sidebar {
        width: 100% !important;
    }
    .footer-top{
        padding-bottom: 8rem !important;
        position: relative;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    html,
    body {
        overflow-x: hidden !important;
    }
    .productList-main {
        padding-right: 10% !important;
    }
    .sidebarMain {
        height: 100% !important;
        width: 10% !important;
    }
    .footer-mid {
        border: none;
    }
  #sidebarNav ul li a.active {
  font-size: 1.5rem;
}
}
@media (min-width: 992px) and (max-width: 1200px) {
    .productList-main {
        padding-right: 10% !important;
    }
    .sidebarMain {
        height: 100% !important;
        width: 10% !important;
    }
    .personalized-frame-quantity-wrap,
    .add-to-cart-wrap {
        flex-wrap: wrap;
    }
}
@media (max-width: 992px){
#sidebarNav ul li a:hover, nav ul li a:hover{
color: var(--white) !important;
  transform: unset !important;
  background-color: unset;
}
.btn-main:hover {
  background-color: var(--secondary) !important;
  color: var(--white) !important;
}
}
/* Star Rating Starts*/
.rating {
    display: flex;
    width: 100%;
    justify-content: start;
    overflow: hidden;
    flex-direction: row-reverse;
    position: relative;
    margin: 20px 0;
}
.rating-0 {
    filter: grayscale(100%);
}
.rating > input {
    display: none;
}
.rating > label {
    cursor: pointer;
    width: 30px;
    height: 30px;
    margin-top: auto;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23e3e3e3' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 76%;
    transition: 0.3s;
}
.rating > input:checked ~ label,
.rating > input:checked ~ label ~ label {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='rgb(223, 153, 42)' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
    opacity: 0.7;
}
.rating > input:not(:checked) ~ label:hover,
.rating > input:not(:checked) ~ label:hover ~ label {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='rgb(229, 152, 25)' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}
@media (max-height: 500px) {
      #sidebarNav {
          overflow-y: scroll;
    }
    #sidebarNav .navbar-nav {
  gap: 14px;
}
#sidebarNav ul li a.active {
  font-size: 2.5rem;
}
#sidebarNav ul li a {
  font-size: 1.2rem;
  padding-top: 18px;
}
  #sidebarNav ul li a.active {
    font-size: 1.4rem;
  }
#sidebarNav ul li a.active::after {
  height: 17px;
  width: 120px;
}
}
