style.css 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587
  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-deep-opacity: #b21f24c7;
  14. --red-light-extra: #FFEBEB;
  15. --blue-light: #EBF4FF;
  16. --green: #038310;
  17. --green-light: #E0FFF0;
  18. --green-light-extra: #F0FFE0;
  19. --gray: #626262;
  20. --gray-opacity: #6262628c;
  21. --gray-light: #999999;
  22. --gray-extralight: #C6C6C6;
  23. --black: #000000;
  24. --black-light: #2B2B2D;
  25. --black-extralight: #D2D2D2;
  26. --white: #FFFFFF;
  27. --white-light: #EBEBEB;
  28. --shadow-black : 0px 4px 40px rgba(118, 118, 118, 0.15);
  29. --sdadow-black-sm: 0px 0px 40px rgba(0, 0, 0, 0.05);
  30. --shadow-product: 0px 0px 15px rgba(0, 0, 0, 0.2);
  31. --gardient-red: linear-gradient(140.22deg, #EC138D 9.65%, #B21F25 93.94%);
  32. }
  33. * {
  34. text-decoration: none;
  35. list-style: none;
  36. }
  37. body {
  38. font-family: 'Josefin Sans', sans-serif !important;
  39. line-height: 1.4 !important;
  40. }
  41. /* text size */
  42. h1 {
  43. font-size: 2em !important;
  44. line-height: 1em !important;
  45. }
  46. h2 {
  47. font-size: 1.75em !important;
  48. }
  49. h3 {
  50. font-size: 1.5em !important;
  51. }
  52. h4 {
  53. font-size: 1.25em !important;
  54. }
  55. h5 {
  56. font-size: 1em !important;
  57. }
  58. h6 {
  59. font-size: 0.75em !important;
  60. }
  61. p {
  62. font-size: 1.2em !important;
  63. margin-bottom: 0 !important;
  64. }
  65. dl, ol, ul {
  66. margin-bottom: 0;
  67. padding-left: 0;
  68. }
  69. a {
  70. text-decoration: none;
  71. }
  72. /* background color */
  73. .bg-black {
  74. background-color: var(--black) !important;
  75. }
  76. .bg-gray {
  77. background-color: var(--gray) !important;
  78. }
  79. .bg-gray-light {
  80. background-color: var(--gray-light) !important;
  81. }
  82. .bg-gray-extralight {
  83. background-color: var(--gray-extralight) !important;
  84. }
  85. .bg-red-deep {
  86. background-color: var(--red-deep) !important;
  87. }
  88. .bg-pink {
  89. background-color: var(--pink) !important;
  90. }
  91. .bg-pink-light {
  92. background-color: var(--pink-light) !important;
  93. }
  94. .bg-pink-extralight {
  95. background-color: var(--pink-extralight) !important;
  96. }
  97. .bg-green {
  98. background-color: var(--green) !important;
  99. }
  100. .bg-white {
  101. background-color: var(--white) !important;
  102. }
  103. .bg-violet {
  104. background-color: var(--violet) !important;
  105. }
  106. .bg-orange-vivid-light {
  107. background-color: var(--orange-vivid-light) !important;
  108. }
  109. /* text color */
  110. .text-black {
  111. color: var(--black) !important;
  112. }
  113. .text-black-light {
  114. color: var(--black-light) !important;
  115. }
  116. .text-black-extralight {
  117. color: var(--black-extralight) !important;
  118. }
  119. .text-white {
  120. color: var(--white) !important;
  121. }
  122. .text-pink {
  123. color: var(--pink) !important;
  124. }
  125. .text-deep-red {
  126. color: var(--red-deep);
  127. }
  128. .text-gray {
  129. color: var(--gray) !important;
  130. }
  131. .text-light-gray {
  132. color: var(--gray-light) !important;
  133. }
  134. /* button */
  135. .btn-black {
  136. background: var(--black);
  137. color: var(--white);
  138. }
  139. .btn-black:hover {
  140. background: var(--black-light);
  141. color: var(--white);
  142. }
  143. .btn-pink {
  144. background-color: var(--pink);
  145. color: var(--white);
  146. }
  147. .btn-pink:hover {
  148. background-color: var(--pink-dark);
  149. color: var(--white);
  150. }
  151. .btn-orange-vivid {
  152. background-color: var(--orange-vivid);
  153. color: var(--white);
  154. }
  155. .btn-orange-vivid:hover {
  156. background-color: var(--orange-vivid-dark);
  157. color: var(--white);
  158. }
  159. .btn-black-outline {
  160. border: 1px solid var(--gray);
  161. color: var(--black);
  162. }
  163. .btn-black-outline:hover {
  164. border: 1px solid var(--gray);
  165. color: var(--gray);
  166. }
  167. /* border */
  168. .border-light-gray {
  169. border-color: var(--gray-light) !important;
  170. }
  171. .border-pink {
  172. border-color: var(--pink) !important;
  173. }
  174. .border-extralight-gray {
  175. border-color: var(--gray-extralight) !important;
  176. }
  177. .border-light-white {
  178. border-color: var(--white-light) !important;
  179. }
  180. .border-extralight-black {
  181. border-color: var(--white-light) !important;
  182. }
  183. /* utility */
  184. .border-image {
  185. background: url(../images/home_page/border-bottom.svg) no-repeat center center;
  186. height: 2em;
  187. max-width: 50em;
  188. }
  189. .view-all {
  190. font-size: 1.3em;
  191. padding: .8em 1.2em;
  192. }
  193. .section-title {
  194. font-size: 2.5em;
  195. }
  196. .section-subtitle {
  197. font-size: 2em;
  198. }
  199. @media screen and (max-width: 992px) {
  200. .border-image {
  201. max-width: 10em !important;
  202. }
  203. .view-all {
  204. font-size: 1.1em;
  205. padding: .75em 1.1em;
  206. }
  207. .section-title {
  208. font-size: 2em;
  209. }
  210. .section-subtitle {
  211. font-size: 1.5em;
  212. }
  213. }
  214. @media screen and (max-width: 576px) {
  215. .border-image {
  216. max-width: 8em !important;
  217. }
  218. .section-title {
  219. font-size: 1.5em;
  220. }
  221. .section-subtitle {
  222. font-size: 1em;
  223. }
  224. }
  225. /* utility end */
  226. /* swiper slider */
  227. .swiper {
  228. width: 100%;
  229. height: 100%;
  230. }
  231. .swiper-slide {
  232. text-align: center;
  233. font-size: 18px;
  234. background: #fff;
  235. display: flex;
  236. justify-content: center;
  237. align-items: center;
  238. }
  239. .swiper-slide img {
  240. display: block;
  241. width: 100%;
  242. height: 100%;
  243. object-fit: cover;
  244. }
  245. /* header */
  246. .header {
  247. transition: all 2s ease-in-out;
  248. }
  249. .header.sticky {
  250. position: sticky;
  251. top: 0;
  252. right: 0;
  253. left: 0;
  254. z-index: 20;
  255. transition: all 5s ease-in-out;
  256. box-shadow: var(--shadow-product);
  257. }
  258. .header button:focus {
  259. border: none !important;
  260. }
  261. .header button:active {
  262. border: none !important;
  263. }
  264. #header .burger-menu img {
  265. height: 25px;
  266. width: 25px;
  267. }
  268. #header .offer {
  269. font-size: 1em !important;
  270. }
  271. #header .offer p {
  272. font-size: .9em !important;
  273. }
  274. #header .brand-logo {
  275. height: 3em;
  276. }
  277. #header .search .search-icon {
  278. width: 1.5em;
  279. bottom: 10px;
  280. left: 1em;
  281. margin-top: 0;
  282. }
  283. #header .search input {
  284. padding-left: 2.5em;
  285. font-size: 1.2em;
  286. }
  287. #header .search-btn-mobile img,
  288. #header .user-btn-mobile img {
  289. height: 30px;
  290. }
  291. #header .main-nav {
  292. z-index: 40;
  293. }
  294. #header .main-nav button {
  295. white-space: nowrap;
  296. }
  297. #header .main-nav .burger-close-btn img {
  298. height: 20px;
  299. width: 20px;
  300. }
  301. #header .main-nav .megamenu-parrent .menu-items {
  302. position: absolute;
  303. top: 100%;
  304. left: 0;
  305. height: 50vh;
  306. width: 100%;
  307. background: var(--white);
  308. margin: 0 auto;
  309. color: var(--black);
  310. padding: 0;
  311. display: none;
  312. z-index: 25;
  313. box-shadow: var(--shadow-black);
  314. overflow-y: auto;
  315. }
  316. #header .main-nav .megamenu-parrent .collapse-buton img {
  317. height: 20px;
  318. }
  319. #header .main-nav .megamenu-parrent .menu-items.active {
  320. display: block;
  321. }
  322. #header .main-nav .megamenu-submenu {
  323. color: var(--black);
  324. display: flex;
  325. justify-content: space-between;
  326. padding: 1rem;
  327. }
  328. #header .main-nav .megamenu-submenu .btn {
  329. border-radius: 0 !important;
  330. width: 100% !important;
  331. color: var(--red-deep) !important;
  332. border-bottom: 1px dotted var(--red-deep-opacity) !important;
  333. font-size: .9em;
  334. font-weight: 600;
  335. }
  336. #header .main-nav .megamenu-submenu .btn img {
  337. height: 18px;
  338. width: 18px;
  339. }
  340. #header .main-nav .megamenu-submenu .nav-items {
  341. width: 70%;
  342. margin-top: .25rem;
  343. }
  344. #header .main-nav .megamenu-submenu .offer {
  345. width: 30%;
  346. }
  347. #header .main-nav .megamenu-submenu .nav-items .items {
  348. width: 32%;
  349. gap: 2%;
  350. }
  351. #header .main-nav .megamenu-submenu .submenu-items {
  352. margin-top: .25rem;
  353. }
  354. #header .menu-items .megamenu-submenu .nav-items .items .submenu-items ul,
  355. #header .menu-items .megamenu-submenu .nav-items .items .submenu-items li,
  356. #header .menu-items .megamenu-submenu .nav-items .items .submenu-items a {
  357. width: 100% !important;
  358. display: block !important;
  359. }
  360. #header .main-nav .megamenu-submenu a {
  361. color: var(--black);
  362. font-size: .8em;
  363. margin-top: .45rem;
  364. }
  365. @media screen and (max-width: 1199px) {
  366. #header .search {
  367. position: absolute;
  368. top: 115px;
  369. width: 100%;
  370. display: none;
  371. z-index: 30;
  372. background: var(--white-light);
  373. padding: 1rem;
  374. box-shadow: var(--shadow-black);
  375. }
  376. #header .search.active {
  377. display: block;
  378. }
  379. #header .search input {
  380. border-radius: 0 !important;
  381. }
  382. #header .main-nav {
  383. width: 300px;
  384. position: fixed;
  385. top: 0;
  386. bottom: 0;
  387. overflow-y: auto;
  388. display: none;
  389. z-index: 20;
  390. }
  391. #header .main-nav::-webkit-scrollbar {
  392. display: none;
  393. }
  394. #header .main-nav .megamenu-parrent {
  395. width: 100%;
  396. }
  397. #header .main-nav .megamenu-parrent .collapse-buton,
  398. #header .main-nav .megamenu-submenu .btn {
  399. width: 100%;
  400. border-radius: 0 !important;
  401. border-bottom: 1px solid var(--gray-opacity) !important;
  402. }
  403. #header .main-nav.active {
  404. display: block;
  405. }
  406. #header .main-nav .megamenu-parrent .menu-items {
  407. position: static;
  408. background: var(--black);
  409. color: var(--white);
  410. height: 100%;
  411. margin: 0;
  412. padding-top: 0;
  413. padding-bottom: 0;
  414. }
  415. #header .main-nav .megamenu-parrent .collapse-buton {
  416. margin-top: .5rem;
  417. }
  418. #header .main-nav .megamenu-submenu {
  419. color: var(--white);
  420. }
  421. #header .main-nav .megamenu-submenu .nav-items {
  422. width: 100%;
  423. }
  424. #header .main-nav .megamenu-submenu .submenu-items.active {
  425. display: block !important;
  426. }
  427. #header .main-nav .megamenu-submenu .btn {
  428. color: var(--white) !important;
  429. width: 100%;
  430. }
  431. #header .main-nav .megamenu-submenu .nav-items .items {
  432. width: 100% !important;
  433. }
  434. #header .main-nav .megamenu-submenu a {
  435. color: var(--white);
  436. border-bottom: 1px solid var(--gray-opacity) !important;
  437. padding: .25rem 1rem;
  438. margin-top: .50rem !important;
  439. }
  440. }
  441. /* header end*/
  442. /* foooter start */
  443. #footer {
  444. letter-spacing: 3px;
  445. line-height: 1.7;
  446. }
  447. #footer a {
  448. color: var(--white);
  449. font-weight: 300;
  450. }
  451. #footer .footer-comp-title {
  452. font-weight: 300 !important;
  453. white-space: nowrap;
  454. }
  455. #footer .footer-input {
  456. font-size: 1.2em;
  457. width: 100%;
  458. }
  459. #footer .social-icon {
  460. height: 20px;
  461. transition: all .15s ease-in-out;
  462. }
  463. #footer .social-icon:hover {
  464. transform: scale(1.2);
  465. }
  466. #footer .footer-border-bottom {
  467. border-bottom: 3px solid var(--white);
  468. }
  469. #footer .copyright {
  470. font-size: 1.3em;
  471. }
  472. @media screen and (max-width: 768px) {
  473. #footer {
  474. letter-spacing: .5px;
  475. line-height: 1.2;
  476. }
  477. #footer .h3 {
  478. font-size: 1.2em;
  479. }
  480. #footer a {
  481. font-size: .8em;
  482. }
  483. #footer .footer-border-bottom {
  484. border-bottom: 1.5px solid var(--white);
  485. }
  486. #footer .footer-input {
  487. font-size: 1em;
  488. width: 80%;
  489. }
  490. #footer .social-icon {
  491. height: 30px
  492. }
  493. #footer .copyright {
  494. font-size: 1em;
  495. }
  496. }
  497. /* foooter end */
  498. /* product list */
  499. .product-single {
  500. width: 20%;
  501. }
  502. .product-single .product {
  503. box-shadow: var(--shadow-product);
  504. height: 100%;
  505. display: flex;
  506. flex-direction: column;
  507. justify-content: space-between;
  508. }
  509. .product-single .product .image-container {
  510. width: 100%;
  511. position: relative;
  512. }
  513. .product-single .product .image-container img {
  514. max-width: 100%;
  515. }
  516. .product-single .product .brand-title,
  517. .product-single .product .title {
  518. font-size: 1em;
  519. }
  520. .product-single .product .brand-title:hover {
  521. color: var(--red-deep);
  522. }
  523. .product-single .product .title:hover {
  524. color: initial;
  525. }
  526. .product-single .product .rating-icon {
  527. height: .8em;
  528. width: .8em;
  529. }
  530. .product-single .product .rating-count {
  531. font-size: 1em;
  532. }
  533. .product-single .product .offer {
  534. font-size: 1.2em !important;
  535. }
  536. .product-single .checkout-btn {
  537. padding: .5em 1.3em !important;
  538. }
  539. .product-single .checkout-btn img{
  540. height: 1.6em;
  541. }
  542. .product-single .checkout-btn .add-cart-text {
  543. transform: translateY(2.4px);
  544. font-size: .9em;
  545. }
  546. @media screen and (max-width: 1200px) {
  547. .product-single {
  548. width: 25%;
  549. }
  550. .product-single .product .offer {
  551. font-size: 1.1em !important;
  552. }
  553. }
  554. @media screen and (max-width: 992px) {
  555. .product-single {
  556. width: 50%;
  557. }
  558. .product-single .product {
  559. border: .5px solid var(--gray-extralight);
  560. }
  561. .product-single .product .title {
  562. font-size: .9em;
  563. }
  564. .product-single .product .offer {
  565. font-size: 1em !important;
  566. }
  567. }
  568. @media screen and (max-width: 768px) {
  569. .product-single{
  570. width: 100%;
  571. }
  572. }
  573. /* Home page */
  574. .discover-more {
  575. font-size: 1.5em ;
  576. }
  577. /* hero */
  578. #hero .banner-carousel img {
  579. width: 100%;
  580. }
  581. /* shop tabs */
  582. #shop-tabs .tabs-btn {
  583. border: none;
  584. background: none;
  585. font-size: 1.5em;
  586. }
  587. #discover-more .title {
  588. font-size: 1.5em;
  589. }
  590. #discover-more .details {
  591. font-size: 1.2em;
  592. }
  593. #shop-tabs .active {
  594. border-bottom: solid;
  595. border-bottom-width: 30px;
  596. border-image:url(../images/home_page/border-image.png) 0 0 30 0 repeat ;
  597. }
  598. /* whats-happening */
  599. #whats-happening .discover-more {
  600. font-size: 1em !important;
  601. }
  602. /* heir shine */
  603. /* #heir-shine .discover-more {
  604. font-size: 1.4em !important;
  605. } */
  606. /* trending stories */
  607. #trending-stories .date {
  608. font-size: .9em !important;
  609. }
  610. #trending-stories .blog-link a:hover {
  611. color: var(--gray);
  612. }
  613. #trending-stories .category-link a:hover,
  614. #trending-stories .read-more a:hover {
  615. color: var(--red-deep);
  616. }
  617. /* all link */
  618. #all-link a {
  619. color: var(--gray);
  620. }
  621. #all-link li {
  622. text-align: center;
  623. }
  624. @media screen and (max-width: 992px) {
  625. #shop-tabs .tabs-btn {
  626. font-size: 1.3em;
  627. }
  628. .discover-more {
  629. font-size: 1.2em !important;
  630. }
  631. #discover-more .title {
  632. font-size: 1.2em;
  633. }
  634. #discover-more .details {
  635. font-size: 1em;
  636. }
  637. .view-more {
  638. position: absolute !important;
  639. bottom: 0;
  640. }
  641. }
  642. @media screen and (max-width: 768px) {
  643. .discover-more {
  644. font-size: 1em !important;
  645. }
  646. #discover-more .title {
  647. font-size: 1em;
  648. }
  649. #discover-more .details {
  650. font-size: .9em;
  651. }
  652. }
  653. /* Home page end*/
  654. /* All Product Page */
  655. #all-product-banner {
  656. height: 100px !important;
  657. }
  658. #all-product-nav ul {
  659. color: var(--black);
  660. font-weight: 300;
  661. font-size: 1.2em;
  662. }
  663. #all-product-nav a {
  664. color: var(--black);
  665. font-weight: 300;
  666. font-size: 1em;
  667. white-space: nowrap;
  668. text-align: center;
  669. }
  670. #all-product-nav a:hover {
  671. color: var(--pink);
  672. }
  673. #all-product-nav .active {
  674. color: var(--pink);
  675. }
  676. #all-products .short-filter {
  677. margin-left: 290px;
  678. }
  679. #all-products .short-filter .short-select {
  680. max-width: 140px;
  681. }
  682. #all-products .filter {
  683. min-width: 300px !important;
  684. }
  685. #all-products .filter .filter-close-btn img {
  686. height: 18px;
  687. width: 18px;
  688. }
  689. #all-products .form-check-input:checked {
  690. background-color: var(--pink);
  691. border-color: var(--pink);
  692. }
  693. #all-products .products .product-single{
  694. width: 25%;
  695. }
  696. #all-products .filter-product-price .form-range::-webkit-slider-thumb {
  697. background: var(--pink);
  698. }
  699. #checkout .checkout-container {
  700. bottom: 0;
  701. right: 0;
  702. width: 480px;
  703. height: 90vh;
  704. box-shadow: var(--shadow-black);
  705. border-radius: 5px 0 0 0;
  706. display: none;
  707. z-index: 100;
  708. overflow-y: auto;
  709. }
  710. #checkout .checkout-container::-webkit-scrollbar {
  711. display: none;
  712. }
  713. #checkout .checkout-container .cross-btn {
  714. transform: translateY(-15px);
  715. }
  716. #checkout .checkout-container .cross-btn img {
  717. height: 15px;
  718. width: 15px;
  719. }
  720. #checkout .checkout-container .proceed-button-container {
  721. box-shadow: var(--shadow-product);
  722. width: 480px;
  723. }
  724. #checkout .checkout-container .cart-product-container .cart-items .item {
  725. box-shadow: var(--shadow-black);
  726. }
  727. #checkout .checkout-container .cart-product-container .cart-items .img-container {
  728. height: 100px;
  729. }
  730. #checkout .checkout-container .cart-product-container .cart-items .delete-btn {
  731. top: 10px;
  732. right: 10px;
  733. }
  734. #checkout .checkout-container .cart-product-container .cart-items .delete-btn:hover {
  735. transform: scale(1.1);
  736. }
  737. #checkout .checkout-container .cart-product-container .cart-items .delete-btn img {
  738. height: 25px;
  739. width: 25px;
  740. }
  741. #checkout .checkout-container .cart-product-container .cart-items .quantity-container .title {
  742. font-size: .8em;
  743. }
  744. #checkout-btn-desktop {
  745. bottom: 250px;
  746. right: 0;
  747. border-radius: 10px 0 0 10px;
  748. box-shadow: var(--shadow-product);
  749. z-index: 10;
  750. }
  751. #checkout-btn-desktop .checkout-icon {
  752. width: 30px;
  753. height: 30px;
  754. }
  755. #checkout-btn-desktop .count {
  756. font-size: .9em !important;
  757. }
  758. #checkout-btn-desktop .price {
  759. font-size: 1em !important;
  760. color: var(--red-deep) !important;
  761. }
  762. #checkout-btn-mobile .checkout-mobile {
  763. width: 100vw;
  764. z-index: 10;
  765. }
  766. #checkout-btn-mobile .checkout-mobile .cart-details {
  767. background: url(../images/icon/Cart-icon.svg) center center/cover no-repeat ;
  768. height: 60px !important;
  769. width: 60px !important;
  770. }
  771. #checkout-btn-mobile .badge {
  772. transform: translate(30px, -5px);
  773. padding: .4em;
  774. }
  775. #checkout-btn-mobile .total {
  776. font-size: .6em;
  777. font-weight: 600;
  778. letter-spacing: -.5px;
  779. bottom: 6px;
  780. right: 50%;
  781. transform: translateX(50%);
  782. white-space: nowrap;
  783. }
  784. @media screen and (max-width: 1200px) {
  785. #all-products .products .product-single{
  786. width: 33.33%;
  787. }
  788. #all-products .short-filter {
  789. margin-left: 240px;
  790. }
  791. #all-products .filter {
  792. min-width: 250px !important;
  793. }
  794. }
  795. @media screen and (max-width: 992px) {
  796. #all-products {
  797. overflow: hidden;
  798. }
  799. #all-products .short-filter {
  800. margin-left: 0;
  801. }
  802. #all-products .filter {
  803. position: absolute;
  804. top: 0;
  805. right: 0;
  806. min-width: 380px !important;
  807. overflow: hidden;
  808. transform: translateX(400px);
  809. transition: all .35s ease-in-out;
  810. padding: 1em 1.5em 2em !important;
  811. border: none !important;
  812. box-shadow: var(--shadow-black) !important;
  813. overflow-y: auto;
  814. z-index: 110;
  815. }
  816. #all-products .filter::-webkit-scrollbar {
  817. display: none;
  818. }
  819. #all-products .active {
  820. transform: translateX(0);
  821. }
  822. #all-products .products .product-single{
  823. width: 50%;
  824. }
  825. #checkout .checkout-container {
  826. top: 0;
  827. bottom: 0;
  828. left: 0;
  829. width: 100vw;
  830. height: 100%;
  831. box-shadow: var(--shadow-black);
  832. z-index: 100;
  833. }
  834. #checkout .checkout-container .proceed-button-container {
  835. width: 100vw;
  836. }
  837. }
  838. @media screen and (max-width: 768px) {
  839. #all-products .products .product-single{
  840. width: 50%;
  841. }
  842. #all-products .filter {
  843. min-width: 300px !important;
  844. }
  845. }
  846. @media screen and (max-width: 768px) {
  847. #all-products .products .product-single{
  848. width: 100%;
  849. }
  850. }
  851. /* All Product Page End */
  852. /* product details page */
  853. /* top add */
  854. #top-add .add-container {
  855. height: 100px;
  856. }
  857. .add {
  858. background: var(--pink-light);
  859. }
  860. /* product details */
  861. #product-details .details {
  862. box-shadow: var(--shadow-black);
  863. height: 100%;
  864. }
  865. #product-details .details .count-container {
  866. width: fit-content;
  867. font-size: 1em;
  868. }
  869. #product-details .details .count-container .color-btn-container {
  870. width: 10px !important;
  871. }
  872. #product-details .details .size-container label {
  873. font-size: .8em !important;
  874. padding: .5em .5em .2em;
  875. }
  876. #product-details .details .count-container .count-btn-icon {
  877. width: 10px;
  878. height: 10px;
  879. transition: all .15s ease-in-out;
  880. }
  881. #product-details .details .count-container .count-btn-icon:hover {
  882. transform: scale(1.4) !important;
  883. }
  884. #product-details .details .offer {
  885. flex: 1;
  886. }
  887. #product-details .details .offer .title {
  888. font-size: .9em;
  889. }
  890. #product-details .details .offer .details {
  891. font-size: .8em;
  892. }
  893. #product-details .details .voucher {
  894. flex: 1;
  895. width: 100%;
  896. }
  897. /* product details carousel */
  898. #product-details .product-carousel {
  899. box-shadow: var(--shadow-black);
  900. height: 100%;
  901. }
  902. #product-details .thumb-container .productThumb {
  903. max-height: 350px;
  904. overflow: hidden;
  905. }
  906. #product-details .thumb-container .productThumb .swiper-wrapper img {
  907. width: 120px !important;
  908. height: auto !important;
  909. }
  910. #product-details .main-carousel {
  911. overflow: hidden;
  912. }
  913. #product-details .main-carousel .productSlider {
  914. overflow: hidden !important;
  915. }
  916. #product-details .main-carousel .productSlider img {
  917. height: 100% !important;
  918. }
  919. @media screen and (max-width: 992px) {
  920. #product-details .thumb-container .productThumb {
  921. height: 50px;
  922. width: 400px;
  923. border-right: none !important;
  924. padding: 3em;
  925. }
  926. #product-details .thumb-container .productThumb .swiper-wrapper img {
  927. height: 80px;
  928. width: 80px !important;
  929. }
  930. }
  931. @media screen and (max-width: 576px) {
  932. #product-details .thumb-container .productThumb {
  933. width: 300px;
  934. }
  935. }
  936. /* product details tab section */
  937. #product-details-tab {
  938. line-height: 1.2 !important;
  939. }
  940. #product-details-tab .nav-tabs .active {
  941. color: var(--pink);
  942. border-bottom: 2px solid var(--pink) !important;
  943. }
  944. #product-details-tab .tab-content ul li {
  945. list-style: disc !important;
  946. }
  947. /* product details page end*/
  948. /* checkout page */
  949. #checkout-page .checkout-container,
  950. #checkout-page .order-summery {
  951. box-shadow: var(--shadow-black);
  952. }
  953. #checkout-page .summery-products .count-container {
  954. width: fit-content;
  955. }
  956. #checkout-page .summery-products .count-container .count {
  957. transform: translateY(8px);
  958. }
  959. #checkout-page .summery-products .count-container .count-btn {
  960. width: 10px;
  961. height: 10px;
  962. transition: all .15s ease-in-out;
  963. }
  964. #checkout-page .summery-products .count-container .count-btn:hover {
  965. transform: scale(1.4);
  966. }
  967. #checkout-page .summery-products .clear-btn {
  968. transition: all .15s ease-in-out;
  969. }
  970. #checkout-page .summery-products .clear-btn:hover {
  971. transform: scale(1.2);
  972. }
  973. #checkout-page .summery-products .clear-btn img {
  974. height: 15px;
  975. width: 15px;
  976. }
  977. #checkout-page .cupon button {
  978. outline: none;
  979. border: none;
  980. }
  981. #checkout-page .cupon button:focus {
  982. outline: none;
  983. border: none;
  984. }
  985. #checkout-page .cupon input:focus {
  986. outline: none;
  987. }
  988. /* checkout form */
  989. #checkoutForm .form-header {
  990. gap: 5px;
  991. text-align: center;
  992. font-size: 1em;
  993. }
  994. #checkoutForm .form-header .stepIndicator {
  995. position: relative;
  996. flex: 1;
  997. padding-top: 55px;
  998. font-size: 1.3em;
  999. color: var(--gray);
  1000. }
  1001. #checkoutForm .form-header .stepIndicator::before {
  1002. content: "";
  1003. position: absolute;
  1004. left: 50%;
  1005. top: 0;
  1006. transform: translateX(-50%);
  1007. z-index: 9;
  1008. width: 50px;
  1009. height: 50px;
  1010. background-color: var(--pink-light);
  1011. border-radius: 50%;
  1012. }
  1013. #checkoutForm .form-header .stepIndicator.active::before {
  1014. background-color: var(--pink);
  1015. /* border: 3px solid #d5f9f6; */
  1016. }
  1017. #checkoutForm .form-header .stepIndicator.finish::before {
  1018. background-color: var(--pink);
  1019. /* border: 3px solid #b7e1dd; */
  1020. }
  1021. #checkoutForm .form-header .stepIndicator::after {
  1022. content: "";
  1023. position: absolute;
  1024. left: 50%;
  1025. top: 24px;
  1026. width: 100%;
  1027. height: 3px;
  1028. background-color: var(--gray-light);
  1029. }
  1030. #checkoutForm .form-header .stepIndicator.active::after {
  1031. background-color: var(--gray-light);
  1032. }
  1033. #checkoutForm .form-header .stepIndicator.finish::after {
  1034. background-color: var(--pink);
  1035. }
  1036. #checkoutForm .form-header .stepIndicator:last-child:after {
  1037. display: none;
  1038. }
  1039. #checkoutForm #address {
  1040. max-width: 300px !important;
  1041. /* border: 1px solid #e3e3e3 ; */
  1042. background-color: var(--gray-extralight);
  1043. }
  1044. #checkoutForm select {
  1045. padding: 1em 1.4em !important;
  1046. width: 100%;
  1047. font-size: 1em !important;
  1048. border: 1px solid #e3e3e3 !important;
  1049. }
  1050. #checkoutForm select option {
  1051. font-size: 1em;
  1052. }
  1053. #checkoutForm input {
  1054. padding: 1em 1.2em;
  1055. width: 100%;
  1056. font-size: 1em;
  1057. border: 1px solid #e3e3e3;
  1058. border-radius: 0;
  1059. }
  1060. #checkoutForm textarea {
  1061. padding: 1em 1.2em;
  1062. width: 100%;
  1063. font-size: 1em;
  1064. border: 1px solid #e3e3e3;
  1065. border-radius: 0;
  1066. }
  1067. #checkoutForm select,
  1068. #checkoutForm textarea,
  1069. #checkoutForm input:focus {
  1070. /* border: 1px solid var(--pink); */
  1071. outline: 0;
  1072. }
  1073. #checkoutForm input.invalid {
  1074. border: 1px solid #ffaba5;
  1075. }
  1076. #checkoutForm select.invalid {
  1077. border: 1px solid #ffaba5 !important;
  1078. }
  1079. #checkoutForm textarea.invalid {
  1080. border: 1px solid #ffaba5 !important;
  1081. }
  1082. #checkoutForm .step {
  1083. display: none;
  1084. }
  1085. #checkoutForm .form-footer{
  1086. overflow:auto;
  1087. gap: 20px;
  1088. }
  1089. #checkoutForm .form-footer button{
  1090. background-color: var(--green);
  1091. border: 1px solid var(--green) !important;
  1092. color: #ffffff;
  1093. border: none;
  1094. padding: 13px 30px;
  1095. font-size: 1em;
  1096. cursor: pointer;
  1097. border-radius: 5px;
  1098. flex: 1;
  1099. margin-top: 5px;
  1100. width: fit-content;
  1101. }
  1102. #checkoutForm .form-footer button:hover {
  1103. opacity: 0.8;
  1104. }
  1105. #checkoutForm .form-footer #prevBtn {
  1106. background-color: #fff;
  1107. color: var(--green);
  1108. }
  1109. #checkoutForm .delivery-method {
  1110. box-shadow: var(--shadow-black);
  1111. }
  1112. #checkoutForm .delivery-method .selected {
  1113. position: absolute;
  1114. top: 10px !important;
  1115. right: 10px !important;
  1116. display: none;
  1117. }
  1118. #checkoutForm .delivery-method .selected img {
  1119. height: 25px;
  1120. width: 25px;
  1121. }
  1122. #checkoutForm .delivery-method input[type=radio]:checked ~ .selected {
  1123. display: block;
  1124. }
  1125. #checkoutForm .delivery-method .icon img {
  1126. height: 75px;
  1127. }
  1128. #checkoutForm .delivery-method input {
  1129. display: none !important;
  1130. }
  1131. #checkoutForm .payment-type {
  1132. box-shadow: var(--shadow-black);
  1133. }
  1134. #checkoutForm .payment-type label {
  1135. min-width: 280px;
  1136. }
  1137. #checkoutForm .payment-type .selected {
  1138. position: absolute;
  1139. top: 12px !important;
  1140. right: 5px !important;
  1141. display: none;
  1142. }
  1143. #checkoutForm .payment-type .selected img {
  1144. height: 20px;
  1145. width: 20px;
  1146. }
  1147. #checkoutForm .payment-type input[type=radio]:checked ~ .selected {
  1148. display: block;
  1149. }
  1150. #checkoutForm .payment-type input {
  1151. display: none !important;
  1152. }
  1153. #checkoutForm .payment-type .icon img {
  1154. height: 75px;
  1155. }