@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  --theme-primary:#000000;
  --theme-primary-hover:#4f4f4f;
  --theme-primary-foreground:#ffffff;
  --theme-cta-accent-bg:#000000;
  --theme-cta-accent-fg:#ffffff;
  --theme-cta-accent-hover:#4f4f4f;
  --theme-bg:#f1f5f9;
  --theme-surface:#ffffff;
  --theme-surface-soft:#f8fafc;
  --theme-border:#e5e7eb;
  --theme-border-strong:#d1d5db;
  --theme-text:#111827;
  --theme-text-muted:#6b7280;
  --theme-text-muted-alt:#9ca3af;
  --theme-success:#059669;
  --theme-error:#dc2626;
  --theme-warning:#d97706;
  --theme-info:#2563eb;
  --theme-font-family:'Inter',ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --radius-sm:.375rem;
  --radius-md:.5rem;
  --radius-lg:.75rem;
  --radius-xl:1rem;
  --shadow-sm:0 1px 2px 0 rgb(0 0 0 / .05);
  --shadow-md:0 4px 6px -1px rgb(0 0 0 / .07),0 2px 4px -2px rgb(0 0 0 / .05);
  --shadow-lg:0 16px 35px -18px rgb(17 24 39 / .35);
  --focus-ring:0 0 0 4px rgb(0 0 0 / .08);
}

*,*:before,*:after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}

body{
  font-family:var(--theme-font-family);
  font-weight:400;
  color:var(--theme-text-muted);
  font-size:14px;
  line-height:1.55;
  width:100%;
  min-width:320px;
  background:var(--theme-bg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}

img{max-width:100%;height:auto}

a{
  color:var(--theme-primary);
  text-decoration:none;
  transition:color .2s ease,background-color .2s ease,border-color .2s ease,box-shadow .2s ease,opacity .2s ease,transform .2s ease;
}

a:hover,
a:focus{
  color:var(--theme-primary-hover);
  text-decoration:none;
  outline:none;
}

h1,h2,h3,h4,h5,h6{
  color:var(--theme-text);
  font-family:var(--theme-font-family);
  font-weight:800;
  line-height:1.2;
  letter-spacing:-.025em;
  margin-top:0;
}

h1{font-size:32px}
h2{font-size:26px}
h3{font-size:21px}
h4{font-size:16px}
h5{font-size:13px}
h6{font-size:12px}

.fa{font-size:14px}

legend{
  font-size:18px;
  font-weight:800;
  color:var(--theme-text);
  padding:7px 0;
  border-bottom:1px solid var(--theme-border);
}

label{
  font-size:13px;
  font-weight:600;
  color:var(--theme-text);
}

select.form-control,
textarea.form-control,
input[type="text"].form-control,
input[type="password"].form-control,
input[type="datetime"].form-control,
input[type="datetime-local"].form-control,
input[type="date"].form-control,
input[type="month"].form-control,
input[type="time"].form-control,
input[type="week"].form-control,
input[type="number"].form-control,
input[type="email"].form-control,
input[type="url"].form-control,
input[type="search"].form-control,
input[type="tel"].form-control,
input[type="color"].form-control{
  height:42px;
  color:var(--theme-text);
  background:var(--theme-surface);
  border:1px solid var(--theme-border);
  border-radius:var(--radius-md);
  font-size:14px;
  box-shadow:var(--shadow-sm);
  transition:border-color .2s ease,box-shadow .2s ease,background-color .2s ease;
}

textarea.form-control{
  height:auto;
  min-height:110px;
  resize:vertical;
}

.form-control:focus,
select.form-control:focus,
textarea.form-control:focus,
input.form-control:focus{
  border-color:var(--theme-primary);
  box-shadow:var(--focus-ring),var(--shadow-sm);
  outline:none;
}

.input-group input,
.input-group select,
.input-group .dropdown-menu,
.input-group .popover{
  font-size:14px;
}

.input-group .input-group-addon{
  font-size:13px;
  height:42px;
  color:var(--theme-text-muted);
  background:var(--theme-surface-soft);
  border-color:var(--theme-border);
  border-radius:var(--radius-md);
}

span.hidden-xs,
span.hidden-sm,
span.hidden-md,
span.hidden-lg{
  display:inline;
}

.nav-tabs{
  margin-bottom:18px;
  border-bottom:1px solid var(--theme-border);
}

.nav-tabs>li>a{
  color:var(--theme-text-muted);
  border:1px solid transparent;
  border-radius:var(--radius-md) var(--radius-md) 0 0;
  font-size:14px;
  font-weight:700;
}

.nav-tabs>li>a:hover{
  color:var(--theme-text);
  background:var(--theme-surface-soft);
  border-color:transparent;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus{
  color:var(--theme-text);
  background:var(--theme-surface);
  border-color:var(--theme-border) var(--theme-border) var(--theme-surface);
}

div.required .control-label:before{
  content:'* ';
  color:var(--theme-error);
  font-weight:800;
}

.dropdown-menu{
  background:var(--theme-surface);
  border:1px solid var(--theme-border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
  padding:8px;
  overflow:hidden;
}

.dropdown-menu li>a{
  color:var(--theme-text);
  font-size:13px;
  font-weight:600;
  border-radius:var(--radius-md);
  padding:8px 12px;
  background:transparent;
}

.dropdown-menu li>a:hover,
.dropdown-menu li>a:focus{
  text-decoration:none;
  color:var(--theme-primary-foreground);
  background:var(--theme-primary);
  background-image:none;
}

/* TOP */
#top{
  background:var(--theme-primary);
  border-bottom:none;
  padding:7px 0;
  margin:0 0 18px 0;
  min-height:38px;
  color:#fff;
}

#top .container{
  padding:0 20px;
}

#top #form-currency .currency-select,
#top #form-language .language-select{
  text-align:left;
  color:var(--theme-text);
}

