style.css 17 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039
  1. :root {
  2. --pink : #EC138D;
  3. --pink-dark: #BE0F72;
  4. --pink-light: #FFBFE3;
  5. --pink-extralight: #FFF5FB;
  6. --yellow-light: #F3F1B0;
  7. --yellow-3rd: #FEDFCC;
  8. --orange-vivid: #FBB218;
  9. --orange-vivid-dark: #C88F14;
  10. --orange-vivid-light: #FBC246;
  11. --violet: #6201AE;
  12. --red-deep: #B21F25;
  13. --red-light-extra: #FFEBEB;
  14. --blue-light: #EBF4FF;
  15. --green-light: #E0FFF0;
  16. --green-light-extra: #F0FFE0;
  17. --gray: #626262;
  18. --gray-light: #999999;
  19. --gray-extralight: #C6C6C6;
  20. --black: #000000;
  21. --black-light: #2B2B2D;
  22. --black-extralight: #D2D2D2;
  23. --white: #FFFFFF;
  24. --white-light: #EBEBEB;
  25. --shadow-black : 0px 4px 40px rgba(118, 118, 118, 0.15);
  26. --sdadow-black-sm: 0px 0px 40px rgba(0, 0, 0, 0.05);
  27. --shadow-product: 0px 0px 15px rgba(0, 0, 0, 0.2);
  28. --gardient-red: linear-gradient(140.22deg, #EC138D 9.65%, #B21F25 93.94%);
  29. }
  30. * {
  31. text-decoration: none;
  32. list-style: none;
  33. }
  34. body {
  35. font-family: 'Josefin Sans', sans-serif !important;
  36. line-height: 1.4 !important;
  37. }
  38. /* text size */
  39. h1 {
  40. font-size: 2em !important;
  41. line-height: 1em !important;
  42. }
  43. h2 {
  44. font-size: 1.75em !important;
  45. }
  46. h3 {
  47. font-size: 1.5em !important;
  48. }
  49. h4 {
  50. font-size: 1.25em !important;
  51. }
  52. h5 {
  53. font-size: 1em !important;
  54. }
  55. h6 {
  56. font-size: 0.75em !important;
  57. }
  58. p {
  59. font-size: 1.2em !important;
  60. margin-bottom: 0 !important;
  61. }
  62. dl, ol, ul {
  63. margin-bottom: 0;
  64. padding-left: 0;
  65. }
  66. a {
  67. text-decoration: none;
  68. }
  69. /* background color */
  70. .bg-black {
  71. background-color: var(--black) !important;
  72. }
  73. .bg-gray {
  74. background-color: var(--gray) !important;
  75. }
  76. .bg-gray-light {
  77. background-color: var(--gray-light) !important;
  78. }
  79. .bg-gray-extralight {
  80. background-color: var(--gray-extralight) !important;
  81. }
  82. .bg-red-deep {
  83. background-color: var(--red-deep) !important;
  84. }
  85. .bg-pink {
  86. background-color: var(--pink) !important;
  87. }
  88. .bg-pink-extralight {
  89. background-color: var(--pink-extralight) !important;
  90. }
  91. .bg-white {
  92. background-color: var(--white) !important;
  93. }
  94. .bg-violet {
  95. background-color: var(--violet) !important;
  96. }
  97. /* text color */
  98. .text-black {
  99. color: var(--black) !important;
  100. }
  101. .text-black-light {
  102. color: var(--black-light) !important;
  103. }
  104. .text-black-extralight {
  105. color: var(--black-extralight) !important;
  106. }
  107. .text-white {
  108. color: var(--white) !important;
  109. }
  110. .text-pink {
  111. color: var(--pink) !important;
  112. }
  113. .text-deep-red {
  114. color: var(--red-deep);
  115. }
  116. .text-gray {
  117. color: var(--gray) !important;
  118. }
  119. .text-light-gray {
  120. color: var(--gray-light) !important;
  121. }
  122. /* button */
  123. .btn-black {
  124. background: var(--black);
  125. color: var(--white);
  126. }
  127. .btn-black:hover {
  128. background: var(--black-light);
  129. color: var(--white);
  130. }
  131. .btn-pink {
  132. background-color: var(--pink);
  133. color: var(--white);
  134. }
  135. .btn-pink:hover {
  136. background-color: var(--pink-dark);
  137. color: var(--white);
  138. }
  139. .btn-orange-vivid {
  140. background-color: var(--orange-vivid);
  141. color: var(--white);
  142. }
  143. .btn-orange-vivid:hover {
  144. background-color: var(--orange-vivid-dark);
  145. color: var(--white);
  146. }
  147. .btn-black-outline {
  148. border: 1px solid var(--gray);
  149. color: var(--black);
  150. }
  151. .btn-black-outline:hover {
  152. border: 1px solid var(--gray);
  153. color: var(--gray);
  154. }
  155. /* border */
  156. .border-light-gray {
  157. border-color: var(--gray-light) !important;
  158. }
  159. .border-extralight-gray {
  160. border-color: var(--gray-extralight) !important;
  161. }
  162. .border-light-white {
  163. border-color: var(--white-light) !important;
  164. }
  165. .border-extralight-black {
  166. border-color: var(--white-light) !important;
  167. }
  168. /* utility */
  169. .border-image {
  170. background: url(../images/home_page/border-bottom.svg) no-repeat center center;
  171. height: 2em;
  172. max-width: 50em;
  173. }
  174. .view-all {
  175. font-size: 1.3em;
  176. padding: .8em 1.2em;
  177. }
  178. .section-title {
  179. font-size: 2.5em;
  180. }
  181. .section-subtitle {
  182. font-size: 2em;
  183. }
  184. @media screen and (max-width: 992px) {
  185. .border-image {
  186. max-width: 10em !important;
  187. }
  188. .view-all {
  189. font-size: 1.1em;
  190. padding: .75em 1.1em;
  191. }
  192. .section-title {
  193. font-size: 2em;
  194. }
  195. .section-subtitle {
  196. font-size: 1.5em;
  197. }
  198. }
  199. @media screen and (max-width: 576px) {
  200. .border-image {
  201. max-width: 8em !important;
  202. }
  203. .section-title {
  204. font-size: 1.5em;
  205. }
  206. .section-subtitle {
  207. font-size: 1em;
  208. }
  209. }
  210. /* utility end */
  211. /* swiper slider */
  212. .swiper {
  213. width: 100%;
  214. height: 100%;
  215. }
  216. .swiper-slide {
  217. text-align: center;
  218. font-size: 18px;
  219. background: #fff;
  220. display: flex;
  221. justify-content: center;
  222. align-items: center;
  223. }
  224. .swiper-slide img {
  225. display: block;
  226. width: 100%;
  227. height: 100%;
  228. object-fit: cover;
  229. }
  230. /* header */
  231. #header .offer {
  232. font-size: 1em !important;
  233. }
  234. #header .offer p {
  235. font-size: .9em !important;
  236. }
  237. #header .brand-logo {
  238. height: 3em;
  239. }
  240. #header .search .search-icon {
  241. width: 1.5em;
  242. bottom: 10px;
  243. left: 1em;
  244. margin-top: 0;
  245. }
  246. #header .search input {
  247. padding-left: 2.5em;
  248. font-size: 1.2em;
  249. }
  250. /* header end*/
  251. /* foooter start */
  252. #footer {
  253. letter-spacing: 3px;
  254. line-height: 1.7;
  255. }
  256. #footer a {
  257. color: var(--white);
  258. font-weight: 300;
  259. }
  260. #footer .footer-comp-title {
  261. font-weight: 300 !important;
  262. white-space: nowrap;
  263. }
  264. #footer .footer-input {
  265. font-size: 1.2em;
  266. width: 100%;
  267. }
  268. #footer .social-icon {
  269. height: 20px
  270. }
  271. #footer .footer-border-bottom {
  272. border-bottom: 3px solid var(--white);
  273. }
  274. #footer .copyright {
  275. font-size: 1.3em;
  276. }
  277. @media screen and (max-width: 768px) {
  278. #footer {
  279. letter-spacing: .5px;
  280. line-height: 1.2;
  281. }
  282. #footer .h3 {
  283. font-size: 1.2em;
  284. }
  285. #footer a {
  286. font-size: .8em;
  287. }
  288. #footer .footer-border-bottom {
  289. border-bottom: 1.5px solid var(--white);
  290. }
  291. #footer .footer-input {
  292. font-size: 1em;
  293. width: 80%;
  294. }
  295. #footer .social-icon {
  296. height: 30px
  297. }
  298. #footer .copyright {
  299. font-size: 1em;
  300. }
  301. }
  302. /* foooter end */
  303. /* product list */
  304. .product-single {
  305. width: 20%;
  306. }
  307. .product-single .product {
  308. box-shadow: var(--shadow-product);
  309. }
  310. .product-single .product .image-container {
  311. width: 100%;
  312. position: relative;
  313. }
  314. .product-single .product .image-container img {
  315. max-width: 100%;
  316. }
  317. .product-single .product .brand-title,
  318. .product-single .product .title {
  319. font-size: 1em;
  320. }
  321. .product-single .product .brand-title:hover {
  322. color: var(--red-deep);
  323. }
  324. .product-single .product .title:hover {
  325. color: initial;
  326. }
  327. .product-single .product .rating-icon {
  328. height: .8em;
  329. width: .8em;
  330. }
  331. .product-single .product .rating-count {
  332. font-size: 1em;
  333. }
  334. .product-single .product .offer {
  335. font-size: 1.2em !important;
  336. }
  337. .product-single .checkout-btn {
  338. padding: .5em 1.3em !important;
  339. }
  340. .product-single .checkout-btn img{
  341. height: 1.6em;
  342. }
  343. .product-single .checkout-btn .add-cart-text {
  344. transform: translateY(2.4px);
  345. font-size: .9em;
  346. }
  347. @media screen and (max-width: 1200px) {
  348. .product-single {
  349. width: 25%;
  350. }
  351. .product-single .product .offer {
  352. font-size: 1.1em !important;
  353. }
  354. }
  355. @media screen and (max-width: 992px) {
  356. .product-single {
  357. width: 50%;
  358. }
  359. .product-single .product {
  360. border: .5px solid var(--gray-extralight);
  361. }
  362. .product-single .product .title {
  363. font-size: .9em;
  364. }
  365. .product-single .product .offer {
  366. font-size: 1em !important;
  367. }
  368. }
  369. @media screen and (max-width: 768px) {
  370. .product-single{
  371. width: 100%;
  372. }
  373. }
  374. /* Home page */
  375. .discover-more {
  376. font-size: 1.5em ;
  377. }
  378. /* hero */
  379. #hero .banner-carousel img {
  380. width: 100%;
  381. }
  382. /* shop tabs */
  383. #shop-tabs .tabs-btn {
  384. border: none;
  385. background: none;
  386. font-size: 1.5em;
  387. }
  388. #discover-more .title {
  389. font-size: 1.5em;
  390. }
  391. #discover-more .details {
  392. font-size: 1.2em;
  393. }
  394. #shop-tabs .active {
  395. border-bottom: solid;
  396. border-bottom-width: 30px;
  397. border-image:url(../images/home_page/border-image.png) 0 0 30 0 repeat ;
  398. }
  399. /* whats-happening */
  400. #whats-happening .discover-more {
  401. font-size: 1em !important;
  402. }
  403. /* heir shine */
  404. /* #heir-shine .discover-more {
  405. font-size: 1.4em !important;
  406. } */
  407. /* trending stories */
  408. #trending-stories .date {
  409. font-size: .9em !important;
  410. }
  411. #trending-stories .blog-link a:hover {
  412. color: var(--gray);
  413. }
  414. #trending-stories .category-link a:hover,
  415. #trending-stories .read-more a:hover {
  416. color: var(--red-deep);
  417. }
  418. /* all link */
  419. #all-link a {
  420. color: var(--gray);
  421. }
  422. #all-link li {
  423. text-align: center;
  424. }
  425. @media screen and (max-width: 992px) {
  426. #shop-tabs .tabs-btn {
  427. font-size: 1.3em;
  428. }
  429. .discover-more {
  430. font-size: 1.2em !important;
  431. }
  432. #discover-more .title {
  433. font-size: 1.2em;
  434. }
  435. #discover-more .details {
  436. font-size: 1em;
  437. }
  438. .view-more {
  439. position: absolute !important;
  440. bottom: 0;
  441. }
  442. }
  443. @media screen and (max-width: 768px) {
  444. .discover-more {
  445. font-size: 1em !important;
  446. }
  447. #discover-more .title {
  448. font-size: 1em;
  449. }
  450. #discover-more .details {
  451. font-size: .9em;
  452. }
  453. }
  454. /* Home page end*/
  455. /* All Product Page */
  456. #all-product-banner {
  457. height: 100px !important;
  458. }
  459. #all-product-nav ul {
  460. color: var(--black);
  461. font-weight: 300;
  462. font-size: 1.2em;
  463. }
  464. #all-product-nav a {
  465. color: var(--black);
  466. font-weight: 300;
  467. font-size: 1em;
  468. white-space: nowrap;
  469. text-align: center;
  470. }
  471. #all-product-nav a:hover {
  472. color: var(--pink);
  473. }
  474. #all-product-nav .active {
  475. color: var(--pink);
  476. }
  477. #all-products .short-filter {
  478. margin-left: 290px;
  479. }
  480. #all-products .short-filter .short-select {
  481. max-width: 140px;
  482. }
  483. #all-products .filter {
  484. min-width: 300px !important;
  485. }
  486. #all-products .filter .filter-close-btn img {
  487. height: 18px;
  488. width: 18px;
  489. }
  490. #all-products .form-check-input:checked {
  491. background-color: var(--pink);
  492. border-color: var(--pink);
  493. }
  494. #all-products .products .product-single{
  495. width: 25%;
  496. }
  497. #all-products .filter-product-price .form-range::-webkit-slider-thumb {
  498. background: var(--pink);
  499. }
  500. #checkout .checkout-container {
  501. bottom: 0;
  502. right: 0;
  503. width: 480px;
  504. height: 90vh;
  505. box-shadow: var(--shadow-black);
  506. z-index: 0;
  507. border-radius: 5px 0 0 0;
  508. display: none;
  509. z-index: 99999999;
  510. overflow-y: auto;
  511. }
  512. #checkout .checkout-container::-webkit-scrollbar {
  513. display: none;
  514. }
  515. #checkout .checkout-container .cross-btn {
  516. transform: translateY(-15px);
  517. }
  518. #checkout .checkout-container .cross-btn img {
  519. height: 15px;
  520. width: 15px;
  521. }
  522. #checkout .checkout-container .proceed-button-container {
  523. box-shadow: var(--shadow-product);
  524. width: 480px;
  525. }
  526. #checkout .checkout-container .cart-product-container .cart-items .item {
  527. box-shadow: var(--shadow-black);
  528. }
  529. #checkout .checkout-container .cart-product-container .cart-items .img-container {
  530. height: 100px;
  531. }
  532. #checkout .checkout-container .cart-product-container .cart-items .delete-btn {
  533. top: 10px;
  534. right: 10px;
  535. }
  536. #checkout .checkout-container .cart-product-container .cart-items .delete-btn:hover {
  537. transform: scale(1.1);
  538. }
  539. #checkout .checkout-container .cart-product-container .cart-items .delete-btn img {
  540. height: 25px;
  541. width: 25px;
  542. }
  543. #checkout .checkout-container .cart-product-container .cart-items .quantity-container .title {
  544. font-size: .8em;
  545. }
  546. #checkout-btn-desktop {
  547. bottom: 250px;
  548. right: 0;
  549. border-radius: 10px 0 0 10px;
  550. box-shadow: var(--shadow-product);
  551. }
  552. #checkout-btn-desktop .checkout-icon {
  553. width: 30px;
  554. height: 30px;
  555. }
  556. #checkout-btn-desktop .count {
  557. font-size: .9em !important;
  558. }
  559. #checkout-btn-desktop .price {
  560. font-size: 1em !important;
  561. color: var(--red-deep) !important;
  562. }
  563. #checkout-btn-mobile .checkout-mobile {
  564. width: 100vw;
  565. }
  566. #checkout-btn-mobile .badge {
  567. transform: translate(-8px, -12px);
  568. padding: .4em;
  569. }
  570. @media screen and (max-width: 1200px) {
  571. #all-products .products .product-single{
  572. width: 33.33%;
  573. }
  574. #all-products .short-filter {
  575. margin-left: 240px;
  576. }
  577. #all-products .filter {
  578. min-width: 250px !important;
  579. }
  580. }
  581. @media screen and (max-width: 992px) {
  582. #all-products {
  583. overflow: hidden;
  584. }
  585. #all-products .short-filter {
  586. margin-left: 0;
  587. }
  588. #all-products .filter {
  589. position: absolute;
  590. top: 0;
  591. right: 0;
  592. min-width: 380px !important;
  593. overflow: hidden;
  594. transform: translateX(400px);
  595. transition: all .35s ease-in-out;
  596. padding: 1em 1.5em 2em !important;
  597. border: none !important;
  598. box-shadow: var(--shadow-black) !important;
  599. overflow-y: auto;
  600. z-index: 99999;
  601. }
  602. #all-products .filter::-webkit-scrollbar {
  603. display: none;
  604. }
  605. #all-products .active {
  606. transform: translateX(0);
  607. }
  608. #all-products .products .product-single{
  609. width: 50%;
  610. }
  611. #checkout .checkout-container {
  612. top: 0;
  613. bottom: 0;
  614. left: 0;
  615. width: 100vw;
  616. height: 100%;
  617. box-shadow: var(--shadow-black);
  618. z-index: 9999;
  619. }
  620. #checkout .checkout-container .proceed-button-container {
  621. width: 100vw;
  622. }
  623. }
  624. @media screen and (max-width: 768px) {
  625. #all-products .products .product-single{
  626. width: 50%;
  627. }
  628. #all-products .filter {
  629. min-width: 300px !important;
  630. }
  631. }
  632. @media screen and (max-width: 768px) {
  633. #all-products .products .product-single{
  634. width: 100%;
  635. }
  636. }
  637. /* All Product Page End */
  638. /* product details page */
  639. /* top add */
  640. #top-add .add-container {
  641. height: 100px;
  642. }
  643. .add {
  644. background: var(--pink-light);
  645. }
  646. /* product details */
  647. #product-details .details {
  648. box-shadow: var(--shadow-black);
  649. height: 100%;
  650. }
  651. #product-details .details .count-container {
  652. width: fit-content;
  653. font-size: 1em;
  654. }
  655. #product-details .details .count-container .color-btn-container {
  656. width: 10px !important;
  657. }
  658. #product-details .details .size-container label {
  659. font-size: .8em !important;
  660. padding: .5em .5em .2em;
  661. }
  662. #product-details .details .count-container .count-btn-icon {
  663. width: 10px;
  664. height: 10px;
  665. transition: all .15s ease-in-out;
  666. }
  667. #product-details .details .count-container .count-btn-icon:hover {
  668. transform: scale(1.4) !important;
  669. }
  670. #product-details .details .offer {
  671. flex: 1;
  672. }
  673. #product-details .details .offer .title {
  674. font-size: .9em;
  675. }
  676. #product-details .details .offer .details {
  677. font-size: .8em;
  678. }
  679. #product-details .details .voucher {
  680. flex: 1;
  681. width: 100%;
  682. }
  683. /* product details carousel */
  684. #product-details .product-carousel {
  685. box-shadow: var(--shadow-black);
  686. height: 100%;
  687. }
  688. #product-details .thumb-container .productThumb {
  689. max-height: 350px;
  690. overflow: hidden;
  691. }
  692. #product-details .thumb-container .productThumb .swiper-wrapper img {
  693. width: 120px !important;
  694. height: auto !important;
  695. }
  696. #product-details .main-carousel {
  697. overflow: hidden;
  698. }
  699. #product-details .main-carousel .productSlider {
  700. overflow: hidden !important;
  701. }
  702. #product-details .main-carousel .productSlider img {
  703. height: 100% !important;
  704. }
  705. @media screen and (max-width: 992px) {
  706. #product-details .thumb-container .productThumb {
  707. height: 50px;
  708. width: 400px;
  709. border-right: none !important;
  710. padding: 3em;
  711. }
  712. #product-details .thumb-container .productThumb .swiper-wrapper img {
  713. height: 80px;
  714. width: 80px !important;
  715. }
  716. }
  717. @media screen and (max-width: 576px) {
  718. #product-details .thumb-container .productThumb {
  719. width: 300px;
  720. }
  721. }
  722. /* product details tab section */
  723. #product-details-tab {
  724. line-height: 1.2 !important;
  725. }
  726. #product-details-tab .nav-tabs .active {
  727. color: var(--pink);
  728. border-bottom: 2px solid var(--pink) !important;
  729. }
  730. #product-details-tab .tab-content ul li {
  731. list-style: disc !important;
  732. }
  733. /* product details page end*/