style.css 27 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586
  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: 120px;
  369. width: 100%;
  370. display: none;
  371. z-index: 30;
  372. background: var(--white);
  373. padding: .25rem;
  374. }
  375. #header .search.active {
  376. display: block;
  377. }
  378. #header .search input {
  379. border-radius: 0 !important;
  380. }
  381. #header .main-nav {
  382. width: 300px;
  383. position: fixed;
  384. top: 0;
  385. bottom: 0;
  386. overflow-y: auto;
  387. display: none;
  388. z-index: 20;
  389. }
  390. #header .main-nav::-webkit-scrollbar {
  391. display: none;
  392. }
  393. #header .main-nav .megamenu-parrent {
  394. width: 100%;
  395. }
  396. #header .main-nav .megamenu-parrent .collapse-buton,
  397. #header .main-nav .megamenu-submenu .btn {
  398. width: 100%;
  399. border-radius: 0 !important;
  400. border-bottom: 1px solid var(--gray-opacity) !important;
  401. }
  402. #header .main-nav.active {
  403. display: block;
  404. }
  405. #header .main-nav .megamenu-parrent .menu-items {
  406. position: static;
  407. background: var(--black);
  408. color: var(--white);
  409. height: 100%;
  410. margin: 0;
  411. padding-top: 0;
  412. padding-bottom: 0;
  413. }
  414. #header .main-nav .megamenu-parrent .collapse-buton {
  415. margin-top: .5rem;
  416. }
  417. #header .main-nav .megamenu-submenu {
  418. color: var(--white);
  419. }
  420. #header .main-nav .megamenu-submenu .nav-items {
  421. width: 100%;
  422. }
  423. #header .main-nav .megamenu-submenu .submenu-items.active {
  424. display: block !important;
  425. }
  426. #header .main-nav .megamenu-submenu .btn {
  427. color: var(--white) !important;
  428. width: 100%;
  429. }
  430. #header .main-nav .megamenu-submenu .nav-items .items {
  431. width: 100% !important;
  432. }
  433. #header .main-nav .megamenu-submenu a {
  434. color: var(--white);
  435. border-bottom: 1px solid var(--gray-opacity) !important;
  436. padding: .25rem 1rem;
  437. margin-top: .50rem !important;
  438. }
  439. }
  440. /* header end*/
  441. /* foooter start */
  442. #footer {
  443. letter-spacing: 3px;
  444. line-height: 1.7;
  445. }
  446. #footer a {
  447. color: var(--white);
  448. font-weight: 300;
  449. }
  450. #footer .footer-comp-title {
  451. font-weight: 300 !important;
  452. white-space: nowrap;
  453. }
  454. #footer .footer-input {
  455. font-size: 1.2em;
  456. width: 100%;
  457. }
  458. #footer .social-icon {
  459. height: 20px;
  460. transition: all .15s ease-in-out;
  461. }
  462. #footer .social-icon:hover {
  463. transform: scale(1.2);
  464. }
  465. #footer .footer-border-bottom {
  466. border-bottom: 3px solid var(--white);
  467. }
  468. #footer .copyright {
  469. font-size: 1.3em;
  470. }
  471. @media screen and (max-width: 768px) {
  472. #footer {
  473. letter-spacing: .5px;
  474. line-height: 1.2;
  475. }
  476. #footer .h3 {
  477. font-size: 1.2em;
  478. }
  479. #footer a {
  480. font-size: .8em;
  481. }
  482. #footer .footer-border-bottom {
  483. border-bottom: 1.5px solid var(--white);
  484. }
  485. #footer .footer-input {
  486. font-size: 1em;
  487. width: 80%;
  488. }
  489. #footer .social-icon {
  490. height: 30px
  491. }
  492. #footer .copyright {
  493. font-size: 1em;
  494. }
  495. }
  496. /* foooter end */
  497. /* product list */
  498. .product-single {
  499. width: 20%;
  500. }
  501. .product-single .product {
  502. box-shadow: var(--shadow-product);
  503. height: 100%;
  504. display: flex;
  505. flex-direction: column;
  506. justify-content: space-between;
  507. }
  508. .product-single .product .image-container {
  509. width: 100%;
  510. position: relative;
  511. }
  512. .product-single .product .image-container img {
  513. max-width: 100%;
  514. }
  515. .product-single .product .brand-title,
  516. .product-single .product .title {
  517. font-size: 1em;
  518. }
  519. .product-single .product .brand-title:hover {
  520. color: var(--red-deep);
  521. }
  522. .product-single .product .title:hover {
  523. color: initial;
  524. }
  525. .product-single .product .rating-icon {
  526. height: .8em;
  527. width: .8em;
  528. }
  529. .product-single .product .rating-count {
  530. font-size: 1em;
  531. }
  532. .product-single .product .offer {
  533. font-size: 1.2em !important;
  534. }
  535. .product-single .checkout-btn {
  536. padding: .5em 1.3em !important;
  537. }
  538. .product-single .checkout-btn img{
  539. height: 1.6em;
  540. }
  541. .product-single .checkout-btn .add-cart-text {
  542. transform: translateY(2.4px);
  543. font-size: .9em;
  544. }
  545. @media screen and (max-width: 1200px) {
  546. .product-single {
  547. width: 25%;
  548. }
  549. .product-single .product .offer {
  550. font-size: 1.1em !important;
  551. }
  552. }
  553. @media screen and (max-width: 992px) {
  554. .product-single {
  555. width: 50%;
  556. }
  557. .product-single .product {
  558. border: .5px solid var(--gray-extralight);
  559. }
  560. .product-single .product .title {
  561. font-size: .9em;
  562. }
  563. .product-single .product .offer {
  564. font-size: 1em !important;
  565. }
  566. }
  567. @media screen and (max-width: 768px) {
  568. .product-single{
  569. width: 100%;
  570. }
  571. }
  572. /* Home page */
  573. .discover-more {
  574. font-size: 1.5em ;
  575. }
  576. /* hero */
  577. #hero .banner-carousel img {
  578. width: 100%;
  579. }
  580. /* shop tabs */
  581. #shop-tabs .tabs-btn {
  582. border: none;
  583. background: none;
  584. font-size: 1.5em;
  585. }
  586. #discover-more .title {
  587. font-size: 1.5em;
  588. }
  589. #discover-more .details {
  590. font-size: 1.2em;
  591. }
  592. #shop-tabs .active {
  593. border-bottom: solid;
  594. border-bottom-width: 30px;
  595. border-image:url(../images/home_page/border-image.png) 0 0 30 0 repeat ;
  596. }
  597. /* whats-happening */
  598. #whats-happening .discover-more {
  599. font-size: 1em !important;
  600. }
  601. /* heir shine */
  602. /* #heir-shine .discover-more {
  603. font-size: 1.4em !important;
  604. } */
  605. /* trending stories */
  606. #trending-stories .date {
  607. font-size: .9em !important;
  608. }
  609. #trending-stories .blog-link a:hover {
  610. color: var(--gray);
  611. }
  612. #trending-stories .category-link a:hover,
  613. #trending-stories .read-more a:hover {
  614. color: var(--red-deep);
  615. }
  616. /* all link */
  617. #all-link a {
  618. color: var(--gray);
  619. }
  620. #all-link li {
  621. text-align: center;
  622. }
  623. @media screen and (max-width: 992px) {
  624. #shop-tabs .tabs-btn {
  625. font-size: 1.3em;
  626. }
  627. .discover-more {
  628. font-size: 1.2em !important;
  629. }
  630. #discover-more .title {
  631. font-size: 1.2em;
  632. }
  633. #discover-more .details {
  634. font-size: 1em;
  635. }
  636. .view-more {
  637. position: absolute !important;
  638. bottom: 0;
  639. }
  640. }
  641. @media screen and (max-width: 768px) {
  642. .discover-more {
  643. font-size: 1em !important;
  644. }
  645. #discover-more .title {
  646. font-size: 1em;
  647. }
  648. #discover-more .details {
  649. font-size: .9em;
  650. }
  651. }
  652. /* Home page end*/
  653. /* All Product Page */
  654. #all-product-banner {
  655. height: 100px !important;
  656. }
  657. #all-product-nav ul {
  658. color: var(--black);
  659. font-weight: 300;
  660. font-size: 1.2em;
  661. }
  662. #all-product-nav a {
  663. color: var(--black);
  664. font-weight: 300;
  665. font-size: 1em;
  666. white-space: nowrap;
  667. text-align: center;
  668. }
  669. #all-product-nav a:hover {
  670. color: var(--pink);
  671. }
  672. #all-product-nav .active {
  673. color: var(--pink);
  674. }
  675. #all-products .short-filter {
  676. margin-left: 290px;
  677. }
  678. #all-products .short-filter .short-select {
  679. max-width: 140px;
  680. }
  681. #all-products .filter {
  682. min-width: 300px !important;
  683. }
  684. #all-products .filter .filter-close-btn img {
  685. height: 18px;
  686. width: 18px;
  687. }
  688. #all-products .form-check-input:checked {
  689. background-color: var(--pink);
  690. border-color: var(--pink);
  691. }
  692. #all-products .products .product-single{
  693. width: 25%;
  694. }
  695. #all-products .filter-product-price .form-range::-webkit-slider-thumb {
  696. background: var(--pink);
  697. }
  698. #checkout .checkout-container {
  699. bottom: 0;
  700. right: 0;
  701. width: 480px;
  702. height: 90vh;
  703. box-shadow: var(--shadow-black);
  704. border-radius: 5px 0 0 0;
  705. display: none;
  706. z-index: 100;
  707. overflow-y: auto;
  708. }
  709. #checkout .checkout-container::-webkit-scrollbar {
  710. display: none;
  711. }
  712. #checkout .checkout-container .cross-btn {
  713. transform: translateY(-15px);
  714. }
  715. #checkout .checkout-container .cross-btn img {
  716. height: 15px;
  717. width: 15px;
  718. }
  719. #checkout .checkout-container .proceed-button-container {
  720. box-shadow: var(--shadow-product);
  721. width: 480px;
  722. }
  723. #checkout .checkout-container .cart-product-container .cart-items .item {
  724. box-shadow: var(--shadow-black);
  725. }
  726. #checkout .checkout-container .cart-product-container .cart-items .img-container {
  727. height: 100px;
  728. }
  729. #checkout .checkout-container .cart-product-container .cart-items .delete-btn {
  730. top: 10px;
  731. right: 10px;
  732. }
  733. #checkout .checkout-container .cart-product-container .cart-items .delete-btn:hover {
  734. transform: scale(1.1);
  735. }
  736. #checkout .checkout-container .cart-product-container .cart-items .delete-btn img {
  737. height: 25px;
  738. width: 25px;
  739. }
  740. #checkout .checkout-container .cart-product-container .cart-items .quantity-container .title {
  741. font-size: .8em;
  742. }
  743. #checkout-btn-desktop {
  744. bottom: 250px;
  745. right: 0;
  746. border-radius: 10px 0 0 10px;
  747. box-shadow: var(--shadow-product);
  748. z-index: 10;
  749. }
  750. #checkout-btn-desktop .checkout-icon {
  751. width: 30px;
  752. height: 30px;
  753. }
  754. #checkout-btn-desktop .count {
  755. font-size: .9em !important;
  756. }
  757. #checkout-btn-desktop .price {
  758. font-size: 1em !important;
  759. color: var(--red-deep) !important;
  760. }
  761. #checkout-btn-mobile .checkout-mobile {
  762. width: 100vw;
  763. z-index: 10;
  764. }
  765. #checkout-btn-mobile .checkout-mobile .cart-details {
  766. background: url(../images/icon/Cart-icon.svg) center center/cover no-repeat ;
  767. height: 60px !important;
  768. width: 60px !important;
  769. }
  770. #checkout-btn-mobile .badge {
  771. transform: translate(30px, -5px);
  772. padding: .4em;
  773. }
  774. #checkout-btn-mobile .total {
  775. font-size: .6em;
  776. font-weight: 600;
  777. letter-spacing: -.5px;
  778. bottom: 6px;
  779. right: 50%;
  780. transform: translateX(50%);
  781. white-space: nowrap;
  782. }
  783. @media screen and (max-width: 1200px) {
  784. #all-products .products .product-single{
  785. width: 33.33%;
  786. }
  787. #all-products .short-filter {
  788. margin-left: 240px;
  789. }
  790. #all-products .filter {
  791. min-width: 250px !important;
  792. }
  793. }
  794. @media screen and (max-width: 992px) {
  795. #all-products {
  796. overflow: hidden;
  797. }
  798. #all-products .short-filter {
  799. margin-left: 0;
  800. }
  801. #all-products .filter {
  802. position: absolute;
  803. top: 0;
  804. right: 0;
  805. min-width: 380px !important;
  806. overflow: hidden;
  807. transform: translateX(400px);
  808. transition: all .35s ease-in-out;
  809. padding: 1em 1.5em 2em !important;
  810. border: none !important;
  811. box-shadow: var(--shadow-black) !important;
  812. overflow-y: auto;
  813. z-index: 110;
  814. }
  815. #all-products .filter::-webkit-scrollbar {
  816. display: none;
  817. }
  818. #all-products .active {
  819. transform: translateX(0);
  820. }
  821. #all-products .products .product-single{
  822. width: 50%;
  823. }
  824. #checkout .checkout-container {
  825. top: 0;
  826. bottom: 0;
  827. left: 0;
  828. width: 100vw;
  829. height: 100%;
  830. box-shadow: var(--shadow-black);
  831. z-index: 100;
  832. }
  833. #checkout .checkout-container .proceed-button-container {
  834. width: 100vw;
  835. }
  836. }
  837. @media screen and (max-width: 768px) {
  838. #all-products .products .product-single{
  839. width: 50%;
  840. }
  841. #all-products .filter {
  842. min-width: 300px !important;
  843. }
  844. }
  845. @media screen and (max-width: 768px) {
  846. #all-products .products .product-single{
  847. width: 100%;
  848. }
  849. }
  850. /* All Product Page End */
  851. /* product details page */
  852. /* top add */
  853. #top-add .add-container {
  854. height: 100px;
  855. }
  856. .add {
  857. background: var(--pink-light);
  858. }
  859. /* product details */
  860. #product-details .details {
  861. box-shadow: var(--shadow-black);
  862. height: 100%;
  863. }
  864. #product-details .details .count-container {
  865. width: fit-content;
  866. font-size: 1em;
  867. }
  868. #product-details .details .count-container .color-btn-container {
  869. width: 10px !important;
  870. }
  871. #product-details .details .size-container label {
  872. font-size: .8em !important;
  873. padding: .5em .5em .2em;
  874. }
  875. #product-details .details .count-container .count-btn-icon {
  876. width: 10px;
  877. height: 10px;
  878. transition: all .15s ease-in-out;
  879. }
  880. #product-details .details .count-container .count-btn-icon:hover {
  881. transform: scale(1.4) !important;
  882. }
  883. #product-details .details .offer {
  884. flex: 1;
  885. }
  886. #product-details .details .offer .title {
  887. font-size: .9em;
  888. }
  889. #product-details .details .offer .details {
  890. font-size: .8em;
  891. }
  892. #product-details .details .voucher {
  893. flex: 1;
  894. width: 100%;
  895. }
  896. /* product details carousel */
  897. #product-details .product-carousel {
  898. box-shadow: var(--shadow-black);
  899. height: 100%;
  900. }
  901. #product-details .thumb-container .productThumb {
  902. max-height: 350px;
  903. overflow: hidden;
  904. }
  905. #product-details .thumb-container .productThumb .swiper-wrapper img {
  906. width: 120px !important;
  907. height: auto !important;
  908. }
  909. #product-details .main-carousel {
  910. overflow: hidden;
  911. }
  912. #product-details .main-carousel .productSlider {
  913. overflow: hidden !important;
  914. }
  915. #product-details .main-carousel .productSlider img {
  916. height: 100% !important;
  917. }
  918. @media screen and (max-width: 992px) {
  919. #product-details .thumb-container .productThumb {
  920. height: 50px;
  921. width: 400px;
  922. border-right: none !important;
  923. padding: 3em;
  924. }
  925. #product-details .thumb-container .productThumb .swiper-wrapper img {
  926. height: 80px;
  927. width: 80px !important;
  928. }
  929. }
  930. @media screen and (max-width: 576px) {
  931. #product-details .thumb-container .productThumb {
  932. width: 300px;
  933. }
  934. }
  935. /* product details tab section */
  936. #product-details-tab {
  937. line-height: 1.2 !important;
  938. }
  939. #product-details-tab .nav-tabs .active {
  940. color: var(--pink);
  941. border-bottom: 2px solid var(--pink) !important;
  942. }
  943. #product-details-tab .tab-content ul li {
  944. list-style: disc !important;
  945. }
  946. /* product details page end*/
  947. /* checkout page */
  948. #checkout-page .checkout-container,
  949. #checkout-page .order-summery {
  950. box-shadow: var(--shadow-black);
  951. }
  952. #checkout-page .summery-products .count-container {
  953. width: fit-content;
  954. }
  955. #checkout-page .summery-products .count-container .count {
  956. transform: translateY(8px);
  957. }
  958. #checkout-page .summery-products .count-container .count-btn {
  959. width: 10px;
  960. height: 10px;
  961. transition: all .15s ease-in-out;
  962. }
  963. #checkout-page .summery-products .count-container .count-btn:hover {
  964. transform: scale(1.4);
  965. }
  966. #checkout-page .summery-products .clear-btn {
  967. transition: all .15s ease-in-out;
  968. }
  969. #checkout-page .summery-products .clear-btn:hover {
  970. transform: scale(1.2);
  971. }
  972. #checkout-page .summery-products .clear-btn img {
  973. height: 15px;
  974. width: 15px;
  975. }
  976. #checkout-page .cupon button {
  977. outline: none;
  978. border: none;
  979. }
  980. #checkout-page .cupon button:focus {
  981. outline: none;
  982. border: none;
  983. }
  984. #checkout-page .cupon input:focus {
  985. outline: none;
  986. }
  987. /* checkout form */
  988. #checkoutForm .form-header {
  989. gap: 5px;
  990. text-align: center;
  991. font-size: 1em;
  992. }
  993. #checkoutForm .form-header .stepIndicator {
  994. position: relative;
  995. flex: 1;
  996. padding-top: 55px;
  997. font-size: 1.3em;
  998. color: var(--gray);
  999. }
  1000. #checkoutForm .form-header .stepIndicator::before {
  1001. content: "";
  1002. position: absolute;
  1003. left: 50%;
  1004. top: 0;
  1005. transform: translateX(-50%);
  1006. z-index: 9;
  1007. width: 50px;
  1008. height: 50px;
  1009. background-color: var(--pink-light);
  1010. border-radius: 50%;
  1011. }
  1012. #checkoutForm .form-header .stepIndicator.active::before {
  1013. background-color: var(--pink);
  1014. /* border: 3px solid #d5f9f6; */
  1015. }
  1016. #checkoutForm .form-header .stepIndicator.finish::before {
  1017. background-color: var(--pink);
  1018. /* border: 3px solid #b7e1dd; */
  1019. }
  1020. #checkoutForm .form-header .stepIndicator::after {
  1021. content: "";
  1022. position: absolute;
  1023. left: 50%;
  1024. top: 24px;
  1025. width: 100%;
  1026. height: 3px;
  1027. background-color: var(--gray-light);
  1028. }
  1029. #checkoutForm .form-header .stepIndicator.active::after {
  1030. background-color: var(--gray-light);
  1031. }
  1032. #checkoutForm .form-header .stepIndicator.finish::after {
  1033. background-color: var(--pink);
  1034. }
  1035. #checkoutForm .form-header .stepIndicator:last-child:after {
  1036. display: none;
  1037. }
  1038. #checkoutForm #address {
  1039. max-width: 300px !important;
  1040. /* border: 1px solid #e3e3e3 ; */
  1041. background-color: var(--gray-extralight);
  1042. }
  1043. #checkoutForm select {
  1044. padding: 1em 1.4em !important;
  1045. width: 100%;
  1046. font-size: 1em !important;
  1047. border: 1px solid #e3e3e3 !important;
  1048. }
  1049. #checkoutForm select option {
  1050. font-size: 1em;
  1051. }
  1052. #checkoutForm input {
  1053. padding: 1em 1.2em;
  1054. width: 100%;
  1055. font-size: 1em;
  1056. border: 1px solid #e3e3e3;
  1057. border-radius: 0;
  1058. }
  1059. #checkoutForm textarea {
  1060. padding: 1em 1.2em;
  1061. width: 100%;
  1062. font-size: 1em;
  1063. border: 1px solid #e3e3e3;
  1064. border-radius: 0;
  1065. }
  1066. #checkoutForm select,
  1067. #checkoutForm textarea,
  1068. #checkoutForm input:focus {
  1069. /* border: 1px solid var(--pink); */
  1070. outline: 0;
  1071. }
  1072. #checkoutForm input.invalid {
  1073. border: 1px solid #ffaba5;
  1074. }
  1075. #checkoutForm select.invalid {
  1076. border: 1px solid #ffaba5 !important;
  1077. }
  1078. #checkoutForm textarea.invalid {
  1079. border: 1px solid #ffaba5 !important;
  1080. }
  1081. #checkoutForm .step {
  1082. display: none;
  1083. }
  1084. #checkoutForm .form-footer{
  1085. overflow:auto;
  1086. gap: 20px;
  1087. }
  1088. #checkoutForm .form-footer button{
  1089. background-color: var(--green);
  1090. border: 1px solid var(--green) !important;
  1091. color: #ffffff;
  1092. border: none;
  1093. padding: 13px 30px;
  1094. font-size: 1em;
  1095. cursor: pointer;
  1096. border-radius: 5px;
  1097. flex: 1;
  1098. margin-top: 5px;
  1099. width: fit-content;
  1100. }
  1101. #checkoutForm .form-footer button:hover {
  1102. opacity: 0.8;
  1103. }
  1104. #checkoutForm .form-footer #prevBtn {
  1105. background-color: #fff;
  1106. color: var(--green);
  1107. }
  1108. #checkoutForm .delivery-method {
  1109. box-shadow: var(--shadow-black);
  1110. }
  1111. #checkoutForm .delivery-method .selected {
  1112. position: absolute;
  1113. top: 10px !important;
  1114. right: 10px !important;
  1115. display: none;
  1116. }
  1117. #checkoutForm .delivery-method .selected img {
  1118. height: 25px;
  1119. width: 25px;
  1120. }
  1121. #checkoutForm .delivery-method input[type=radio]:checked ~ .selected {
  1122. display: block;
  1123. }
  1124. #checkoutForm .delivery-method .icon img {
  1125. height: 75px;
  1126. }
  1127. #checkoutForm .delivery-method input {
  1128. display: none !important;
  1129. }
  1130. #checkoutForm .payment-type {
  1131. box-shadow: var(--shadow-black);
  1132. }
  1133. #checkoutForm .payment-type label {
  1134. min-width: 280px;
  1135. }
  1136. #checkoutForm .payment-type .selected {
  1137. position: absolute;
  1138. top: 12px !important;
  1139. right: 5px !important;
  1140. display: none;
  1141. }
  1142. #checkoutForm .payment-type .selected img {
  1143. height: 20px;
  1144. width: 20px;
  1145. }
  1146. #checkoutForm .payment-type input[type=radio]:checked ~ .selected {
  1147. display: block;
  1148. }
  1149. #checkoutForm .payment-type input {
  1150. display: none !important;
  1151. }
  1152. #checkoutForm .payment-type .icon img {
  1153. height: 75px;
  1154. }