#top #form-currency .currency-select:hover,
#top #form-language .language-select:hover{
  text-shadow:none;
  color:#fff;
  background:var(--theme-primary-hover);
  background-image:none;
}

#top .btn-link,
#top-links li,
#top-links a{
  color:rgba(255,255,255,.82);
  text-shadow:none;
  text-decoration:none;
  font-size:13px;
  font-weight:600;
}

#top .btn-link:hover,
#top-links a:hover{
  color:#fff;
}

#top-links .dropdown-menu a{
  text-shadow:none;
  color:var(--theme-text);
}

#top-links .dropdown-menu a:hover{
  color:#fff;
}

#top .btn-link strong{
  font-size:14px;
  line-height:14px;
  color:#fff;
}

#top-links{
  padding-top:3px;
}

#top-links a+a{
  margin-left:15px;
}

/* LOGO / HEADER */
header,
.common-home header{
  background:var(--theme-surface);
}

#logo{
  margin:0 0 12px 0;
}

#logo img{
  max-height:76px;
  width:auto;
}

/* SEARCH */
#search{
  margin-bottom:12px;
}

#search .input-lg{
  height:46px;
  line-height:22px;
  padding:0 14px;
  border:1px solid var(--theme-border);
  border-right:0;
  border-radius:var(--radius-lg) 0 0 var(--radius-lg);
  background:#fff;
  box-shadow:var(--shadow-sm);
}

#search .btn-lg{
  height:46px;
  font-size:15px;
  line-height:20px;
  padding:10px 26px;
  text-shadow:none;
  color:#fff;
  background:var(--theme-primary);
  background-image:none;
  border-color:var(--theme-primary);
  border-radius:0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow:var(--shadow-sm);
}

#search .btn-lg:hover,
#search .btn-lg:focus{
  color:#fff;
  background:var(--theme-primary-hover);
  border-color:var(--theme-primary-hover);
}

/* CART */
#cart{
  margin-bottom:12px;
}

#cart>.btn{
  min-height:46px;
  font-size:13px;
  line-height:18px;
  color:#fff;
  background:var(--theme-cta-accent-bg);
  background-image:none;
  border:1px solid var(--theme-cta-accent-bg);
  border-radius:var(--radius-lg);
  font-weight:800;
  box-shadow:var(--shadow-md);
  text-shadow:none;
}

#cart>.btn:hover,
#cart>.btn:focus{
  color:#fff;
  background:var(--theme-cta-accent-hover);
  border-color:var(--theme-cta-accent-hover);
  box-shadow:var(--shadow-lg);
}

#cart.open>.btn{
  background:#fff;
  background-image:none;
  border:1px solid var(--theme-border);
  color:var(--theme-text);
  box-shadow:var(--shadow-md);
  text-shadow:none;
}

#cart.open>.btn:hover{
  color:var(--theme-primary);
}

