@font-face {
    font-family: Creattion;
    src: url('../font/Creattion.otf') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Vazirmatn;
    src: url('../font/Vazirmatn-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Vazirmatn;
    src: url('../font/Vazirmatn-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Vazirmatn;
    src: url('../font/Vazirmatn-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Vazirmatn;
    src: url('../font/Vazirmatn-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Vazirmatn;
    src: url('../font/Vazirmatn-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Vazirmatn;
    src: url('../font/Vazirmatn-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Vazirmatn;
    src: url('../font/Vazirmatn-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Vazirmatn;
    src: url('../font/Vazirmatn-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Vazirmatn;
    src: url('../font/Vazirmatn-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-color: #5f5f5f;
    --color-accent: rgb(0 134 229);
    --color-remove: rgb(159 28 68 )
}

* {
    transition: all 200ms ease-in ;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-size: 16px;
    background: #000000;
    color: var(--font-color);
    font-family: Vazirmatn;
    
}

header {
    width: 100%;
    text-align: center;
}

header img {
    max-height: 40px;
    float: left;
}

header > section {
    width: 100%;
    max-width: 1600px;
    height: 50px;
    margin: 10px auto 10px auto;
    padding: 5px 20px;
    box-sizing: border-box;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 1px 1px 10px 1px #00000020;
}

header div {
    display: flex;
    justify-content: center;
    align-items: center;
    float: right;
}

header div input {
    font-size: 16px;
    font-family: Vazirmatn;
    font-weight: 300;
    border-radius: 5px;
    border: 2px solid rgba(0, 0, 0, 0.3);
}

header .header-link {
    font-size: 20px;
    color: var(--font-color);
    text-decoration: none;
    font-weight: 900;
    margin: 0 2px;
    padding: 5px;
}

header a:hover {
    text-decoration: underline;
}

.products {
    max-width: 1200px;
    display: flex;
    margin: auto;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    margin-top: 0px;
}

.product-box section {
    max-width: 350px;
    margin: 15px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding-bottom: 6px;
    background: #ffffff;
}

.price {
    font-size: 16px;
    font-weight: 500;
}

td.price {
    font-weight: normal;
}

.product-box section > tr > td >img {
    box-sizing: border-box;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.product-box section > h3 {
    margin: 5px;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    height: 56px;
}

.add-to-cart-btn {
    text-decoration: none;
    padding: 5px;
    color: #fafafa;
    font-size: 12px;
    border: 2px solid var(--color-accent);
    border-radius: 9px;
    background: rgb(0, 55, 118);
    position: absolute;
    left: 20px;
    top: 20px;
    font-weight: 300;
    opacity: 0;
}

.add-to-cart-btn:hover {
    color: rgb(0, 55, 118);
    background: #ffffff;
}

.add-to-cart-btn:hover img {
    filter: brightness(0);
}

.add-to-cart-btn2 {
    text-decoration: none;
    padding: 5px;
    color: #fafafa;
    font-size: 16px;
    border-bottom-right-radius: 9px;
    border-bottom-left-radius: 9px;
    background: var(--color-accent);
    font-weight: 400;
    display: flex !important;
    justify-content: center;
}

.add-to-cart-btn2:hover {
    background: rgb(0, 61, 108);
}


.product-box {
    position: relative;
}

.product-box:hover .add-to-cart-btn {
    opacity: 1;
}

.product-box section > p {
    font-size: 12px;
    margin: 0 10px;
    font-weight: 300;
    margin-bottom: 7px;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
}

a.icon {
    display: inline-flex;
    align-items: center;
}

a.icon > img {
    width: 20px;
    margin-right: 5px;
}

.banner {
    display: block;
    height: 0;
    max-width: 800px;
    width: 100%;
    margin: auto;
    border-radius: 35px;
    transition: height 400ms ease-out !important;
}

#slideshow {
    margin-top: 30px;
    height: 300px;
}

.tag {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    border-radius: 10px;
    padding: 2px 5px;
    font-weight: 200;
}

.tag img {
    width: 20px;
    margin-left: 5px;
}

.tag.big {
    font-weight: 400;
    font-size: 16px;
    margin: 5px;
}

.tag.red {
    border: 1px solid #ff000061;
    background: rgba(255, 0, 0, 0.05);
}

.tag.blue {
    border: 1px solid rgba(0, 94, 255, 0.38);
    background: rgba(0, 136, 255, 0.05);
}

.tag.yellow {
    border: 1px solid rgba(255, 191, 0, 0.38);
    background: rgba(255, 221, 0, 0.05);
}

.tag.green {
    border: 1px solid rgba(17, 255, 0, 0.38);
    background: rgba(55, 255, 0, 0.05);
}

.tag.orange {
    border: 1px solid rgba(255, 119, 0, 0.38);
    background: rgba(255, 60, 0, 0.05);
}

.product-detail-box {
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    margin: 50px auto auto;
    background: #ffffff;
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.product-detail-box .product-image {
    max-width: 280px;
    margin-left: 10px;
    width: 100%;
}

.product-detail-box > section {
    max-width: 500px;
}

.product-detail-box h1 {
    margin: 5px;
}

.product-detail-box h6 {
    font-size: 13px;
    margin: 5px;
}

.product-detail-box .price {
    display: block;
    background: rgb(0 0 0 / 79%);
    font-size: 20px;
    font-weight: 500;
    color: #fafafa;
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
}

.product-detail-box .price-box {
    margin: 20px;
    text-align: center;
}

.cart .pay-btn {
    text-decoration: none;
    font-size: 18px;
    float: left;
    font-weight: 600;
    border-radius: 15px;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);;
    padding: 7px;
    margin: 5px;
}

.cart .pay-btn:hover {
    background: var(--color-accent);;
    color: #ffffff;
}

.cart .pay-btn:hover img {
   filter: brightness(100);
}


.red-btn {
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    border-radius: 15px;
    border: 2px solid #ff0000;
    color: #ff0000;
    padding: 6px;
    margin: 5px;
}

.red-btn:hover {
    background: #ff0000;
    color: #ffffff;
}

.product-description-box {
    max-width: 1100px;
    margin: auto;
}

.product-description-box p {
    text-align: justify;
    font-weight: 300;
    margin: 0 15px;
}

.similar-products-box {
    max-width: 1100px;
    margin: auto;
}

#header-menu-btn {
    float: right;
    display: none;
}

#header-menu-close-btn {
    text-align: right;
    width: 100%;
    margin: 10px;
    font-size: 20px;
    display: none;
}

.simple-box {
    background: rgb(255, 255, 255,0.9);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    max-width: 1000px;
    margin: 20px auto auto;
    padding: 10px;
    overflow: auto;
    box-shadow:  0 5px 15px rgba(14,61,11,.5);
    backdrop-filter: blur(7px);
}

@media (max-width: 725px) {
   .simple-box {

   } 
}

.simple-box p {
    text-align: justify;
    padding: 5px 10px;
}

.simple-box h1 {
    margin: 0 10px;
    text-align: right;
}

.cartitem-btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    padding: 2px;
    display: inline-block;
    margin: 5px;
    text-align: center;
    color: var(--font-color);
    text-decoration: none;
    background: rgba(0, 126, 210, 0.2);
}

table tr:nth-child(even) {
    
}

table tr:last-child td {
    border: none;
}

table.cart {
    margin: auto;
}

table.cart td {
    padding: 5px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

#register-box {
    display: none;
}

.simple-box input, .simple-box textarea, .simple-box select {
    color: var(--font-color);
    font-family: Vazirmatn;
    display: block;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    margin: 0 2px;
    padding : 0 4 0 4 ;
}

.xxxxxxx {
    margin: 5px auto;
    padding: 2px 10px;
}

.simple-box.big input, .simple-box.big textarea, .simple-box.big select {
    max-width: 400px;
    width: 100%;
}
.simple-box input[type='button'],
.simple-box input[type='submit'] {
    all: unset;
    border-radius: 10px;
    width: 100%;
    max-width: 191px;
    cursor: pointer;
    margin: auto;
    display: block;
    text-align: center;
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    font-weight: 900;
}
.simple-box input[type='button']:hover ,
.simple-box input[type='submit']:hover {
    background: var(--color-accent);
    color: #ffffff;
}

.removeBtn input[type='button']:hover {
    background: red;
    color: #ffffff;
}
.removeBtn input[type='button'] {
    border:1px solid rgba(0, 0, 0, 0.3)
}

#login-box, #register-box {
    text-align: center;
}

.eggy .title {
    font-weight: 800 !important;
    font-size: 19px !important;
}

.eggy .message {
    font-weight: 400 !important;
    font-size: 16px !important;
}

#mainShop{
    overflow: auto;
}

@media (max-width: 725px) {
    header > section > div {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        background: #ffffff;
        height: 0;
        overflow: hidden;
        z-index: 99;
    }

    header > section > div > * {
        display: block;
        margin-top: 5px;
    }

    #header-menu-btn {
        display: block;
    }

    #header-menu-close-btn {
        display: block;
    }
    
    #mainShop{
        overflow: auto;
    }
    
}


#pagination   {
    list-style: none;
    display: flex;
}

