/* Minification failed. Returning unminified contents.
(2,9): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(2,29): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(2,54): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(2,76): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(2,95): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(2,112): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(19,64): run-time error CSS1039: Token not allowed after unary operator: '-dark'
(21,94): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(21,110): run-time error CSS1039: Token not allowed after unary operator: '-secondary'
(27,94): run-time error CSS1039: Token not allowed after unary operator: '-light'
(27,115): run-time error CSS1039: Token not allowed after unary operator: '-dark'
(29,39): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(29,67): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(33,49): run-time error CSS1039: Token not allowed after unary operator: '-dark'
(37,59): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(39,86): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(39,102): run-time error CSS1039: Token not allowed after unary operator: '-secondary'
(71,163): run-time error CSS1039: Token not allowed after unary operator: '-bs-body-color-rgb'
(71,290): run-time error CSS1039: Token not allowed after unary operator: '-bs-border-width'
 */

:root { --primary: #d97706; --primary-dark: #b45309; --secondary: #f59e0b; --accent: #dc2626; --dark: #78350f; --light: #fef3c7; }


.product-card { background: white; border-radius: 20px; overflow: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); border: none; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08); height: 100%; }

.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); }

.product-image-wrapper { position: relative; overflow: hidden; height: 220px; }

.product-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }

.product-card:hover .product-image { transform: scale(1.1); }

.product-badge { position: absolute; top: 15px; right: 15px; background: rgba(220, 38, 38, 0.95); color: white; padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; backdrop-filter: blur(10px); }

.product-body { padding: 20px; }

.product-name { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }

.product-price { font-size: 28px; font-weight: 800; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 15px; }

.price-unit { font-size: 14px; color: #94a3b8; font-weight: 600; }

.quick-select { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 15px; }

.quick-btn { padding: 10px; border: 2px solid #fde68a; border-radius: 12px; background: var(--light); color: var(--dark); font-weight: 700; font-size: 14px; cursor: pointer; transition: all 0.3s ease; }

.quick-btn:hover { border-color: var(--primary); background: var(--primary); color: white; transform: scale(1.05); }

.quantity-control { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }

.quantity-label { font-weight: 700; color: var(--dark); font-size: 14px; min-width: 50px; }

.quantity-input { flex: 1; padding: 12px; border: 2px solid #fde68a; border-radius: 12px; text-align: center; font-weight: 700; font-size: 18px; transition: all 0.3s ease;max-width:80%; }

.quantity-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.1); }

.add-cart-btn { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; border: none; border-radius: 12px; font-weight: 700; font-size: 16px; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 10px; }

.add-cart-btn:hover { transform: scale(1.02); box-shadow: 0 10px 30px rgba(217, 119, 6, 0.4); }

.add-cart-btn:active { transform: scale(0.98); }

.section-title { color: white; font-size: 32px; font-weight: 800; margin: 30px 0 20px; text-align: center; text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2); }

@media (max-width: 768px) {
    .nav-btn { padding: 8px 12px; font-size: 14px; margin: 3px; }

    .product-name { font-size: 18px; }

    .product-price { font-size: 24px; }

    .quick-select { grid-template-columns: repeat(4, 1fr); gap: 6px; }

    .quick-btn { padding: 8px; font-size: 13px; }
}

.toast-container { position: fixed; top: 80px; right: 20px; z-index: 9999; }

.custom-toast { background: white; border-radius: 16px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); border: none; }

.form-signin { max-width: 330px; padding: 1rem; }

.form-signin .form-floating:focus-within { z-index: 2; }

.form-signin input[type="email"] { margin-bottom: -1px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; }

.form-signin input[type="password"] { margin-bottom: 10px; border-top-left-radius: 0; border-top-right-radius: 0; }

.form-floating > label { position: absolute; top: 0; left: 0; z-index: 2; max-width: 100%; height: 100%; padding: 1rem .75rem; overflow: hidden; color: rgba(var(--bs-body-color-rgb), .65); text-align: start; text-overflow: ellipsis; white-space: nowrap; pointer-events: none; border: var(--bs-border-width) solid transparent; transform-origin: 0 0; transition: opacity .1s ease-in-out, transform .1s ease-in-out; }

