1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039 |
- :root {
- --pink : #EC138D;
- --pink-dark: #BE0F72;
- --pink-light: #FFBFE3;
- --pink-extralight: #FFF5FB;
- --yellow-light: #F3F1B0;
- --yellow-3rd: #FEDFCC;
- --orange-vivid: #FBB218;
- --orange-vivid-dark: #C88F14;
- --orange-vivid-light: #FBC246;
- --violet: #6201AE;
- --red-deep: #B21F25;
- --red-light-extra: #FFEBEB;
- --blue-light: #EBF4FF;
- --green-light: #E0FFF0;
- --green-light-extra: #F0FFE0;
- --gray: #626262;
- --gray-light: #999999;
- --gray-extralight: #C6C6C6;
- --black: #000000;
- --black-light: #2B2B2D;
- --black-extralight: #D2D2D2;
-
- --white: #FFFFFF;
- --white-light: #EBEBEB;
- --shadow-black : 0px 4px 40px rgba(118, 118, 118, 0.15);
- --sdadow-black-sm: 0px 0px 40px rgba(0, 0, 0, 0.05);
- --shadow-product: 0px 0px 15px rgba(0, 0, 0, 0.2);
- --gardient-red: linear-gradient(140.22deg, #EC138D 9.65%, #B21F25 93.94%);
-
- }
- * {
- text-decoration: none;
- list-style: none;
- }
- body {
- font-family: 'Josefin Sans', sans-serif !important;
- line-height: 1.4 !important;
- }
- /* text size */
- h1 {
- font-size: 2em !important;
- line-height: 1em !important;
- }
- h2 {
- font-size: 1.75em !important;
- }
- h3 {
- font-size: 1.5em !important;
- }
- h4 {
- font-size: 1.25em !important;
- }
- h5 {
- font-size: 1em !important;
- }
- h6 {
- font-size: 0.75em !important;
- }
- p {
- font-size: 1.2em !important;
- margin-bottom: 0 !important;
- }
- dl, ol, ul {
- margin-bottom: 0;
- padding-left: 0;
- }
- a {
- text-decoration: none;
- }
- /* background color */
- .bg-black {
- background-color: var(--black) !important;
- }
- .bg-gray {
- background-color: var(--gray) !important;
- }
- .bg-gray-light {
- background-color: var(--gray-light) !important;
- }
- .bg-gray-extralight {
- background-color: var(--gray-extralight) !important;
- }
- .bg-red-deep {
- background-color: var(--red-deep) !important;
- }
- .bg-pink {
- background-color: var(--pink) !important;
- }
- .bg-pink-extralight {
- background-color: var(--pink-extralight) !important;
- }
- .bg-white {
- background-color: var(--white) !important;
- }
- .bg-violet {
- background-color: var(--violet) !important;
- }
- /* text color */
- .text-black {
- color: var(--black) !important;
- }
- .text-black-light {
- color: var(--black-light) !important;
- }
- .text-black-extralight {
- color: var(--black-extralight) !important;
- }
- .text-white {
- color: var(--white) !important;
- }
- .text-pink {
- color: var(--pink) !important;
- }
- .text-deep-red {
- color: var(--red-deep);
- }
- .text-gray {
- color: var(--gray) !important;
- }
- .text-light-gray {
- color: var(--gray-light) !important;
- }
- /* button */
- .btn-black {
- background: var(--black);
- color: var(--white);
- }
- .btn-black:hover {
- background: var(--black-light);
- color: var(--white);
- }
- .btn-pink {
- background-color: var(--pink);
- color: var(--white);
- }
- .btn-pink:hover {
- background-color: var(--pink-dark);
- color: var(--white);
- }
- .btn-orange-vivid {
- background-color: var(--orange-vivid);
- color: var(--white);
- }
- .btn-orange-vivid:hover {
- background-color: var(--orange-vivid-dark);
- color: var(--white);
- }
- .btn-black-outline {
- border: 1px solid var(--gray);
- color: var(--black);
- }
- .btn-black-outline:hover {
- border: 1px solid var(--gray);
- color: var(--gray);
- }
- /* border */
- .border-light-gray {
- border-color: var(--gray-light) !important;
- }
- .border-extralight-gray {
- border-color: var(--gray-extralight) !important;
- }
- .border-light-white {
- border-color: var(--white-light) !important;
- }
- .border-extralight-black {
- border-color: var(--white-light) !important;
- }
- /* utility */
- .border-image {
- background: url(../images/home_page/border-bottom.svg) no-repeat center center;
- height: 2em;
- max-width: 50em;
- }
- .view-all {
- font-size: 1.3em;
- padding: .8em 1.2em;
- }
- .section-title {
- font-size: 2.5em;
- }
- .section-subtitle {
- font-size: 2em;
- }
- @media screen and (max-width: 992px) {
- .border-image {
- max-width: 10em !important;
- }
- .view-all {
- font-size: 1.1em;
- padding: .75em 1.1em;
- }
- .section-title {
- font-size: 2em;
- }
- .section-subtitle {
- font-size: 1.5em;
- }
- }
- @media screen and (max-width: 576px) {
- .border-image {
- max-width: 8em !important;
- }
- .section-title {
- font-size: 1.5em;
- }
-
- .section-subtitle {
- font-size: 1em;
- }
-
- }
- /* utility end */
- /* swiper slider */
- .swiper {
- width: 100%;
- height: 100%;
- }
- .swiper-slide {
- text-align: center;
- font-size: 18px;
- background: #fff;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .swiper-slide img {
- display: block;
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- /* header */
- #header .offer {
- font-size: 1em !important;
- }
- #header .offer p {
- font-size: .9em !important;
- }
- #header .brand-logo {
- height: 3em;
- }
- #header .search .search-icon {
- width: 1.5em;
- bottom: 10px;
- left: 1em;
- margin-top: 0;
- }
- #header .search input {
- padding-left: 2.5em;
- font-size: 1.2em;
- }
- /* header end*/
- /* foooter start */
- #footer {
- letter-spacing: 3px;
- line-height: 1.7;
- }
- #footer a {
- color: var(--white);
- font-weight: 300;
- }
- #footer .footer-comp-title {
- font-weight: 300 !important;
- white-space: nowrap;
- }
- #footer .footer-input {
- font-size: 1.2em;
- width: 100%;
- }
- #footer .social-icon {
- height: 20px
- }
- #footer .footer-border-bottom {
- border-bottom: 3px solid var(--white);
- }
- #footer .copyright {
- font-size: 1.3em;
- }
- @media screen and (max-width: 768px) {
- #footer {
- letter-spacing: .5px;
- line-height: 1.2;
- }
- #footer .h3 {
- font-size: 1.2em;
- }
- #footer a {
- font-size: .8em;
- }
- #footer .footer-border-bottom {
- border-bottom: 1.5px solid var(--white);
- }
- #footer .footer-input {
- font-size: 1em;
- width: 80%;
- }
-
- #footer .social-icon {
- height: 30px
- }
- #footer .copyright {
- font-size: 1em;
- }
- }
-
- /* foooter end */
- /* product list */
- .product-single {
- width: 20%;
- }
- .product-single .product {
- box-shadow: var(--shadow-product);
- }
- .product-single .product .image-container {
- width: 100%;
- position: relative;
- }
- .product-single .product .image-container img {
- max-width: 100%;
- }
- .product-single .product .brand-title,
- .product-single .product .title {
- font-size: 1em;
- }
- .product-single .product .brand-title:hover {
- color: var(--red-deep);
- }
- .product-single .product .title:hover {
- color: initial;
- }
- .product-single .product .rating-icon {
- height: .8em;
- width: .8em;
- }
- .product-single .product .rating-count {
- font-size: 1em;
- }
- .product-single .product .offer {
- font-size: 1.2em !important;
- }
-
- .product-single .checkout-btn {
- padding: .5em 1.3em !important;
- }
-
- .product-single .checkout-btn img{
- height: 1.6em;
- }
-
- .product-single .checkout-btn .add-cart-text {
- transform: translateY(2.4px);
- font-size: .9em;
- }
- @media screen and (max-width: 1200px) {
- .product-single {
- width: 25%;
- }
- .product-single .product .offer {
- font-size: 1.1em !important;
- }
- }
- @media screen and (max-width: 992px) {
- .product-single {
- width: 50%;
- }
- .product-single .product {
- border: .5px solid var(--gray-extralight);
- }
- .product-single .product .title {
- font-size: .9em;
- }
-
- .product-single .product .offer {
- font-size: 1em !important;
- }
- }
- @media screen and (max-width: 768px) {
- .product-single{
- width: 100%;
- }
- }
- /* Home page */
- .discover-more {
- font-size: 1.5em ;
- }
- /* hero */
- #hero .banner-carousel img {
- width: 100%;
- }
- /* shop tabs */
- #shop-tabs .tabs-btn {
- border: none;
- background: none;
- font-size: 1.5em;
- }
- #discover-more .title {
- font-size: 1.5em;
- }
- #discover-more .details {
- font-size: 1.2em;
- }
- #shop-tabs .active {
- border-bottom: solid;
- border-bottom-width: 30px;
- border-image:url(../images/home_page/border-image.png) 0 0 30 0 repeat ;
- }
- /* whats-happening */
- #whats-happening .discover-more {
- font-size: 1em !important;
- }
- /* heir shine */
- /* #heir-shine .discover-more {
- font-size: 1.4em !important;
- } */
- /* trending stories */
- #trending-stories .date {
- font-size: .9em !important;
- }
- #trending-stories .blog-link a:hover {
- color: var(--gray);
- }
- #trending-stories .category-link a:hover,
- #trending-stories .read-more a:hover {
- color: var(--red-deep);
- }
- /* all link */
- #all-link a {
- color: var(--gray);
- }
- #all-link li {
- text-align: center;
- }
- @media screen and (max-width: 992px) {
- #shop-tabs .tabs-btn {
- font-size: 1.3em;
-
- }
- .discover-more {
- font-size: 1.2em !important;
- }
- #discover-more .title {
- font-size: 1.2em;
- }
-
- #discover-more .details {
- font-size: 1em;
- }
-
- .view-more {
- position: absolute !important;
- bottom: 0;
- }
- }
- @media screen and (max-width: 768px) {
-
- .discover-more {
- font-size: 1em !important;
- }
- #discover-more .title {
- font-size: 1em;
- }
- #discover-more .details {
- font-size: .9em;
- }
- }
- /* Home page end*/
- /* All Product Page */
- #all-product-banner {
- height: 100px !important;
- }
- #all-product-nav ul {
- color: var(--black);
- font-weight: 300;
- font-size: 1.2em;
- }
- #all-product-nav a {
- color: var(--black);
- font-weight: 300;
- font-size: 1em;
- white-space: nowrap;
- text-align: center;
- }
- #all-product-nav a:hover {
- color: var(--pink);
- }
- #all-product-nav .active {
- color: var(--pink);
- }
- #all-products .short-filter {
- margin-left: 290px;
- }
- #all-products .short-filter .short-select {
- max-width: 140px;
- }
- #all-products .filter {
- min-width: 300px !important;
- }
- #all-products .filter .filter-close-btn img {
- height: 18px;
- width: 18px;
- }
- #all-products .form-check-input:checked {
- background-color: var(--pink);
- border-color: var(--pink);
- }
- #all-products .products .product-single{
- width: 25%;
- }
- #all-products .filter-product-price .form-range::-webkit-slider-thumb {
- background: var(--pink);
- }
- #checkout .checkout-container {
- bottom: 0;
- right: 0;
- width: 480px;
- height: 90vh;
- box-shadow: var(--shadow-black);
- z-index: 0;
- border-radius: 5px 0 0 0;
- display: none;
- z-index: 99999999;
- overflow-y: auto;
- }
- #checkout .checkout-container::-webkit-scrollbar {
- display: none;
- }
- #checkout .checkout-container .cross-btn {
- transform: translateY(-15px);
- }
- #checkout .checkout-container .cross-btn img {
- height: 15px;
- width: 15px;
- }
- #checkout .checkout-container .proceed-button-container {
- box-shadow: var(--shadow-product);
- width: 480px;
- }
- #checkout .checkout-container .cart-product-container .cart-items .item {
- box-shadow: var(--shadow-black);
- }
- #checkout .checkout-container .cart-product-container .cart-items .img-container {
- height: 100px;
- }
- #checkout .checkout-container .cart-product-container .cart-items .delete-btn {
- top: 10px;
- right: 10px;
- }
- #checkout .checkout-container .cart-product-container .cart-items .delete-btn:hover {
- transform: scale(1.1);
- }
- #checkout .checkout-container .cart-product-container .cart-items .delete-btn img {
- height: 25px;
- width: 25px;
- }
- #checkout .checkout-container .cart-product-container .cart-items .quantity-container .title {
- font-size: .8em;
- }
- #checkout-btn-desktop {
- bottom: 250px;
- right: 0;
- border-radius: 10px 0 0 10px;
- box-shadow: var(--shadow-product);
- }
- #checkout-btn-desktop .checkout-icon {
- width: 30px;
- height: 30px;
- }
- #checkout-btn-desktop .count {
- font-size: .9em !important;
- }
- #checkout-btn-desktop .price {
- font-size: 1em !important;
- color: var(--red-deep) !important;
- }
- #checkout-btn-mobile .checkout-mobile {
- width: 100vw;
- }
- #checkout-btn-mobile .badge {
- transform: translate(-8px, -12px);
- padding: .4em;
- }
- @media screen and (max-width: 1200px) {
-
- #all-products .products .product-single{
- width: 33.33%;
- }
- #all-products .short-filter {
- margin-left: 240px;
- }
-
- #all-products .filter {
- min-width: 250px !important;
- }
- }
- @media screen and (max-width: 992px) {
- #all-products {
- overflow: hidden;
- }
-
- #all-products .short-filter {
- margin-left: 0;
- }
-
- #all-products .filter {
- position: absolute;
- top: 0;
- right: 0;
- min-width: 380px !important;
- overflow: hidden;
- transform: translateX(400px);
- transition: all .35s ease-in-out;
- padding: 1em 1.5em 2em !important;
- border: none !important;
- box-shadow: var(--shadow-black) !important;
- overflow-y: auto;
- z-index: 99999;
- }
-
- #all-products .filter::-webkit-scrollbar {
- display: none;
- }
-
- #all-products .active {
- transform: translateX(0);
- }
-
- #all-products .products .product-single{
- width: 50%;
- }
-
-
- #checkout .checkout-container {
- top: 0;
- bottom: 0;
- left: 0;
- width: 100vw;
- height: 100%;
- box-shadow: var(--shadow-black);
- z-index: 9999;
- }
-
- #checkout .checkout-container .proceed-button-container {
- width: 100vw;
- }
- }
- @media screen and (max-width: 768px) {
- #all-products .products .product-single{
- width: 50%;
- }
- #all-products .filter {
- min-width: 300px !important;
- }
- }
- @media screen and (max-width: 768px) {
- #all-products .products .product-single{
- width: 100%;
- }
- }
- /* All Product Page End */
- /* product details page */
- /* top add */
- #top-add .add-container {
- height: 100px;
- }
- .add {
- background: var(--pink-light);
- }
- /* product details */
- #product-details .details {
- box-shadow: var(--shadow-black);
- height: 100%;
- }
- #product-details .details .count-container {
- width: fit-content;
- font-size: 1em;
- }
- #product-details .details .count-container .color-btn-container {
- width: 10px !important;
- }
- #product-details .details .size-container label {
- font-size: .8em !important;
- padding: .5em .5em .2em;
- }
- #product-details .details .count-container .count-btn-icon {
- width: 10px;
- height: 10px;
- transition: all .15s ease-in-out;
- }
- #product-details .details .count-container .count-btn-icon:hover {
- transform: scale(1.4) !important;
- }
- #product-details .details .offer {
- flex: 1;
- }
- #product-details .details .offer .title {
- font-size: .9em;
- }
- #product-details .details .offer .details {
- font-size: .8em;
- }
- #product-details .details .voucher {
- flex: 1;
- width: 100%;
- }
-
-
- /* product details carousel */
- #product-details .product-carousel {
- box-shadow: var(--shadow-black);
- height: 100%;
- }
- #product-details .thumb-container .productThumb {
- max-height: 350px;
- overflow: hidden;
- }
- #product-details .thumb-container .productThumb .swiper-wrapper img {
- width: 120px !important;
- height: auto !important;
- }
- #product-details .main-carousel {
- overflow: hidden;
- }
- #product-details .main-carousel .productSlider {
- overflow: hidden !important;
- }
- #product-details .main-carousel .productSlider img {
- height: 100% !important;
- }
- @media screen and (max-width: 992px) {
-
- #product-details .thumb-container .productThumb {
- height: 50px;
- width: 400px;
- border-right: none !important;
- padding: 3em;
- }
- #product-details .thumb-container .productThumb .swiper-wrapper img {
- height: 80px;
- width: 80px !important;
- }
- }
- @media screen and (max-width: 576px) {
- #product-details .thumb-container .productThumb {
- width: 300px;
- }
- }
- /* product details tab section */
- #product-details-tab {
- line-height: 1.2 !important;
- }
-
- #product-details-tab .nav-tabs .active {
- color: var(--pink);
- border-bottom: 2px solid var(--pink) !important;
- }
-
- #product-details-tab .tab-content ul li {
- list-style: disc !important;
- }
- /* product details page end*/
|