.frame{
    position : absolute;
    top : 100px;
    left : 100px;
    background : darkgray;
    border-radius: 10px;
    z-index : 1;
    box-shadow: 0 5px 15px rgba(0,0,0,.5);
}

.frameHeader{
    height: 35px;
    background: white;
    border-radius: 10px 10px  0px 0px;
    border: 3px solid darkgray;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
















.sidebar {
  position: fixed;
  top:0px;
  right:-180px;
  height: 100%;
  width: 180px;
  background: #11101d;
  /*padding: 15px;*/
  z-index: 99;
  transition: 0.25s linear;
}

.sidebar a {
  color: #fff;
  text-decoration: none;
}
.menu-content {
  position: relative;
  height: 100%;
  width: 100%;
  /*margin-top: 40px;*/
  overflow-y: scroll;
  overflow-x: hidden;
}
.menu-content::-webkit-scrollbar {
  display: none;
}

.submenu-active .menu-items {
  transform: translateX(-60%);
}
.menu-title {
  color: #fff;
  font-size: 14px;
  padding: 15px 20px;
}
.item a,
.submenu-item {
  padding: 8px;
  display: inline-block;
  width: 100%;
  border-radius: 12px;
}

.item a:hover,
.submenu-item:hover,
.submenu .menu-title:hover {
  background: rgba(255, 255, 255, 0.1);
}
.submenu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  cursor: pointer;
}
.submenu {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: calc(-100% - 26px);
  height: calc(100% + 100vh);
  background: #11101d;
  display: none;
}
.show-submenu ~ .submenu {
  display: block;
}
.submenu .menu-title {
  border-radius: 12px;
  cursor: pointer;
}
.submenu .menu-title i {
  margin-right: 10px;
}