#cart .dropdown-menu{
  background:#fff;
  z-index:1001;
  min-width:100%;
  border:1px solid var(--theme-border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
  padding:12px;
}

#cart .dropdown-menu table{
  margin-bottom:10px;
}

#cart .dropdown-menu li>div{
  min-width:427px;
  padding:0 10px;
}

#cart .dropdown-menu li p{
  margin:20px 0;
  color:var(--theme-text-muted);
}

/* MENU */
#menu{
  background:var(--theme-surface);
  background-image:none;
  border:1px solid var(--theme-border);
  border-radius:var(--radius-lg);
  min-height:48px;
  box-shadow:var(--shadow-sm);
  margin-bottom:22px;
}

#menu .nav>li>a{
  color:var(--theme-text);
  text-shadow:none;
  padding:14px 15px;
  min-height:48px;
  background:transparent;
  font-size:14px;
  font-weight:800;
  border-radius:var(--radius-md);
}

#menu .nav>li>a:hover,
#menu .nav>li.open>a{
  color:#fff;
  background:var(--theme-primary);
}

#menu .dropdown-menu{
  padding:10px;
  background:#fff;
  border:1px solid var(--theme-border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
}

#menu .dropdown-inner{
  display:table;
}

#menu .dropdown-inner ul{
  display:table-cell;
}

#menu .dropdown-inner a{
  min-width:170px;
  display:block;
  padding:8px 12px;
  clear:both;
  line-height:20px;
  color:var(--theme-text);
  font-size:13px;
  font-weight:600;
  border-radius:var(--radius-md);
}

#menu .dropdown-inner li a:hover{
  color:#fff;
  background:var(--theme-primary);
}

#menu .see-all{
  display:block;
  margin-top:8px;
  border-top:1px solid var(--theme-border);
  padding:10px 12px;
  border-radius:var(--radius-md);
  font-size:13px;
  font-weight:800;
  color:var(--theme-text);
}

#menu .see-all:hover,
#menu .see-all:focus{
  text-decoration:none;
  color:#fff;
  background:var(--theme-primary);
  background-image:none;
}

#menu #category{
  float:left;
  padding-left:15px;
  font-size:16px;
  font-weight:800;
  line-height:48px;
  color:var(--theme-text);
  text-shadow:none;
}

#menu .btn-navbar{
  font-size:15px;
  font-stretch:expanded;
  color:#fff;
  padding:8px 16px;
  float:right;
  background:var(--theme-primary);
  background-image:none;
  border:1px solid var(--theme-primary);
  border-radius:var(--radius-md);
  margin:5px 8px 5px 0;
  box-shadow:none;
}

#menu .btn-navbar:hover,
#menu .btn-navbar:focus,
#menu .btn-navbar:active,
#menu .btn-navbar.disabled,
#menu .btn-navbar[disabled]{
  color:#fff;
  background:var(--theme-primary-hover);
  border-color:var(--theme-primary-hover);
}

/* CONTENT */
#content{
  min-height:600px;
}

.container-fluid,
.container{
  max-width:1280px;
}

.common-home #content{
  background:transparent;
}

/* FOOTER */
footer{
  margin-top:36px;
  padding-top:34px;
  background:#111827;
  border-top:none;
  color:#d1d5db;
}

footer hr{
  border-top:none;
  border-bottom:1px solid rgba(255,255,255,.12);
}

footer a{
  color:#d1d5db;
}

footer a:hover{
  color:#fff;
}

footer h5{
  font-family:var(--theme-font-family);
  font-size:14px;
  font-weight:800;
  color:#fff;
  letter-spacing:-.01em;
  margin-bottom:14px;
}

/* ALERT */
.alert{
  padding:12px 14px;
  border-radius:var(--radius-lg);
  border:1px solid transparent;
  box-shadow:var(--shadow-sm);
  font-size:14px;
}

.alert-success{
  color:#065f46;
  background:#ecfdf5;
  border-color:#a7f3d0;
}

.alert-danger,
.alert-error{
  color:#991b1b;
  background:#fef2f2;
  border-color:#fecaca;
}

.alert-warning{
  color:#92400e;
  background:#fffbeb;
  border-color:#fde68a;
}

.alert-info{
  color:#1e40af;
  background:#eff6ff;
  border-color:#bfdbfe;
}