.form-floating > .form-control-plaintext ~ label, .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label { transform: scale(.85) translateY(-.5rem) translateX(.15rem); }
/*Alert*/
#alertscreen { display: none; background: #000; position: fixed !important; top: 0; left: 0 !important; width: 100%; height: 100% !important; z-index: 999999999 !important }
#alert { position: fixed; border: 1px solid #7367f0; top: 50%; margin: -100px auto auto; left: 0; right: 0; z-index: 999999999999; background: #fff; width: 400px }
#alert.success { border: 1px solid #7367f0 }
#alert.error { border: 1px solid #7367f0 }
#alert.warning { border: 1px solid #7367f0 }
#alert .alert-close { position: absolute; top: 15px; right: 10px; background: url(/Content/Shared/images/alert/close-alert.png) no-repeat; width: 13px; height: 13px; display: block }
#alert .alert-title { padding: 15px; font-size: 18px; letter-spacing: 1px; background: #7367f0; font-weight: bold; text-transform: uppercase; color: #fff }
#alert.success .alert-title { background: #7367f0 }
#alert.error .alert-title { background: #7367f0 }
#alert.warning .alert-title { background: #7367f0 }
#alert #alert-content { text-align: center; padding: 25px 20px; line-height: 21px; font-size: 13px }
#alert #alert-content .type { font-size: 14px; display: inline-block; padding: 6px 0; color: #000 !important }
#alert.success #alert-content .type { color: #000 !important }
#alert.error #alert-content .type { color: #000 !important }
#alert.warning #alert-content .type { color: #000 !important }
#alert-content .field { font-weight: bold; color: #7367f0 }
/*Alert*/


/*orders*/

#myorders table tr td { padding: 15px; position: relative; vertical-align: middle; font-size: 14px; }

/*#myorders table tbody tr td:after { background: #ececec; position: absolute; content: ''; height: 40px; width: 1px; margin-top: -20px; right: 0px; top: 50%; }*/

/*#myorders table tbody tr td { padding: 25px 15px 25px 15px;  }*/

#myorders table thead tr td { border-bottom: 1px solid #bfbfbf; font-size: 16px; }

#myorders table thead tr td:last-child:after, #myorders table tbody tr td:last-child:after { display: none; }

/*#myorders table thead tr td:after { content: ''; position: absolute; left: 0; right: 0; margin: auto auto; bottom: -3px; width: 80px; height: 5px; background: #fe9f00; }*/


#myorders table tbody tr.orderdetail thead tr td { padding: 0px 0px 8px 0px; font-size: 14px; }

#myorders table tbody tr.orderdetail { display: none; }

#myorders table tbody tr.orderdetail thead tr td:after { display: none; }

.orderdetail td { background: #f9f9f9; }



#myorders table tbody tr.orderdetail td:last-child:after { display: none; }

#myorders table tbody tr.orderdetail td tr td .head { text-align: right; }

#myorders table tbody tr.orderdetail td tr td .price { text-align: right; font-weight: 600; font-size: 17px; color: #000000; }

#myorders table tbody tr.orderdetail td tr td .vat-included { font-style: italic; font-size: 11px; }

.orderdetail table { margin-top: 0px; }

#myorders table tbody tr.orderdetail .basket_img { display: block; background: #fff; padding: 5px; border: 4px solid #ececec; }

#myorders table tbody tr.orderdetail .basket_img img { width: 100%; }

#myorders table .text-left { text-align: left !important; }

#myorders table tbody tr.orderdetail tbody tr td { padding-left: 5px !important; padding-right: 5px !important; }

#myorders table tbody tr.orderdetail tbody tr td .product_name { color: #000000; line-height: 20px; font-weight: 700; margin-top: 5px; }

#myorders table tbody tr.orderdetail tbody tr td .stock_code { margin: 5px 0px 5px 0px; font-size: 13px; }

#myorders table tbody tr.orderdetail tbody tr:last-child td { border: 0px !important; }

#myorders table tbody tr.orderdetail tbody tr td .product-price { color: #000000; font-weight: 600; }

/*end orders*/