.open  {
    transition: 0.25s linear;
  right: 0px;
  top: 0px;
  /*width: 0%;*/
}
















.fltsidebar-nav .fltnav-list {
  list-style: none;
  display: flex;
  gap: 4px;
  padding: 0 15px;
  flex-direction: column;
  transform: translateY(15px);
  transition: 0.4s ease;
} 


.fltsidebar-nav .fltnav-item .fltnav-link {
  color: #fff;
 
  display: flex;
  gap: 12px;
  white-space: nowrap;
  border-radius: 8px;
  padding: 5px 15px 5px 10px ;
  align-items: center;
  text-decoration: none;
  border: 0px solid red;
  transition: 0.4s ease;
}

.fltsidebar-nav .fltnav-item:is(:hover, .fltopen)>.fltnav-link:not(.fltdropdown-title) {
  color: #f70a80;
  background: #d99d2c;
}

.fltnav-subitem:is(:hover, .fltopen){
  color: #151A2D;
  background: #a19a9a;
  border-radius: 8px;
}

.fltsidebar-nav .fltdropdown-menu {
  height: 0;
  overflow-y: hidden;
  list-style: none;
  padding-left: 15px;
  transition: height 0.4s ease;
}









.button-72 {
  align-items: center;
  background-color: initial;
  background-image: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%);
  border-radius: 42px;
  border-width: 0;
  box-shadow: rgba(57, 31, 91, 0.24) 0 2px 2px, #fd01013d 0 8px 12px;
  color: #000000;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  justify-content: center;
  letter-spacing: .04em;
  line-height: 16px;
  margin: 0;
  padding: 8px 18px;
  text-align: center;
  text-decoration: none;
  text-shadow: rgba(255, 255, 255, 0.4) 0 0 4px,rgba(255, 255, 255, 0.2) 0 0 12px,rgba(57, 31, 91, 0.6) 1px 1px 4px,rgba(57, 31, 91, 0.32) 4px 4px 16px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
}

.button-72:hover {
  background-image: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 102%);
}

@media (min-width: 768px) {
  .button-72 {
    
  }
}












.ccb-rotate {
  width: 36px; height: 36px;
  border: none; border-radius: 50%;
  background: rgba(255,255,255,0.6);
  position: relative; cursor: pointer;
  transition: background 0.2s, transform 0.3s;
}
.ccb-rotate span {
  position: absolute; top: 50%; left: 50%;
  width: 16px; height: 2px;
  background: black; border-radius: 2px;
  transform-origin: center;
}
.ccb-rotate span:nth-child(1) { transform: translate(-50%,-50%) rotate(45deg); }
.ccb-rotate span:nth-child(2) { transform: translate(-50%,-50%) rotate(-45deg); }
.ccb-rotate:hover {
  background: rgba(255,108,138,0.18);
  transform: rotate(90deg) scale(1.08);
}
.ccb-rotate:hover span { background: #ff6c8a; }















 
/* From Uiverse.io by adamgiebl */ 
.cssbuttons-io-button {
  display: flex;
  align-items: center;
  font-family: inherit;
  cursor: pointer;
  font-weight: 500;
  font-size: 33px;
  padding: 1px 18px ;
  color: white;
  background: #ad5389;
  
  border: none;
   margin: auto;
  letter-spacing: 0.05em;
  border-radius: 20em;
}


.cssbuttons-io-button:hover {
  box-shadow: 0 0.5em 1.5em -0.5em #14a73e98;
}

.cssbuttons-io-button:active {
  box-shadow: 0 0.3em 1em -0.5em #14a73e98;
}