/* BREADCRUMB */
.breadcrumb{
  margin:0 0 20px 0;
  padding:10px 14px;
  border:1px solid var(--theme-border);
  border-radius:var(--radius-lg);
  background:var(--theme-surface);
  box-shadow:var(--shadow-sm);
}

.breadcrumb i{
  font-size:15px;
}

.breadcrumb>li{
  text-shadow:none;
  padding:0 10px 0 0;
  position:relative;
  white-space:nowrap;
  color:var(--theme-text-muted);
  font-size:13px;
  font-weight:600;
}

.breadcrumb>li+li:before{
  content:'/';
  padding:0 10px 0 0;
  color:var(--theme-text-muted-alt);
}

.breadcrumb>li:after{
  display:none;
}

.breadcrumb>li>a{
  color:var(--theme-text-muted);
}

.breadcrumb>li>a:hover{
  color:var(--theme-text);
}

/* PAGINATION */
.pagination{
  margin:0;
}

.pagination>li>a,
.pagination>li>span{
  color:var(--theme-text);
  border:1px solid var(--theme-border);
  background:#fff;
  margin:0 3px;
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-sm);
  font-weight:700;
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus{
  color:#fff;
  background:var(--theme-primary);
  border-color:var(--theme-primary);
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover{
  color:#fff;
  background:var(--theme-primary);
  border-color:var(--theme-primary);
}

/* BUTTONS */
.buttons{
  margin:1em 0;
}

.btn{
  padding:9px 14px;
  font-size:13px;
  font-weight:800;
  border:1px solid var(--theme-border);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-sm);
  text-shadow:none!important;
  background-image:none!important;
  transition:background-color .2s ease,color .2s ease,border-color .2s ease,box-shadow .2s ease,transform .2s ease;
}

.btn:hover,
.btn:focus{
  outline:none;
  box-shadow:var(--shadow-md);
  transform:translateY(-1px);
}

.btn:active{
  transform:translateY(0);
  box-shadow:var(--shadow-sm);
}

.btn-xs{
  font-size:11px;
  padding:4px 7px;
  border-radius:var(--radius-sm);
}

.btn-sm{
  font-size:12px;
  padding:6px 10px;
}

.btn-lg{
  padding:12px 18px;
  font-size:15px;
  border-radius:var(--radius-lg);
}

.btn-group>.btn,
.btn-group>.dropdown-menu,
.btn-group>.popover{
  font-size:13px;
}

.btn-group>.btn-xs{font-size:11px}
.btn-group>.btn-sm{font-size:12px}
.btn-group>.btn-lg{font-size:15px}

.btn-default{
  color:var(--theme-text);
  background:#fff;
  border-color:var(--theme-border);
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active{
  color:#fff;
  background:var(--theme-primary);
  border-color:var(--theme-primary);
}

.btn-primary{
  color:#fff;
  background:var(--theme-primary);
  border-color:var(--theme-primary);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled]{
  color:#fff;
  background:var(--theme-primary-hover);
  border-color:var(--theme-primary-hover);
  background-position:0;
}

.btn-warning{
  color:#fff;
  background:var(--theme-warning);
  border-color:var(--theme-warning);
}

.btn-warning:hover,
.btn-warning:active,
.btn-warning.active,
.btn-warning.disabled,
.btn-warning[disabled]{
  color:#fff;
  background:#b45309;
  border-color:#b45309;
  box-shadow:var(--shadow-md);
}

.btn-danger{
  color:#fff;
  background:var(--theme-error);
  border-color:var(--theme-error);
}

.btn-danger:hover,
.btn-danger:active,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled]{
  color:#fff;
  background:#b91c1c;
  border-color:#b91c1c;
  box-shadow:var(--shadow-md);
}

.btn-success{
  color:#fff;
  background:var(--theme-success);
  border-color:var(--theme-success);
}

.btn-success:hover,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled]{
  color:#fff;
  background:#047857;
  border-color:#047857;
  box-shadow:var(--shadow-md);
}

.btn-info{
  color:#fff;
  background:var(--theme-info);
  border-color:var(--theme-info);
}

.btn-info:hover,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled]{
  color:#fff;
  background:#1d4ed8;
  border-color:#1d4ed8;
  background-image:none;
}

.btn-link{
  border-color:transparent;
  cursor:pointer;
  color:var(--theme-primary);
  border-radius:var(--radius-md);
  box-shadow:none;
}

.btn-link,
.btn-link:active,
.btn-link[disabled]{
  background-color:transparent;
  background-image:none;
  box-shadow:none;
}

.btn-link:hover,
.btn-link:focus{
  color:var(--theme-primary-hover);
  background:#f3f4f6;
  box-shadow:none;
  transform:none;
}

.btn-inverse{
  color:#fff;
  background:#111827;
  border-color:#111827;
}

.btn-inverse:hover,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled]{
  color:#fff;
  background:#000;
  border-color:#000;
  background-image:none;
}

/* LIST GROUP */
.list-group a{
  border:1px solid var(--theme-border);
  color:var(--theme-text-muted);
  padding:10px 12px;
  background:#fff;
  font-weight:600;
}

.list-group a:first-child{
  border-radius:var(--radius-lg) var(--radius-lg) 0 0;
}

.list-group a:last-child{
  border-radius:0 0 var(--radius-lg) var(--radius-lg);
}

.list-group a.active,
.list-group a.active:hover,
.list-group a:hover{
  color:#fff;
  background:var(--theme-primary);
  border-color:var(--theme-primary);
  text-shadow:none;
}

/* CAROUSEL */
.carousel-caption{
  color:#fff;
  text-shadow:0 2px 10px rgba(0,0,0,.45);
}

.carousel-control .icon-prev:before{
  content:'\f053';
  font-family:FontAwesome;
}

.carousel-control .icon-next:before{
  content:'\f054';
  font-family:FontAwesome;
}

/* PRODUCT LIST */
.product-thumb{
  background:var(--theme-surface);
  border:1px solid var(--theme-border);
  border-radius:var(--radius-lg);
  margin-bottom:22px;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:box-shadow .2s ease,transform .2s ease,border-color .2s ease;
  height:100%;
}

.product-thumb:hover{
  box-shadow:var(--shadow-md);
  border-color:var(--theme-border-strong);
  transform:translateY(-2px);
}

.product-thumb .image{
  text-align:center;
  background:#fff;
  padding:14px;
  position:relative;
}

.product-thumb .image a{
  display:block;
  border-radius:var(--radius-md);
  overflow:hidden;
  background:#fff;
}

.product-thumb .image a:hover{
  opacity:.94;
}

.product-thumb .image img{
  margin-left:auto;
  margin-right:auto;
  transition:transform .25s ease;
}

.product-thumb:hover .image img{
  transform:scale(1.025);
}

.product-grid .product-thumb .image{
  float:none;
}

.product-thumb h4{
  font-weight:800;
  font-size:14px;
  line-height:1.35;
  min-height:38px;
  margin:8px 0 10px;
  color:var(--theme-text);
}

.product-thumb h4 a{
  color:var(--theme-text);
}

.product-thumb h4 a:hover{
  color:var(--theme-primary-hover);
}

.product-thumb .caption{
  padding:0 14px 14px;
  min-height:170px;
  color:var(--theme-text-muted);
}

.product-list .product-thumb .caption{
  margin-left:230px;
  padding-top:14px;
}

.product-thumb .rating{
  padding-bottom:10px;
}

.rating .fa-stack{
  font-size:8px;
}

.rating .fa-star-o{
  color:#d1d5db;
  font-size:15px;
}

.rating .fa-star{
  color:#f59e0b;
  font-size:15px;
}

.rating .fa-star+.fa-star-o{
  color:#d97706;
}

h2.price{
  margin:0;
  color:var(--theme-text);
  font-weight:800;
}

.product-thumb .price{
  color:var(--theme-text);
  font-size:16px;
  font-weight:800;
  letter-spacing:-.015em;
}

.product-thumb .price-new{
  font-weight:800;
  color:var(--theme-primary);
}

.product-thumb .price-old{
  color:var(--theme-text-muted-alt);
  text-decoration:line-through;
  margin-left:8px;
  font-weight:500;
}

.product-thumb .price-tax{
  color:var(--theme-text-muted-alt);
  font-size:12px;
  display:block;
  margin-top:3px;
}

.product-thumb .button-group{
  border-top:1px solid var(--theme-border);
  background:#f9fafb;
  overflow:hidden;
  display:flex;
  align-items:stretch;
}

.product-list .product-thumb .button-group{
  border-left:1px solid var(--theme-border);
}

.product-thumb .button-group button{
  width:60%;
  border:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  float:none;
  background:#f9fafb;
  color:var(--theme-text);
  line-height:1.2;
  min-height:44px;
  font-weight:800;
  text-align:center;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.02em;
  transition:background-color .2s ease,color .2s ease;
}

.product-thumb .button-group button+button{
  width:20%;
  border-left:1px solid var(--theme-border);
}

.product-thumb .button-group button:hover{
  color:#fff;
  background:var(--theme-primary);
  text-decoration:none;
  cursor:pointer;
}

/* THUMBNAILS */
.thumbnails{
  overflow:auto;
  clear:both;
  list-style:none;
  padding:0;
  margin:0 0 0 -20px;
}

.thumbnails>li{
  margin-left:20px;
}

.thumbnails>img{
  width:100%;
}

.image-additional a{
  margin-bottom:20px;
  padding:6px;
  display:block;
  border:1px solid var(--theme-border);
  border-radius:var(--radius-md);
  background:#fff;
  box-shadow:var(--shadow-sm);
  transition:box-shadow .2s ease,border-color .2s ease,transform .2s ease;
}

.image-additional a:hover{
  border-color:var(--theme-border-strong);
  box-shadow:var(--shadow-md);
  transform:translateY(-1px);
}

.image-additional{
  max-width:82px;
}

.thumbnails .image-additional{
  float:left;
  margin-left:20px;
}

/* TABLE / PANEL */
.table{
  background:#fff;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
}

.table>thead>tr>th{
  color:var(--theme-text);
  background:#f9fafb;
  border-bottom:1px solid var(--theme-border);
  font-size:13px;
  font-weight:800;
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th{
  border-top:1px solid var(--theme-border);
  vertical-align:middle;
}

.well,
.panel{
  background:#fff;
  border:1px solid var(--theme-border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);
}

.panel-heading{
  background:#f9fafb!important;
  border-bottom:1px solid var(--theme-border)!important;
  color:var(--theme-text)!important;
  font-weight:800;
  border-radius:var(--radius-lg) var(--radius-lg) 0 0;
}

.panel-body{
  color:var(--theme-text-muted);
}

/* RESPONSIVE */
@media (min-width:767px){
  .product-list .product-thumb .image{
    float:left;
    padding:14px;
    width:230px;
  }

  #menu .dropdown:hover .dropdown-menu{
    display:block;
  }
}

@media (min-width:1200px){
  #content .col-lg-2:nth-child(6n+1),
  #content .col-lg-3:nth-child(4n+1),
  #content .col-lg-4:nth-child(3n+1),
  #content .col-lg-6:nth-child(2n+1){
    clear:left;
  }
}

@media (min-width:992px) and (max-width:1199px){
  #content .col-md-2:nth-child(6n+1),
  #content .col-md-3:nth-child(4n+1),
  #content .col-md-4:nth-child(3n+1),
  #content .col-md-6:nth-child(2n+1){
    clear:left;
  }
}

@media (min-width:768px) and (max-width:991px){
  #content .col-sm-2:nth-child(6n+1),
  #content .col-sm-3:nth-child(4n+1),
  #content .col-sm-4:nth-child(3n+1),
  #content .col-sm-6:nth-child(2n+1){
    clear:left;
  }
}

@media (min-width:768px){
  #column-left .product-layout .col-md-3{
    width:100%;
  }

  #column-left+#content .product-layout .col-md-3{
    width:50%;
  }

  #column-left+#content+#column-right .product-layout .col-md-3{
    width:100%;
  }

  #content+#column-right .product-layout .col-md-3{
    width:100%;
  }
}

#column-left .product-layout,
#column-right .product-layout{
  width:100%;
}

.input-group .form-control[name^=quantity]{
  min-width:58px;
}

@media (max-width:1200px){
  .product-grid .product-thumb .caption{
    min-height:198px;
    padding:0 12px 14px;
  }

  .product-thumb .button-group button,
  .product-thumb .button-group button+button{
    width:33.333%;
  }
}

@media (max-width:991px){
  body{
    font-size:13px;
  }

  h1{font-size:28px}
  h2{font-size:23px}
  h3{font-size:20px}

  #top .container{
    padding:0 15px;
  }

  #logo{
    text-align:center;
  }

  #logo img{
    margin:0 auto;
    max-height:66px;
  }

  #search .input-lg,
  #search .btn-lg,
  #cart>.btn{
    height:44px;
    min-height:44px;
  }

  .product-thumb{
    border-radius:var(--radius-lg);
  }
}

@media (max-width:768px){
  .product-list .product-thumb .button-group{
    border-left:none;
  }
}

@media (max-width:767px){
  body{
    background:var(--theme-bg);
    font-size:13px;
  }

  h1{font-size:25px}
  h2{font-size:21px}
  h3{font-size:18px}

  #top{
    margin-bottom:14px;
  }

  #top .pull-left,
  #top .pull-right{
    float:none!important;
    text-align:center;
  }

  #top-links{
    padding-top:0;
    text-align:center;
  }

  #logo{
    margin-bottom:14px;
  }

  #search{
    margin-bottom:10px;
  }

  #search .input-lg{
    border-radius:var(--radius-lg) 0 0 var(--radius-lg);
  }

  #search .btn-lg{
    padding-left:15px;
    padding-right:15px;
    border-radius:0 var(--radius-lg) var(--radius-lg) 0;
  }

  #cart .dropdown-menu{
    width:100%;
    left:0;
    right:0;
  }

  #cart .dropdown-menu li>div{
    min-width:100%;
    padding:0;
  }

  #menu{
    border-radius:var(--radius-lg);
    margin-left:0;
    margin-right:0;
    background:var(--theme-primary);
    border-color:var(--theme-primary);
  }

  #menu #category{
    color:#fff;
    line-height:48px;
  }

  #menu .navbar-collapse{
    border-top:1px solid rgba(255,255,255,.12);
    box-shadow:none;
  }

  #menu .nav>li>a{
    color:#fff;
    padding:12px 14px;
    min-height:44px;
    border-radius:var(--radius-sm);
  }

  #menu .nav>li>a:hover,
  #menu .nav>li.open>a{
    background:rgba(255,255,255,.14);
  }

  #menu div.dropdown-inner>ul.list-unstyled{
    display:block;
  }

  #menu div.dropdown-menu{
    margin-left:0!important;
    padding:8px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.14);
    box-shadow:none;
  }

  #menu .dropdown-inner{
    display:block;
  }

  #menu .dropdown-inner a{
    width:100%;
    color:#fff;
  }

  #menu .dropdown-menu a:hover,
  #menu .dropdown-menu ul li a:hover{
    background:rgba(255,255,255,.14);
    color:#fff;
  }

  #menu .see-all{
    margin-top:0;
    border:none;
    border-radius:var(--radius-md);
    color:#fff;
    background:rgba(255,255,255,.10);
  }

  .breadcrumb{
    white-space:nowrap;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }

  .product-list .product-thumb .image{
    float:none;
    width:auto;
  }

  .product-list .product-thumb .caption{
    min-height:0;
    margin-left:0;
    padding:0 12px 14px;
  }

  .product-grid .product-thumb .caption{
    min-height:0;
  }

  .product-thumb .button-group button,
  .product-thumb .button-group button+button{
    width:33.333%;
    min-height:46px;
  }

  .product-thumb .button-group button{
    font-size:0;
  }

  .product-thumb .button-group button i{
    font-size:16px;
  }

  .table-responsive{
    border:0;
    margin-bottom:15px;
  }

  footer{
    text-align:center;
    padding-top:28px;
  }
}

@media (max-width:478px){
  #cart .dropdown-menu{
    width:100%;
  }

  #cart .dropdown-menu li>div{
    min-width:100%;
  }

  .btn{
    padding:8px 11px;
  }

  .btn-lg{
    padding:10px 14px;
  }

  .product-layout.col-xs-6{
    padding-left:6px;
    padding-right:6px;
  }

  .product-thumb{
    margin-bottom:12px;
  }

  .product-thumb .image{
    padding:10px;
  }

  .product-thumb .caption{
    padding:0 10px 12px;
  }

  .product-thumb h4{
    font-size:13px;
    min-height:38px;
  }

  .product-thumb .price{
    font-size:14px;
  }

  .product-thumb .button-group button{
    min-height:42px;
  }
}

/* SCROLLBAR */
::-webkit-scrollbar{
  width:10px;
  height:10px;
}

::-webkit-scrollbar-track{
  background:#e5e7eb;
}

::-webkit-scrollbar-thumb{
  background:#9ca3af;
  border-radius:999px;
  border:2px solid #e5e7eb;
}

::-webkit-scrollbar-thumb:hover{
  background:#6b7280;
}

::selection{
  background:#111827;
  color:#fff;
}