/*
Template Name: Electro - HTML Ecommerce Template
Author: yaminncco

Colors:
	Body 		: #333
	Headers 	: #2B2D42
	Primary 	: #ff0000
	Dark 		: #15161D ##1E1F29
	Grey 		: #E4E7ED #FBFBFC #8D99AE #B9BABC

Fonts: Montserrat

Table OF Contents
------------------------------------
1 > GENERAL
------ Typography
------ Buttons
------ Inputs
------ Sections
------ Breadcrumb
2 > HEADER
------ Top header
------ Logo
------ Search
------ Cart
3 > NAVIGATION
------ Main nav
------ Responsive Nav
4 > CATEGORY SHOP
5 > HOT DEAL
6 > PRODUCT
------ Product
------ Widget product
------ Product slick
7 > STORE PAGE
------ Aside
------ Store
8 > PRODUCT DETAILS PAGE
------ Product view
------ Product details
------ Product tab
9 > CHECKOUT PAGE
10 > NEWSLETTER
11 > FOOTER
11 > SLICK STYLE
12 > RESPONSIVE
------------------------------------*/

/*=========================================================
	01 -> GENERAL
===========================================================*/

/*----------------------------*\
	Typography
\*----------------------------*/
:root {
  
  --font-principal:'hobo', arial;
   --font-menu:'hobo', arial;
    background-color:transparent ; 
}
body {
  font-family: 'hobo', arial;
  font-weight: 400;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  color: #2B2D42;
  font-weight: 700;
  margin: 0 0 10px;
}

a {
  color: #ffffff;
  font-weight: 1000;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}

a:hover, a:focus {
  color: #ffffff;
  text-decoration: none;
  outline: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none
}

/*----------------------------*\
	Buttons
\*----------------------------*/

.primary-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ff0000;
  border: none;
  border-radius: 40px;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.primary-btn:hover, .primary-btn:focus {
  opacity: 0.9;
  color: #FFF;
}

/*----------------------------*\
	Inputs
\*----------------------------*/

/*-- Text input --*/

.input {
  height: 40px;
  padding: 0px 15px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  width: 100%;
}

textarea.input {
  padding: 15px;
  min-height: 90px;
}

/*-- Number input --*/

.input-number {
  position: relative;
}

.input-number input[type="number"]::-webkit-inner-spin-button, .input-number input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-number input[type="number"] {
  -moz-appearance: textfield;
  height: 40px;
  width: 100%;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  padding: 0px 35px 0px 15px;
}

.input-number .qty-up, .input-number .qty-down {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input-number .qty-up {
  right: 0;
  top: 0;
  border-bottom: 0px;
}

.input-number .qty-down {
  right: 0;
  bottom: 0;
}

.input-number .qty-up:hover, .input-number .qty-down:hover {
  background-color: #E4E7ED;
  color: #ff0000;
}

/*-- Select input --*/

.input-select {
  padding: 0px 15px;
  background: #FFF;
  border: 1px solid #E4E7ED;
  height: 40px;
}

/*-- checkbox & radio input --*/

.input-radio, .input-checkbox {
  position: relative;
  display: block;
}

.input-radio input[type="radio"]:not(:checked), .input-radio input[type="radio"]:checked, .input-checkbox input[type="checkbox"]:not(:checked), .input-checkbox input[type="checkbox"]:checked {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}

.input-radio label, .input-checkbox label {
  font-weight: 500;
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 5px;
  cursor: pointer;
}

.input-radio input[type="radio"]+label span, .input-checkbox input[type="checkbox"]+label span {
  position: absolute;
  left: 0px;
  top: 4px;
  width: 14px;
  height: 14px;
  border: 2px solid #E4E7ED;
  background: #FFF;
}

.input-radio input[type="radio"]+label span {
  border-radius: 50%;
}

.input-radio input[type="radio"]+label span:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  background-color: #FFF;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-checkbox input[type="checkbox"]+label span:after {
  content: '✔';
  position: absolute;
  top: -2px;
  left: 1px;
  font-size: 10px;
  color: #FFF;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-radio input[type="radio"]:checked+label span, .input-checkbox input[type="checkbox"]:checked+label span {
  background-color: #ff0000;
  border-color: #ff0000;
}

.input-radio input[type="radio"]:checked+label span:after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.input-checkbox input[type="checkbox"]:checked+label span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.input-radio .caption, .input-checkbox .caption {
  margin-top: 5px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s max-height;
  transition: 0.3s max-height;
}

.input-radio input[type="radio"]:checked~.caption, .input-checkbox input[type="checkbox"]:checked~.caption {
  max-height: 800px;
}

/*----------------------------*\
	Section
\*----------------------------*/

.section {
  padding-top: 0px;
  padding-bottom: 30px;
}

.section-title {
  position: relative;
  margin-bottom: 10px;
  margin-top: 10px;
  cursor: pointer;
}

.section-title .title {
  display: inline-block;
  text-transform: uppercase;
  margin: 0px;
  cursor: pointer;
}

.section-title .section-nav {
  float: right;
}

.section-title .section-nav .section-tab-nav {
  display: inline-block;
}

.section-tab-nav li {
  display: inline-block;
  margin-right: 15px;
}

.section-tab-nav li:last-child {
  margin-right: 0px;
}

.section-tab-nav li a {
  font-weight: 700;
  color: #8D99AE;
  cursor: pointer;
}

.section-tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #ff0000;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.section-tab-nav li.active a {
  color: #ff0000;
}

.section-tab-nav li a:hover:after, .section-tab-nav li a:focus:after, .section-tab-nav li.active a:after {
  width: 100%;
}

.section-title .section-nav .products-slick-nav {
  top: 0px;
  right: 0px;
}

/*----------------------------*\
	Breadcrumb
\*----------------------------*/

#breadcrumb {
  padding: 30px 0px;
  background: #FBFBFC;
  border-bottom: 1px solid #E4E7ED;
  margin-bottom: 30px;
}

#breadcrumb .breadcrumb-header {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 15px;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree {
  display: inline-block;
}

#breadcrumb .breadcrumb-tree li {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree li+li {
  margin-left: 10px;
}

#breadcrumb .breadcrumb-tree li+li:before {
  content: '/';
  display: inline-block;
  color: #8D99AE;
  margin-right: 10px;
}

#breadcrumb .breadcrumb-tree li a {
  color: #8D99AE;
}

#breadcrumb .breadcrumb-tree li a:hover {
  color: #ff0000;
}

/*=========================================================
	02 -> HEADER
===========================================================*/

/*----------------------------*\
	Top header
\*----------------------------*/

#top-header {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #ff0000;
}

.header-links li {
  display: inline-block;
  margin-right: 15px;
  font-size: 12px;
}

.header-links li:last-child {
  margin-right: 0px;
}

.header-links li a {
  color: #FFF;
}

.header-links li a:hover {
  color: #ffffff;
}

.header-links li i {
  color: #ff0000;
  margin-right: 5px;
}

/*----------------------------*\
	Logo
\*----------------------------*/

#header {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}

.header-logo {
  float: left;
}

.header-logo .logo img {
  display: block;
}

/*----------------------------*\
	Search
\*----------------------------*/

.header-search {
  padding: 15px 0px;
}

.header-search form {
  position: relative;
}

.header-search form .input-select {
  margin-right: -4px;
  width: calc(100% - 460px);
  border-radius: 40px 0px 0px 40px;
}

.header-search form .input {
  width: calc(100% - 360px);
  margin-right: -4px;
}
 #BtnDetalleDptoBus
{
  height: 40px;
  width: 60px;
  background: #ff0000;
  color: #FFF;
  font-weight: 700;
  border: none;
  border-radius: 0px 40px 40px 0px;
	
	
}
.header-search form .search-btn {
  height: 40px;
  width: 80px;
  background: #ff0000;
  color: #FFF;
  font-weight: 700;
  border: none;
  border-radius: 0px 40px 40px 0px;
}

/*----------------------------*\
	Cart
\*----------------------------*/

.header-ctn {
  float: right;
  padding: 15px 0px;
}

.header-ctn>div {
  display: inline-block;
}

.header-ctn>div+div {
  margin-left: 10px;
}

.header-ctn>div>a {
  display: block;
  position: relative;
  width: 70px;
  text-align: center;
  color: #ff0000;
}

.header-ctn>div>a>i {
  display: block;
  font-size: 18px;
}

.header-ctn>div>a>span {
  font-size: 12px;
}

.header-ctn>div>a>.qty {
  position: absolute;
  right: 15px;
  top: -10px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  font-size: 10px;
  color: #FFF;
  background-color: #ff0000;
}

.header-ctn .menu-toggle {
  display: none;
}

.cart-dropdown {
  position: absolute;
  width: 300px;
  background: #FFF;
  padding: 15px;
  -webkit-box-shadow: 0px 0px 0px 2px #E4E7ED;
  box-shadow: 0px 0px 0px 2px #E4E7ED;
  z-index: 9999999999999999999;
  right: 0;
  opacity: 0;
  visibility: hidden;

}
@media only screen and (max-width: 480px) {
  .dropdown.open>.cart-dropdown 
  {
    left: 0px;
    width: 220px;
  }
  .cart-dropdown {
    left: 0px;
  }
}
.dropdown.open>.cart-dropdown {
  opacity: 1;
  visibility: visible;
  
}

.cart-dropdown .cart-list {
  max-height: 180px;
  overflow-y: scroll;
  margin-bottom: 15px;
}

.cart-dropdown .cart-list .product-widget {
  padding: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.cart-dropdown .cart-list .product-widget:last-child {
  margin-bottom: 0px;
}

.cart-dropdown .cart-list .product-widget .product-img {
  left: 0px;
  top: 0px;
}

.cart-dropdown .cart-list .product-widget .product-body .product-price {
  color: #2B2D42;
}

.cart-dropdown .cart-btns {
  margin: 0px -17px -17px;
}

.cart-dropdown .cart-btns>a {
  display: inline-block;
  width: calc(50% - 0px);
  padding: 12px;
  background-color: #ff0000;
  color: #FFF;
  text-align: center;
  font-weight: 700;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.cart-dropdown .cart-btns>a:first-child {
  margin-right: -4px;
  background-color: #ffffff;
  color: #ff0000;
  border-color: #ff0000;
  border: #ff0000;
}

.cart-dropdown .cart-btns>a:hover {
  opacity: 0.9;
}

.cart-dropdown .cart-summary {
  border-top: 1px solid #E4E7ED;
  padding-top: 15px;
  padding-bottom: 15px;
}

/*=========================================================
	03 -> Navigation
===========================================================*/

.navigation {
  background: #FFF;
  border-bottom: 2px solid #ff0000;
  border-top: 5px solid #ff0000;
}

/*----------------------------*\
	Main nav
\*----------------------------*/

.main-nav>li+li {
  margin-left: 20px
}

.main-nav>li>a {
  padding: 10px 0px;
}
.main-nav>li>a{
  color: #ff0000;
  background-color: transparent;
  font-family: 'hobo', arial;
  font-size: 12px;
  cursor:pointer;
}
.main-nav>li>a:hover, .main-nav>li>a:focus, .main-nav>li.active>a {
  color: #ff0000;
  background-color: transparent;
}

.main-nav>li>a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #ff0000;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;

}

.main-nav>li>a:hover:after, .main-nav>li>a:focus:after, .main-nav>li.active>a:after {
  width: 100%;
}

.header-ctn li.nav-toggle {
  display: none;
}

/*----------------------------*\
	responsive nav
\*----------------------------*/

@media only screen and (max-width: 991px) {
  .header-ctn .menu-toggle {
    display: inline-block;
  }
  #responsive-nav {
    position: fixed;
    left: 0;
    top: 0;
    background: #ff0000;
    height: 100vh;
    max-width: 250px;
    width: 0%;
    overflow: hidden;
    z-index: 22;
    padding-top: 50px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  #responsive-nav.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
  }
  .main-nav {
    margin: 0px;
    float: none;
  }
  .main-nav>li {
    display: block;
    float: none;
  }
  .main-nav>li+li {
    margin-left: 0px;
  }
  .main-nav>li>a {
    padding: 15px;
    color: #ffffff;
  }
}

/*=========================================================
	04 -> CATEGORY SHOP
===========================================================*/

.shop {
  position: relative;
  overflow: hidden;
  margin: 15px 0px;
  cursor:pointer;
}

.shop:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 60%;
  background: #ff0000;
  opacity: 0.9;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
}

.shop:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1px;
  width: 100%;
  background: #ff0000;
  opacity: 0.9;
  -webkit-transform: skewX(-45deg) translateX(-100%);
  -ms-transform: skewX(-45deg) translateX(-100%);
  transform: skewX(-45deg) translateX(-100%);
}

.shop .shop-img {
  position: relative;
  background-color: #E4E7ED;
  z-index: -1;
}

.shop .shop-img>img {
  width: 100%;
  height: 280px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.shop:hover .shop-img>img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.shop .shop-body {
  position: absolute;
  top: 0;
  width: 85%;
  padding: 30px;
  z-index: 10;
}

.shop .shop-body h4 {
  color: #FFF;
  cursor:pointer;
}

.shop .shop-body .cta-btn {
  color: #FFF;
  text-transform: uppercase;
}

/*=========================================================
	05 -> HOT DEAL
===========================================================*/

#hot-deal.section {
  padding: 60px 0px;
  margin: 30px 0px;
  background-color: #E4E7ED;
 background-image: url('../ofertas/hotdeal.png');
  background-position: center;
  background-repeat: no-repeat;
}

.hot-deal {
  text-align: center;
}

.hot-deal .hot-deal-countdown {
  margin-bottom: 30px;
}

.hot-deal .hot-deal-countdown>li {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  background: #ff0000e6;
  text-align: center;
  border-radius: 50%;
  margin: 0px 5px;
}

.hot-deal .hot-deal-countdown>li>div {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.hot-deal .hot-deal-countdown>li>div h3 {
  color: #FFF;
  margin-bottom: 0px;
}

.hot-deal .hot-deal-countdown>li>div span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: #FFF;
}

.hot-deal p {
  text-transform: uppercase;
  font-size: 24px;
}

.hot-deal .cta-btn {
  margin-top: 15px;
}




/*=========================================================
	06 -> PRODUCT
===========================================================*/

/*----------------------------*\
	product
\*----------------------------*/

.product {
  position: relative;
  margin: 15px 0px;
  -webkit-box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
  box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  margin-top: 15%;
  
}

.product:hover {
  -webkit-box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #ff0000;
  box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #ff0000;
}

.product .product-img {
  position: relative;
}

.product .product-img>img {
  top: 5px;
  width: 120px;
  height:120px ;
 align-content:center ;
}

.product .product-img .product-label {
  position: absolute;
  top: 15px;
  right: 15px;
}

.product .product-img .product-label>span {
  border: 2px solid;
  padding: 2px 10px;
  font-size: 12px;
}

.product .product-img .product-label>span.sale {
  background-color: #FFF;
  border-color: #ff0000;
  color: #ff0000;
}

.product .product-img .product-label>span.new {
  background-color: #ff0000;
  border-color: #ff0000;
  color: #FFF;
}

.product .product-body {
  position: relative;
  padding: 15px;
  background-color: #FFF;
  text-align: center;
  z-index: 20;
  min-height:130px ;
}

.product .product-body1{
  position: relative;
  padding: 15px;
  background-color: #FFF;
  text-align: center;
  z-index: 20;
  height:180px ;
}
.product .product-body .product-category {
  text-transform: uppercase;
  font-size: 12px;
  color: #8D99AE;
}

.product .product-body .product-name {
  text-transform: uppercase;
  font-size: 14px;
}

.product .product-body .product-name>a {
  font-weight: 700;
  color: #ff0000;
}

.product .product-body .product-name>a:hover, .product .product-body .product-name>a:focus {
  color: #ff0000;
}

.product .product-body .product-price {
  color: #ff0000;
  font-size: 18px;
}

.product .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product .product-body .product-rating {
  position: relative;
  margin: 15px 0px 10px;
  height: 20px;
}

.product .product-body .product-rating>i {
  position: relative;
  width: 14px;
  margin-right: -4px;
  background: #FFF;
  color: #E4E7ED;
  z-index: 10;
}

.product .product-body .product-rating>i.fa-star {
  color: #ef233c;
}

.product .product-body .product-rating:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 1px;
  background-color: #E4E7ED;
}

.product .product-body .product-btns>button {
  position: relative;
   width: 120px;
  padding: 10px;
  font-size: 10px;
  line-height: 10px;
  height: 30px;
  line-height: 10px;
  background: transparent;
  border: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
    background: #ff0000;
      color: #FFF;
        text-transform: uppercase;
}

.product .product-body .product-btns>button:hover {
  background-color: #E4E7ED;
  color: #ff0000;

}

.product .product-body .product-btns>button .tooltipp {
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -15px);
  -ms-transform: translate(-50%, -15px);
  transform: translate(-50%, -15px);
  width: 150px;
  padding: 10px;
  font-size: 12px;
  line-height: 10px;
  background: #ff0000;
  color: #FFF;
  text-transform: uppercase;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover .tooltipp {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -5px);
  -ms-transform: translate(-50%, -5px);
  transform: translate(-50%, -5px);
}

.product .add-to-cart {
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 1px;
  padding: 15px;
  border: #ff0000;
  background: transparent;
  text-align: center;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  z-index: 2;
}

.product:hover .add-to-cart {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

.product .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 40px;
  background-color: #ef233c;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .add-to-cart .add-to-cart-btn>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #ff0000;
  opacity: 0;
  visibility: hidden;
}

.product .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color: #ff0000;
  border-color: #ff0000;
  padding: 0px 30px 0px 50px;
}

.product .add-to-cart .add-to-cart-btn:hover>i {
  opacity: 1;
  visibility: visible;
}

/*----------------------------*\
	Widget product
\*----------------------------*/

.product-widget {
  position: relative;
}

.product-widget+.product-widget {
  margin: 30px 0px;
}

.product-widget .product-img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 60px;
}

.product-widget .product-img>img {
  width: 100%;
}

.product-widget .product-body {
  padding-left: 75px;
  min-height: 60px;
}

.product-widget .product-body .product-category {
  text-transform: uppercase;
  font-size: 10px;
  color: #8D99AE;
}

.product-widget .product-body .product-name {
  text-transform: uppercase;
  font-size: 12px;
}

.product-widget .product-body .product-name>a {
  font-weight: 700;
}

.product-widget .product-body .product-name>a:hover, .product-widget .product-body .product-name>a:focus {
  color: #ff0000;
}

.product-widget .product-body .product-price {
  font-size: 14px;
  color: #ff0000;
}

.product-widget .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product-widget .product-body .product-price .qty {
  font-weight: 400;
  margin-right: 10px;
}

.product-widget .delete {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  text-align: center;
  font-size: 10px;
  padding: 0;
  background: #1e1f29;
  border: none;
  color: #FFF;
}

/*----------------------------*\
	Products slick
\*----------------------------*/

.products-slick .slick-list {
  padding-bottom: 60px;
  margin-bottom: -60px;
  z-index: 2;
}

.products-slick .product.slick-slide {
  margin: 10px;
}

.products-tabs>.tab-pane {
  display: block;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: hidden;
  padding-bottom: 60px;
  margin-bottom: -60px;
}

.products-tabs>.tab-pane.active {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.products-slick-nav {
  position: absolute;
  right: 15px;
  z-index: 10;
}

.products-slick-nav .slick-prev, .products-slick-nav .slick-next {
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 20px;
  height: 20px;
  display: inline-block !important;
  margin: 0px 2px;
}

.products-slick-nav .slick-prev:before, .products-slick-nav .slick-next:before {
  font-size: 14px;
}

/*=========================================================
	07 -> PRODUCTS PAGE
===========================================================*/

/*----------------------------*\
	Aside
\*----------------------------*/

.aside+.aside {
  margin-top: 30px;
}

.aside>.aside-title {
  text-transform: uppercase;
  font-size: 18px;
  margin: 15px 0px 30px;
}

/*-- checkbox Filter --*/

.checkbox-filter>div+div {
  margin-top: 10px;
}

.checkbox-filter .input-radio label, .checkbox-filter .input-checkbox label {
  font-size: 12px;
}

.checkbox-filter .input-radio label small, .checkbox-filter .input-checkbox label small {
  color: #8D99AE;
}
.checkbox-filter .small2 {
  color: #ff0000;
  font-size: 10px;
}

/*-- Price Filter --*/

#price-slider {
  margin-bottom: 15px;
}

.noUi-target {
  background-color: #FFF;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #E4E7ED;
  border-radius: 0px;
}

.noUi-connect {
  background-color: #ff0000;
}

.noUi-horizontal {
  height: 6px;
}

.noUi-horizontal .noUi-handle {
  width: 12px;
  height: 12px;
  left: -6px;
  top: -4px;
  border: none;
  background: #ff0000;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 50%;
}

.noUi-handle:before, .noUi-handle:after {
  display: none;
}

.price-filter .input-number {
  display: inline-block;
  width: calc(50% - 7px);
}

/*----------------------------*\
	Store
\*----------------------------*/

.store-filter {
  margin-bottom: 15px;
  margin-top: 15px;
}

/*-- Store Sort --*/

.store-sort {
  display: inline-block;
}

.store-sort label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
}

/*-- Store Grid --*/

.store-grid {
  float: right;
}

.store-grid li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-grid li+li {
  margin-left: 5px;
}

.store-grid li:hover {
  background-color: #E4E7ED;
  color: #ff0000;
}

.store-grid li.active {
  background-color: #ff0000;
  border-color: #ff0000;
  color: #FFF;
  cursor: default;
}

.store-grid li a {
  display: block;
}

/*-- Store Pagination --*/

.store-pagination {
  float: right;
}

.store-pagination li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-pagination li+li {
  margin-left: 5px;
}

.store-pagination li {
  background-color: #E4E7ED;
  color: #ff0000;
}

.store-pagination li.active {
  background-color: #ff0000;
  border-color: #ff0000;
  color: #FFF;
  font-weight: 500;
  cursor: default;
}

.store-pagination li a {
  display: block;
}

.store-qty {
  margin-right: 30px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
}

/*=========================================================
	08 -> PRODUCT DETAILS PAGE
===========================================================*/

/*----------------------------*\
	Product view
\*----------------------------*/

#product-main-img .slick-prev {
  -webkit-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
  left: 15px;
}

#product-main-img .slick-next {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
  right: 15px;
}

#product-main-img .slick-prev, #product-main-img .slick-next {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-main-img:hover .slick-prev, #product-main-img:hover .slick-next {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}

#product-main-img .zoomImg {
  background-color: #FFF;
}

#product-imgs .product-preview {
  margin: 0px 5px;
  border: 1px solid #E4E7ED;
}

#product-imgs .product-preview.slick-current {
  border-color: #ff0000;
}

#product-imgs .slick-prev {
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-next {
  top: calc(100% - 20px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-prev:before {
  content: "\f106";
}

#product-imgs .slick-next:before {
  content: "\f107";
}

.product-preview img {
  width: 100%;
}

/*----------------------------*\
	Product details
\*----------------------------*/

.product-details .product-name {
  text-transform: uppercase;
  font-size: 18px;
}

.product-details .product-rating {
  display: inline-block;
  margin-right: 15px;
}

.product-details .product-rating>i {
  color: #E4E7ED;
}

.product-details .product-rating>i.fa-star {
  color: #ff0000;
}

.product-details .review-link {
  font-size: 12px;
}

.product-details .product-price {
  display: inline-block;
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 15px;
  color: #ff0000;
}

.product-details .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product-details .product-available {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 30px;
  color: #ff0000;
}

.product-details .product-options {
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-details .product-options label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .product-options .input-select {
  width: 90px;
}

.product-details .add-to-cart {
  margin-bottom: 30px;
}

.product-details .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  background-color: #ef233c;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product-details .add-to-cart .add-to-cart-btn>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #ff0000;
  opacity: 0;
  visibility: hidden;
}

.product-details .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color: #ff0000;
  border-color: #ff0000;
  padding: 0px 30px 0px 50px;
}

.product-details .add-to-cart .add-to-cart-btn:hover>i {
  opacity: 1;
  visibility: visible;
}

.product-details .add-to-cart .qty-label {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .add-to-cart .qty-label .input-number {
  width: 90px;
  display: inline-block;
}

.product-details .product-btns li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-btns li+li {
  margin-left: 15px;
}

.product-details .product-links {
  margin-top: 15px;
}

.product-details .product-links li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-links li+li {
  margin-left: 10px;
}

/*----------------------------*\
	 Product tab
\*----------------------------*/

#product-tab {
  margin-top: 60px;
}

#product-tab .tab-nav {
  position: relative;
  text-align: center;
  padding: 15px 0px;
  margin-bottom: 30px;
}

#product-tab .tab-nav:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background-color: #E4E7ED;
  z-index: -1;
}

#product-tab .tab-nav li {
  display: inline-block;
  background: #FFF;
  padding: 0px 15px;
}

#product-tab .tab-nav li+li {
  margin-left: 15px;
}

#product-tab .tab-nav li a {
  display: block;
  font-weight: 700;
  color: #8D99AE;
}

#product-tab .tab-nav li.active a {
  color: #ff0000;
}

#product-tab .tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #ff0000;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-tab .tab-nav li a:hover:after, #product-tab .tab-nav li a:focus:after, #product-tab .tab-nav li.active a:after {
  width: 100%;
}

/*-- Rating --*/

.rating-avg {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.rating-avg .rating-stars {
  margin-left: 10px;
}

.rating-avg .rating-stars, .rating .rating-stars {
  display: inline-block;
}

.rating-avg .rating-stars>i, .rating .rating-stars>i {
  color: #E4E7ED;
}

.rating-avg .rating-stars>i.fa-star, .rating .rating-stars>i.fa-star {
  color: #ff0000;
}

.rating li {
  margin: 5px 0px;
}

.rating .rating-progress {
  position: relative;
  display: inline-block;
  height: 9px;
  background-color: #E4E7ED;
  width: 120px;
  margin: 0px 10px;
  border-radius: 5px;
}

.rating .rating-progress>div {
  background-color: #ff0000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
}

.rating .sum {
  display: inline-block;
  font-size: 12px;
  color: #8D99AE;
}

/*-- Reviews --*/

.reviews li {
  position: relative;
  padding-left: 145px;
  margin-bottom: 30px;
}

.reviews .review-heading {
  position: absolute;
  width: 130px;
  left: 0;
  top: 0;
  height: 70px;
}

.reviews .review-body {
  min-height: 70px;
}

.reviews .review-heading .name {
  margin-bottom: 5px;
  margin-top: 0px;
}

.reviews .review-heading .date {
  color: #8D99AE;
  font-size: 10px;
  margin: 0;
}

.reviews .review-heading .review-rating {
  margin-top: 5px;
}

.reviews .review-heading .review-rating>i {
  color: #E4E7ED;
}

.reviews .review-heading .review-rating>i.fa-star {
  color: #ff0000;
}

.reviews-pagination {
  text-align: center;
}

.reviews-pagination li {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.reviews-pagination li:hover {
  background-color: #E4E7ED;
  color: #ff0000;
}

.reviews-pagination li.active {
  background-color: #ff0000;
  border-color: #ff0000;
  color: #FFF;
  cursor: default;
}

.reviews-pagination li a {
  display: block;
}

/*-- Review Form --*/

.review-form .input {
  margin-bottom: 15px;
}

.review-form .input-rating {
  margin-bottom: 15px;
}

.review-form .input-rating .stars {
  display: inline-block;
  vertical-align: top;
}

.review-form .input-rating .stars input[type="radio"] {
  display: none;
}

.review-form .input-rating .stars>label {
  float: right;
  cursor: pointer;
  padding: 0px 3px;
  margin: 0px;
}

.review-form .input-rating .stars>label:before {
  content: "\f006";
  font-family: 'hobo', arial;
  color: #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.review-form .input-rating .stars>label:hover:before, .review-form .input-rating .stars>label:hover~label:before {
  color: #ff0000;
}

.review-form .input-rating .stars>input:checked label:before, .review-form .input-rating .stars>input:checked~label:before {
  content: "\f005";
  color: #ff0000;
}

/*=========================================================
	09 -> CHECKOUT PAGE
===========================================================*/

.billing-details {
  margin-bottom: 30px;
}

.shiping-details {
  margin-bottom: 30px;
}

.order-details {
  position: relative;
  padding: 0px 30px 30px;
  border-right: 1px solid #E4E7ED;
  border-left: 1px solid #E4E7ED;
  border-bottom: 1px solid #E4E7ED;
}

.order-details:before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -15px;
  height: 30px;
  border-top: 1px solid #E4E7ED;
  border-left: 1px solid #E4E7ED;
  border-right: 1px solid #E4E7ED;
}

.order-summary {
  margin: 15px 0px;
}

.order-summary .order-col {
  display: table;
  width: 100%;
}

.order-summary .order-col:after {
  content: "";
  display: block;
  clear: both;
}

.order-summary .order-col>div {
  display: table-cell;
  padding: 10px 0px;
}

.order-summary .order-col>div:first-child {
  width: calc(100% - 150px);
}

.order-summary .order-col>div:last-child {
  width: 150px;
  text-align: right;
}

.order-summary .order-col .order-total {
  font-size: 24px;
  color: #ff0000;
}

.order-details .payment-method {
  margin: 30px 0px;
}

.order-details .order-submit {
  display: block;
  margin-top: 30px;
}

/*=========================================================
	10 -> NEWSLETTER
===========================================================*/

#newsletter.section {
  border-top: 2px solid #E4E7ED;
  border-bottom: 3px solid #ff0000;
  margin-top: 30px;
}

.newsletter {
  text-align: center;
}

.newsletter p {
  font-size: 24px;
}

.newsletter form {
  position: relative;
  max-width: 520px;
  margin: 30px auto;
}

.newsletter form:after {
  content: "\f003";
  font-family: 'hobo', arial;
  position: absolute;
  font-size: 160px;
  color: #E4E7ED;
  top: 15px;
  -webkit-transform: translateY(-50%) rotate(15deg);
  -ms-transform: translateY(-50%) rotate(15deg);
  transform: translateY(-50%) rotate(15deg);
  z-index: -1;
  left: -90px;
}

.newsletter form .input {
  width: calc(100% - 0px);
  margin-right: -0px;
  border-radius: 40px 0px 0px 40px;
}

.newsletter form .newsletter-btn {
  width: 160px;
  height: 40px;
  font-weight: 700;
  background: #ff0000;
  color: #FFF;
  border: none;
  border-radius: 0px 40px 40px 0px;
}

.newsletter .newsletter-follow {
  text-align: center;
}

.newsletter .newsletter-follow li {
  display: inline-block;
  margin-right: 5px;
}

.newsletter .newsletter-follow li:last-child {
  margin-right: 0px;
}

.newsletter .newsletter-follow li a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.newsletter .newsletter-follow li a:hover, .newsletter .newsletter-follow li a:focus {
  background-color: #E4E7ED;
  color: #ff0000;
}

/*=========================================================
	11 -> FOOTER
===========================================================*/

#footer {
  background: #ff0000;
  color: #ffffff;
}

#bottom-footer {
  background: #ff0000;
}

.footer {
  margin: 30px 0px;
}

.footer .footer-title {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 18px;
  margin: 0px 0px 30px;
}

.footer-links li+li {
  margin-top: 15px;
}

.footer-links li a {
  color: #ffffff;
}
.footer-links li a:hover {
  color: #ffffff;
}
.footer-links li i {
  margin-right: 15px;
  color: #ffffff;
  width: 14px;
  text-align: center;
}

.footer-links li a:hover {
  color: #ffffff;
}

.copyright {
  margin-top: 30px;
  display: block;
  font-size: 12px;
}

.footer-payments li {
  display: inline-block;
  margin-right: 5px;
}

.footer-payments li a {
  color: #ffffff;
  font-size: 36px;
  display: block;
}
.footer-logo .logo img {
  display: block;
}
/*=========================================================
	12 -> SLICK STYLE
===========================================================*/

/*----------------------------*\
	Arrows
\*----------------------------*/

.slick-prev, .slick-next {
  width: 40px;
  height: 40px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  border-radius: 50%;
  z-index: 22;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  background-color: #ff0000;
  border-color: #ff0000;
}

.slick-prev:before, .slick-next:before {
  font-family: 'hobo', arial;
  color: #2B2D42;
}

.slick-prev:before {
  content: "\f104";
}

.slick-next:before {
  content: "\f105";
}

.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
  color: #FFF;
}

.slick-prev {
  left: -20px;
}

.slick-next {
  right: -20px;
}

/*----------------------------*\
	Dots
\*----------------------------*/

.slick-dots li, .slick-dots li button, .slick-dots li button:before {
  width: 10px;
  height: 10px;
}

.slick-dots li button:before {
  content: "";
  opacity: 1;
  background: #E4E7ED;
  border-radius: 50%;
}

.slick-dots li.slick-active button:before {
  background-color: #ff0000;
}

.custom-dots .slick-dots {
  position: static;
  margin: 15px 0px;
}

/*=========================================================
	13 -> RESPONSIVE
===========================================================*/

@media only screen and (max-width: 1201px) {}

@media only screen and (max-width: 991px) {
  #top-header .header-links.pull-left {
    float: none !important;
  }
  #top-header .header-links.pull-right {
    float: none !important;
    margin-top: 5px;
  }
  .header-logo {
    float: none;
    text-align: center;
  }
  .header-logo .logo {
    display: inline-block;
  }
  #product-imgs {
    margin-bottom: 60px;
    margin-top: 15px;
  }
  #rating {
    text-align: center;
  }
  #reviews {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .section-title .section-nav {
    float: none;
    margin-top: 10px;
  }
  .section-tab-nav li {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 480px) {
  [class*='col-xs'] {
    width: 100%;
  }
  .store-grid {
    float: none;
    margin-top: 10px;
  }
  .store-pagination {
    float: none;
    margin-top: 10px;
  }
}



.carousel-control {
	top: 50%;
	 max-width: 100%;
   color: transparent;
   text-shadow: 0 0px 0px rgba(0, 0, 0, 0);
   background-color:transparent;
   
   z-index: 9;
   background-image:transparent !important;
}
.carousel-control:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  filter: alpha(opacity=0);
  outline: 0;
  opacity: 55;
}
.carousel-control.right {
  background-image:transparent !important;
}
.carousel-control.left {
  background-color:transparent !important;
}


#BtnSuscribir
{
  width: 100%;
  height: 40px;
  font-weight: 700;
  background: #ff0000;
  color: #FFF;
  border: none;
  border-radius: 0px 40px 40px 0px;
	cursor: pointer;
}
.spacer5{clear:both; height:20px;}
.spacer{clear:both; height:5px;}
.spacer7{clear:both; height:15px;}

#PanelDetPedidotitulo
{
	height:90px;	
	width:100%;
	background:#FF0000;	
}
#PanelDetPedidotitulo2
{
	height:40px;	
	width:100%;
	background:#FF0000;	
}
#PanelDetPedido2
{
	height:320px;
	overflow : auto; 
	overflow-y: auto;
	overflow-x: hidden;
	width:100%;
	-webkit-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	-moz-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 ;	
	background:#fff;	
}
.TextTotalCarrito1
{
color :#121213;
font: bold 12px 'hobo', arial;

text-align: left;
cursor:pointer;
margin-LEFT:5px;
margin-top:0px;
}
.TextTituloPedidoCa
{
color :#ffffff;
font: bold 28px 'hobo', arial;	
float:left;
cursor:pointer;
margin-left:15px;
margin-top:0px;
}
.TextCarritoVacio
{
color :#888888;
font-family:'hobo', arial;
font-size :24px;
cursor:pointer;
text-align:center;
margin-top:5%;
}
.TextCarritoVacio1
{
color :#888888;
font-family:'hobo', arial;
font-size :20px;
cursor:pointer;
text-align:center;
margin-top:5%;
}
.TextCarritoVacio11
{
color :#888888;
font-family:'hobo', arial;
font-size :16px;
cursor:pointer;
text-align:justify;
margin:5%;
}

#PanelTotalPedido2
{
	width:100%;	
	height:40px;
	background: transparent; 

}
#PanelTotalPedido
{
	width:100%;	
	height:170px;
	background: #f3f5f3; 
	-webkit-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	-moz-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 ;
}
#PanelTotalPedido1
{
	width:100%;	
	height:190px;
	background: #f5f3f3; 
	
}

#contCarrito
 {  
	background:#E9ECF1;
	margin-top: 0px;
    width:98%;
	min-height:100px;
	float:left;
	margin-left: 15px;
}
#PanelPagarCarrito
 {     
	background:#E9ECF1;
	margin-top: 15px;
	background:#ffffff;
   width:100%;
	min-height:100px;
	margin-left:0em;
	margin-right:0em;
	
}
#contCarritoCta
 {  
	background:#ffffff ; 
	margin-top: 40px;
   width:100%;
	min-height:500px;
	float:left;
}
.spacer100{clear:both; height:5px;}
.spacer{clear:both; height:10px;}
.spacer1{clear:both; height:2px;}
.spacer3{clear:both; height:1px;}
.spacer4{clear:both; height:0.5px;}
.spacer12{clear:both; height:0.1px;}
.spacer5{clear:both; height:20px;}
.spacerconstrucion{clear:both; height:0px;}
.spacerregistro{clear:both; height:0px;}
.spacergrande2{clear:both; height:30px;}
.spacergrande{clear:both; height:400px;}
.spacer10{clear:both; height:160px;}
.spacer8 { 
   background-color:var(--color-principal);
  height: 6px;
   margin-left: 2.5%;
  margin-right: 2.5%;
position: relative;
}
.spacer9 { 
   background-color:var(--color-principal); 
  height: 1px;
   margin-left: 2.5%;
  margin-right: 2.5%;
position: relative;
}
.spacer6{ 
   background-color:#9b9b9a  ;  
  height: 1px;
margin-top:0px;
 
}

#BtnLoginConfig
{
	border: 0px solid #f74f4f;
	cursor:pointer;	
	background:  #e2510e; 
	float: center;
	margin-left:5%;
	margin-right:0%;
	color: #fff  ;
	width:120px;	
	height:40px;
	text-align: center;
	-webkit-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	-moz-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 ;
	
}
#BtnLoginConfig:hover
{
background-color: #154360  ;
	color: #fff ;
}
#BtnLoginConfig3
{
	border: 0px solid #ff0000;
	cursor:pointer;	
	background:#ff0000; 
	float: right;
	margin-left:0%;
	margin-right:0%;
	color: #fff  ;
	width:100%;	
	height:40px;
	text-align: center;
	border-radius: 8px;
	-webkit-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	-moz-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 ;
	margin-top: 15px;
}
#BtnLoginConfig2:hover
{
background-color: #ffffff  ;
	color: #fff ;
}
#BtnLoginConfig56
{
	border: 0px solid #ff0000;
	cursor:pointer;	
	background:  #ffffff; 
	float: right;
	margin-left:0%;
	margin-right:0%;
	color: #ff0000  ;
	width:100%;	
	height:40px;
	text-align: center;
	margin-top: 15px;
}
#BtnLoginConfig2
{
	border: 0px solid #ff0000;
	cursor:pointer;	
	background:  #ffffff; 
	float: right;
	margin-left:0%;
	margin-right:0%;
	color: #ff0000  ;
	width:100%;	
	height:40px;
	text-align: center;
	border-radius: 8px;
	-webkit-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	-moz-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 ;
	
}

#BtnLoginConfig1
{
  margin-top: 15px;
	border-radius: 8px;
	border: 0px solid #ff0000;
	cursor:pointer;	
	background:  #ff0000; 
	float: center;
	margin-left:3%;
	margin-right:2%;
	color: #fff  ;
	width:94%;	
	height:40px;
	text-align: center;
	-webkit-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	-moz-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 ;
	
}

#contenedorloginConfig
 {
    min-height: 250px; 	 
    background: white;
	width: 350px; 
	 position: fixed;
	 margin: 0 auto;
	 z-index: 9999999;
	top:15%;
	left:38%;
	-webkit-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	-moz-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 ;
	border-radius: 7px;		
background: rgba(226,226,226,1);


}
.TextTablaEstadis2
{
color :#05203b;
font-family:var( --font-principal);
font-size :16px;
text-align: center;
cursor:pointer;
margin-left:15px;
margin-right:10px;
margin-top:20px;
}
.textotablaDpto5
{
margin-top:15px;
color: #ffffff ;
font:bold  14px var( --font-principal);	
 text-align:center;
margin-left:5px;
cursor:pointer;
}
.textotablaDpto4
{
margin-top:10px;
color: #141414 ;
font:bold  14px var( --font-principal);	

 text-align:left;
margin-left:5px;
cursor:pointer;
}
.textotablaDpto
{
margin-top:10px;
color: #ffffff ;
font:bold  14px var( --font-principal);	
 text-align:center;
margin-left:5px;
cursor:pointer;
}
.textotablaDpto1
{
color :#05203b;
font-family:var( --font-principal);
font-size :14px;
float:left;
cursor:pointer;
margin-left:15px;
margin-top:20px;
}
.textotablaDpto2
{
color :#05203b;
font-family:var( --font-principal);
font-size :14px;
float:right;
cursor:pointer;
margin-right:15px;
margin-top:20px;
}
.formulariocantidadcar
{   

}
.formulariocantidadcar input[type='text']
{
	width:80px;
	height:25px;
	border: 1px solid #CED5D7;
	resize: none;
	float:  left;
margin-left:5px;
color :#0B243B;
font: bold 14px var( --font-principal);
text-align:center;
border-radius: 3px;
}
.formulariocantidad
{   

}
.formulariocantidad input[type='text']
{
	width:30px;
	height:30px;
	border: 1px solid #CED5D7;
	resize: none;
	float:  left;
margin-left:5px;
color :#0B243B;
font: bold 14px var( --font-principal);
text-align:center;
}


.formulariocantidad input[type='number']
{
	width:100%;
	height:30px;
	border: 1px solid #CED5D7;
	resize: none;
	float:  left;
margin-left:5px;
color :#0B243B;
font: bold 14px var( --font-principal);
text-align:center;
}

#botoncantidad:hover
{
 color:#656565;
background-color:#EEF5F7;;

}
#botoncantidad
{
margin-left:5px;
background:#fff none repeat scroll 0% 0%;
border: 1px solid #CED5D7;
min-width:20px;
width:10%;	
height:33px;
float: left;
cursor:pointer;
opacity: 0.8;
}
.textosbotoncantidad
{
 color:#656565;
font: bold 12px var( --font-principal);
font-size: 20px;
margin-top: 2.5%;
}

.TextDesCarrito
{
	font:bold 14px var( --font-principal);	
	text-align:justify;
	margin-left:5%;
	margin-top:15px;
	color: #0f0f10;
}
.TextDesCarrito2
{
	font:bold 14px var( --font-principal);	
	text-align:center;
	margin-left:5%;
	margin-top:10px;
	color: #0f0f10;
	cursor:pointer;
}
.TextDesCarrito3
{
	font:bold 14px var( --font-principal);	
	text-align:center;
	margin-left:5%;
	margin-top:20px;
	
	cursor: pointer;
	color: #0f0f10 ;
}
.TextDesCarrito3:hover
{
	color: #0f0f10;
}
#botoncantidadCar
{
margin-left:5px;
background:#181717 none repeat scroll 0% 0%;
border: 1px solid #181717;
width:20px;
height:20px;
float: left;
cursor:pointer;
color: #ffffff;
padding:3px;
border-radius: 5px;
}
#botoncantidadCar:hover
{
 color:#656565;
background-color:#EEF5F7;;

}

#contLoginPagar2444
 {
	min-height: 250px;
    background: white;
    width: 98%;   
    margin-left:15px;
    margin-right: auto;
	border-radius: 7px;
    -webkit-box-shadow: 0 1px 4px #273746, 0 0 0px #273746 inset;
    -moz-box-shadow: 0 1px 4px #273746, 0 0 0px #273746 inset;
    box-shadow: 0 1px 4px #273746, 0 0 0px #273746;
  
    background: rgba(255,255,255,1);
    background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(246,246,246,0.91) 47%, rgba(237,237,237,0.81) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,1)), color-stop(47%, rgba(246,246,246,0.91)), color-stop(100%, rgba(237,237,237,0.81)));
    background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(246,246,246,0.91) 47%, rgba(237,237,237,0.81) 100%);
    background: -o-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(246,246,246,0.91) 47%, rgba(237,237,237,0.81) 100%);
    background: -ms-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(246,246,246,0.91) 47%, rgba(237,237,237,0.81) 100%);
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(246,246,246,0.91) 47%, rgba(237,237,237,0.81) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed', GradientType=1 );
 }
#contLoginPagar
 {
	min-height: 250px;
    background: white;
    width: 350px;   
    margin-left:auto;
    margin-right: auto;
	border-radius: 7px;
    -webkit-box-shadow: 0 1px 4px #273746, 0 0 0px #273746 inset;
    -moz-box-shadow: 0 1px 4px #273746, 0 0 0px #273746 inset;
    box-shadow: 0 1px 4px #273746, 0 0 0px #273746;
  
    background: rgba(255,255,255,1);
    background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(246,246,246,0.91) 47%, rgba(237,237,237,0.81) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,1)), color-stop(47%, rgba(246,246,246,0.91)), color-stop(100%, rgba(237,237,237,0.81)));
    background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(246,246,246,0.91) 47%, rgba(237,237,237,0.81) 100%);
    background: -o-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(246,246,246,0.91) 47%, rgba(237,237,237,0.81) 100%);
    background: -ms-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(246,246,246,0.91) 47%, rgba(237,237,237,0.81) 100%);
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(246,246,246,0.91) 47%, rgba(237,237,237,0.81) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed', GradientType=1 );
 }

 #PanelDeSesion
{
	height:60px;	
	width:100%;
	border-radius: 8px 8px 0px 0px;
	background:#ff0000;	
  z-index: 9999999999999999999;
}
.TextTituloCabecero1
{
color :#ffffff;
font-family:var( --font-principal);
font-size :14px;
float:left;
cursor:pointer;
margin-left:15px;
margin-top:5px;
}
.TextTituloCabecero
{
color :#ffffff;
font-family:var( --font-principal);
font-size :22px;
float:left;
cursor:pointer;
margin-left:15px;
margin-top:0px;
}
.formLogin
{  
width:90%;
height:auto;
margin-left: 5%;
}
.formLogin textarea{
	padding: 5px 3px;
 	 color:#8E8785;
	 min-height:120px;
		width:100%;	
	resize: none;	
	float:  left;
	height:50px;
	color : #1b2631 ; 
	 
 }
.formLogin input[type='text']:focus, .formLogin textarea:focus{
	outline: none;
	 box-shadow:0 0 0 3px #dde9ec;
	 behavior: url(PIE.htc);
 }
.formLogin input[type='text']{
 
	width:100%;	
	resize: none;	
	float:  left;
	height:40px;
	color : #1b2631 ; 

margin-right:0%;
}
.formLogin input[type='text']:hover{
   outline: none;
	
}
.formLogin input[type='number']{
 
	width:100%;	
	resize: none;	
	float:  left;
	height:40px;
	color : #1b2631 ; 

margin-right:0%;
}
.formLogin input[type='number']:hover{
   outline: none;
	
}
.formLogin input[type='date']{
   padding: 5px 3px;
	width:100%;	
	resize: none;	
	float:  left;
	height:40px;
	color : #1b2631 ; 
box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 ;
margin-right:2.5%;
}
.formLogin input[type='date']:hover{
   outline: none;
	
}
.formLogin input[type='password']{
   
	width:100%;	
	resize: none;	
	float:  left;
	height:40px;
	color : #1b2631 ; 

margin-right:0%;

}
.formLogin input[type='password']:focus{
  outline: none;
}
.textoformLogin
{
margin-left:5px;
margin-top:8px;
font:14px "Gotham-Bold";	
float:  left;	
 color: #1a5276;
 cursor:pointer;
}	

.TextoCta3
{
color:rgb(24, 30, 36);
font:12px 'Gotham-Bold';
text-align:left;
margin-left:0px;
cursor:pointer;
}
.TextoCta2
{

color:rgb(24, 30, 36);
font:16px 'Gotham-Bold';
text-align:left;
margin-left:30px;
cursor:pointer;
}
.TextoCta
{

color:rgb(24, 30, 36);
font:16px 'Ingleby_regular';
text-align:left;
margin-left: 1em;
margin-top:5px;
cursor:pointer;
}
.cajaDatosCliente1{
	width:90%;
	 height: 40px;
   border: 1px solid #9A9695;
	   resize: none;
	   color : #1b2631 ; 
	   background: white;
	   float:  left;
   margin-left:0px;
	
   }
.cajaDatosCliente{
	width:100%;
	 height: 40px;
   border: 1px solid #9A9695;
	   resize: none;
	   color : #1b2631 ; 
	   background: white;
	   float:  left;
   margin-left: 0px;
	
   }
   .selectDatosCliente{
	background: white;
	border: none;
	width:100%;
	padding: 2px 0px;
	float:  left; 
	 height: 35px;
	font-size: 14px;
	cursor:pointer;
	color : #1b2631 ; 
	 
   }
   #PanelMetodoEntrega
 {     
	 margin-top:15px ;
	 margin-left: 15px;
	background:#E9ECF1;	
   width:94%;
	height:60px;
	border-radius:0px;
	-webkit-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	-moz-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 ;
}
#PanelMetodoEntrega:hover{
 
	background:#c0c3c7 ;
	border: 0px solid #062c47e7;
 }
 .TextGrafifo
{
color :#2c2c2e;
font-family:var( --font-principal);
font-size :16px;
float:left;
cursor:pointer;
margin-left:15px;

}
.TextGrafifo3
{
color :#445361;
font-family:var( --font-principal);
font-size :24px;
float:right;
cursor:pointer;
margin-right:15px;
margin-top:10px;
}

.TextGrafifo2
{
color :#31C5DF;
font-family:var( --font-principal);
font-size :15px;
float:left;
cursor:pointer;
margin-left:15px;
margin-top:10px;
}
.formularioInisioSesion
{   


}
.formularioInisioSesion  input[type="checkbox"] {
   height: 22px;
	display: inline-block;
	line-height: 18px;
	background-repeat: no-repeat;
	background-position: 0 0;
	vertical-align: middle;
	cursor: pointer;
	margin-top:5px;
	margin-left:5px;
	margin-right:20px;
}
.formularioInisioSesion  input[type="radio"] {
   height: 22px;
	display: inline-block;
	line-height: 18px;
	background-repeat: no-repeat;
	background-position: 0 0;
	vertical-align: middle;
	cursor: pointer;
	margin-top:5px;
	margin-left:10px;
}
.TextGrafifo1
{
color :#1b1d1d;
font-family:var( --font-principal);
font-size :16px;
float:left;
cursor:pointer;
margin-left:15px;
margin-top:10px;
}
#contModalCambio {
    /* Tamaño y Color */
    width: 400px;
    background: transparent;
    border-radius: 20px;
    
    /* Sombreado intenso para que no se pierda con el fondo claro */
    
    
    /* POSICIONAMIENTO FIJO SIN OVERLAY */
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%); /* Lo centra exactamente en el medio */
    
    /* SUPERPOSICIÓN */
    z-index: 2147483647; /* El valor máximo permitido para estar sobre TODO */
    
    /* Estética */
    overflow: hidden;
    animation: slideIn 0.4s ease-out;
}

/* Animación para que entre suavemente */
@keyframes slideIn {
    from { opacity: 0; transform: translate(-50%, -60%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

/*#contModalCambio
{
  width: 400px;
 background:#ffffff;
 margin-top:90px;
   margin-left:35%;	
 margin-bottom:0%;
 margin-right:35%;	
    min-height:80%;
 box-shadow: 2px 5px 5px  #273746, 2px 5px 5px  #273746;
 border-radius: 15px;
 position: fixed;
 z-index: 11119999999999999999999;
}*/
#BtnOpcionesCtaCerrar
{
	border: 0px solid #f74f4f;
	cursor:pointer;	
	background:  #f74f4f; 
	float: center;
	margin:5% 5% 10% 5%;	
	color: #fff  ;
	width:95%;	
	height:120px;
	text-align: center;
	-webkit-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	-moz-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 ;
	
}
#BtnOpcionesCta
{
	border: 0px solid #f74f4f;
	cursor:pointer;	
	background:  #ffffff; 
	float: center;
	margin:5% 5% 10% 5%;	
	color: #ff0000  ;
	width:90%;	
	height:120px;
	text-align: center;
	-webkit-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	-moz-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 ;
	
}
#BtnOpcionesCta:hover
{
background-color: #fff  ;
	color: #fff ;
}
.TextBtnOpcionesCta
{
 padding: 5px 6px;
 color: #ff0000  ;
position:relative;
font-family:var( --font-principal);
font-size :16px;
float: center;
}
.TextBtnOpcionesCta1
{
 padding: 5px 6px;
 color: #ffffff ;
position:relative;
font-family:var( --font-principal);
font-size :16px;
float: center;
}

#PanelMenuConfig{
	
	width:220px;
	height: 100vh;
	background-color:#ff0000;
	/* Esto lo mantendra en su sitio */
	position: fixed;
	top: 0;
	left: 0;
	  color:#fff;
  }
  #PaDet{
	
	width:100%;
	min-height:550px;

  }
  .TextUsuarioMenu
{
color :#ffffff;
/*color :#fff;*/
font-family:var( --font-principal);
font-size :16px;
float:left;
cursor:pointer;
margin-left:5px;
margin-top:7px;
}
.TextUsuarioMenuConfig
{

color :#fff;
font-family:var( --font-principal);
font-size :16px;
float:left;
cursor:pointer;
margin-left:5px;
margin-top:7px;
}
#BtnMenu
{
   /*border: 1px solid rgba( 253, 255, 0, 0.1);*/
	cursor:pointer;	
	background:transparent;
	float:left;
	margin-left:0px;
	margin-right:10px;
	color: #fff  ;
	width:99%;	
	height:40px;	
}

#BtnMenu:hover
{

	-webkit-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	-moz-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 ;
	
}
#BtnMenuCategoriaP
{
	background:transparent; 
	float:left;
	margin-left:15px;
	color: #fff  ;
	width:100%;	
	height:40px;
	cursor: pointer;
}
#BtnMenuCategoria
{
	background:transparent; 
	float:left;
	margin-left:0px;
	color: #fff  ;
	width:100%;	
	min-height:40px;
	cursor:pointer;		

}
#BtnMenuCategoria:hover
{
  background-color: #9dafbf6e;
}
#menuusuario
{
min-width:100%;
height:40px;
float: left;
margin-left:0px;
cursor:pointer;
text-align:center;
border: 1px solid #C8D5D9;
}
#menuusuario:hover
{
text-color:#656565;
background-color:#EEF5F7;

}
.TextMenuDpto1
{
color :#1d2122;
/*color :#fff;*/
font-family:var( --font-principal);
font-size :14px;
text-align:left;
cursor:pointer;
margin-left:0px;
margin-top:5px;
cursor:pointer;		
}

.TextMenuDpto
{
color :#ffffff;
/*color :#fff;*/
font-family:var( --font-principal);
font-size :14px;
text-align:left;
cursor:pointer;
margin-left:0px;
margin-top:5px;
cursor:pointer;		
}
.TextMenuDpto:hover
{
  color: #e2510e;
}
.TextMenuDptoFlechaConfig
{

color :#fff;
font-family:var( --font-principal);
font-size :14px;
text-align:right;
cursor:pointer;
margin-left:15px;
margin-top:5px;
cursor:pointer;		
}
.TextMenuDptoFlecha1
{
color :#1d2122;
/*color :#fff;*/
font-family:var( --font-principal);
font-size :14px;
text-align:right;
cursor:pointer;
margin-left:15px;
margin-top:5px;
cursor:pointer;		
}
.TextMenuDptoFlecha
{
color :#ffffff;
/*color :#fff;*/
font-family:var( --font-principal);
font-size :14px;
text-align:right;
cursor:pointer;
margin-left:15px;
margin-top:5px;
cursor:pointer;		
}
.TextMenuDptoFlechaUp
{
color :#1d2122;
/*color :#fff;*/
font-family:var( --font-principal);
font-size :14px;
text-align:right;
cursor:pointer;
margin-left:15px;
margin-top:5px;
cursor:pointer;		
}

.TextMenu
{
color :white;
font-family:var( --font-principal);
font-size :12px;
float:left;
cursor:pointer;
margin-left:5px;
margin-top:5px;
}
#PanelComplementoCliente
{ 
	margin-left:220px;
    min-height: 100vh;
	width:83%;
 	background:#F7F9F8;
	
}
#PanelComplemento
{ 
	margin-left:0px;
    min-height: 100vh;
	width:100%;
 	background:transparent;
	 position:relative;
	
}
#PanelOpcionCliente
{ 

   min-height:600px;
	width:100%;	 
	background:#ffffff;
}
#PanelTituloOpcioncliente
{ 
	
   
	width:100%;
 	background:#c6cfd8;
}

#PanelCabecerotienda1
{ 
	/*position: absolute;
    z-index: 9;*/
    min-height:30px;
	width:100%; 
	 background:transparent;
	margin-left:0px;
	border-bottom: #d03c07 ;
	
}
	/*background:#070707a8;*/
#PanelCabecerotienda
{ 
	/*position: fixed;
    z-index: 99999999999999999999999;*/
    height:40px;
	width:100%;
 	background:#ff0000;
	margin-left:0px;
	border-bottom: #0c0c0c ;
	
}
#PanelCabecerotiendaMovil
{ 
position: fixed;
    z-index: 1;
    height:50px;
	width:100%;
 	background:#ff0000;
	margin-left:0px;
}
#PanelCabeceroMovil2
{ 
position: fixed;
z-index: 999;
    height:40px;
	width:100%;
	margin-top: 50px;
 	background:#ff0000;
	margin-left:0px;
}
#BtnMenuConfig
{

	color: #fff ;
}
#BtnMenuConfigVolver
{
	width: 40px;
	height:40px;	
	background-color:transparent ;
	float:left;
	margin-right:15px;
	cursor:pointer;
}
#BtnMenuConfigVolver:hover
{
 background-color: #fff; 
	color: #fff ;
}
.TextbtnFactura
{
 padding: 3px 6px;
color :#ff0000;
position:relative;
font-family:var( --font-principal);
font-size :14px;
float: center;
}
.TextbtnFactura1
{
 padding: 3px 6px;
color :#ffffff;
position:relative;
font-family:var( --font-principal);
font-size :14px;
float: center;
}
#PanelTopPedido
{ 
	margin-left:25px;
	margin-right:25px;
	min-height:750px;

 	background:#fff;
	-webkit-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	-moz-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 ;
}
.formPedido
{
	
}

.formPedido input[type='text']{
	margin-top:5px; 
    height: 35px;
	width:95%;
   border: 1px solid #445361;
	resize: none;
	float:  left;
	color : #1b2631  ; 
	margin-left:30px;
	margin-right:3.5%;

	background:transparent;
}
.formPedido input[type='text']:hover{
   outline: none;
	}
	#BtnBuscaP
	{
		padding: 5px 5px;
		margin-top:5px;
		cursor:pointer;	
		background:#ff0000;
		float: left;
		margin-left:8px;
		margin-right:8px;
		color: #fff  ;
		width:40px;	
		height:35px;
		text-align: center;
		-webkit-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
		-moz-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
		box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 ;
		
	}
	#BtnBuscaP:hover
{
background-color: #fff  ;
	color: #ff0000 ;
}
.TextFechaCuadro
{
color :#05203b;
font-family:var( --font-principal);
font-size :16px;
float:left;
cursor:pointer;
margin-left:15px;
margin-top:0px;
}
.TextFechaCuadro1
{
color :#05203b;
font-family:var( --font-principal);
font-size :16px;
float: right;;
margin-left:15px;
margin-top:0px;
}
.textoTotalcuadro{
	font:bold 24px var( --font-principal);	
	text-align:left;
	margin-left:5%;
	margin-top:5px;
	color: #0e1110;
}
.textoTotalcuadro1{
	font:bold 24px var( --font-principal);	
	text-align:right;
	margin-left:5%;
	margin-top:5px;
	color: #0e1110;
}

#PanelcuadroPedido
{ 
	margin-top:20px;
	margin-right:0px;
	height:230px;	
	width:95%;
 	background:#fff;	
	float:left;
	-webkit-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	-moz-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 ;	
	border-radius:5px;
}
#PanelDetPedido
{
	height:320px;
	overflow : auto; 
	overflow-y: auto;
	overflow-x: hidden;
	width:100%;
	-webkit-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	-moz-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	box-shadow:0 1px 4px  #ffcc00, 0 0 0px  #273746 ;	
}
#PanelDeSesion
{
	height:60px;	
	width:100%;
	border-radius: 8px 8px 0px 0px;
	background:#ff0000;	
}
#PanelDetPedidotitulo
{
	height:90px;	
	width:100%;
	background:#ff0000;	
}
#PanelDetPedidotitulo2
{
	height:40px;	
	width:100%;
	background:#ff0000;	
}
#PanelDetPedido2
{
	height:320px;
	overflow : auto; 
	overflow-y: auto;
	overflow-x: hidden;
	width:100%;
	-webkit-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	-moz-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 ;	
	background:#fff;	
}
.cajaPedidos{
	width:98%;
	 height: 35px;
 	  border: 1px solid #9A9695;
	   resize: none;
	   color: #0e1110;
	   background: white;
	   float: right;;
	   margin-left:15px;
	   margin-top:5px;
   }
  .selectPedidos{
	background: white;
	border: none;
	width:100%;
	float: right; 
	 height: 30px;
	font-size: 14px;
	cursor:pointer;
	color: #0e1110;
	
   }
   .cajaPedidos2{
    width:98%;
     height: 35px;
       border: 1px solid #9A9695;
       resize: none;
       color: #0e1110;
       background: white;
       float: right;;
       margin-right:25px;
       margin-top:5px;
     }

     #contModalglobalMensaje
{
	  background:#ffffff;
   margin-top:15%;
   margin-left:25%;	
   margin-bottom:0px;
   margin-right:25%;	
	height:40%;
   box-shadow: 2px 5px 5px  #273746, 2px 5px 5px  #273746;
}
  #contModalglobal
 {
   	background:#ffffff;
	margin-top:0px;
    margin-left:0%;	
	margin-bottom:0px;
	margin-right:0%;	
     height:100%;
	
	z-index: 3;
}

/***************************************************/  
@media (min-width: 0px) and (max-width: 540px) 
{
  #contModalCambio
  {
    position: absolute;
 
  background: #ffffff;
  padding: 15px;
  -webkit-box-shadow: 0px 0px 0px 2px #E4E7ED;
  box-shadow: 0px 0px 0px 2px #E4E7ED;
  z-index: 9999999999999999999;
   
     margin-left:5%;	
   margin-bottom:0%;
   margin-right:5%;	
   
  }
  .header-search {
    padding: 0px 0px;
  }
  .header-search form .input-select {
    margin-right: -4px;
    width: 100px;
    border-radius: 40px 0px 0px 40px;
  }
  .header-search form .input {
    width: 100px;
    margin-right:-4px;
  }
  
.header-search form .search-btn {
  height: 40px;
  width: 60px;
  
  font-weight: 600;
 
}


#BtnOpcionesCta
{
	
	width:160px;	
	height:120px;
	text-align: center;
	-webkit-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	-moz-box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 inset;
	box-shadow:0 1px 4px  #273746, 0 0 0px  #273746 ;
	margin-right: 15%;
}
#BtnOpcionesCtaCerrar
{

	width:160px;	
	height:120px;

	
}
.spacerregistro{clear:both; height:20px;}
}

#DivcentarFormDatos
{
 min-height: 250px;
  
   width: 90%;   
   margin-left:5%;
   margin-right: auto;
 border-radius: 7px;  
}

#BtnDetalleDptoBus
{
  height: 40px;
  width: 60px;
  background: #ff0000;
  color: #FFF;
  font-weight: 700;
  border: none;
  border-radius: 0px 40px 40px 0px;
	
	
}

#PanelMenu {
  
  min-height: 20px;
  width: 100%;
  background: #FFF;
  color: #FFF;
}

/* Ocultar en pantallas pequeñas (móviles y tablets) */
@media (max-width: 1024px) {
  #PanelMenu {
    display: none;
  }
}
#PanelMenu1
{

  height: 30px;
  width: 100%;
  background: transparent;
  color: #ff0000;
  font:bold 10px var( --font-principal);	
	text-align: center;
  cursor: pointer;

}
#PanelMenu3
{
 
  min-height: 40px;
  width: 100%;
  background: #ffffff;
  color: #ff0000;

	
}
#PanelMenuComp
{
  margin-top: 100px;
  height: 1px;
  width: 100%;
  background: #ff0000;
  color: #FFF;

	
}

.textoDescArticulo
{
	font:bold 12px var( --font-principal);	
	text-align:center;
	margin-left:5%;
	margin-top:8%;
	color: #0f0f10;

}
#solo-en-cel {
  display: none; /* Inicialmente oculto */
}

/* Consulta de medios para pantallas mayores a 768px (ejemplo) */
@media (max-width: 768px) {
  #solo-en-cel {
    display: block; /* Mostrar en pantallas grandes */
  }
}
#solo-en-pc {
  display: none; /* Inicialmente oculto */
}

/* Consulta de medios para pantallas mayores a 768px (ejemplo) */
@media (min-width: 768px) {
  #solo-en-pc {
    display: block; /* Mostrar en pantallas grandes */
  }
}

#PanelTituloCarri
{
	width:100%;	
	height:40px;
	background: #FF0000;
}

.TexttOTALCA
{
color :#f7f2f2;
font-family:var( --font-principal);
font-size :20px;
float:RIGHT;

margin-right:15%;

}
#BtnPagarCarrito
{
	font:bold 28px var( --font-principal);;
	text-align:center;
	cursor:pointer;	
	background: #FF0000; 
	width:100%;	
	height:170px;
	color: #f5f3f1;
	float:left;
	margin-left: 0px;
	padding: 70px 0px;
	
}


.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 1000;
   
}

.toast {
    background-color: #ff0000;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: fadeIn 0.5s ease-in-out;
     width:280px;	
	height:60px;
}

.toast-message {
    margin-right: 20px;
}

.close-button {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}




.main-footer {
  background-color: #ff0000; /* Ajusta este rojo al tono exacto */
  color: white;
  padding: 40px 10% 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 30px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h2.logo {
  font-size: 4 rem;
  margin-bottom: 10px;
  font-weight: bold;
  color: #ffffff !important; /* El !important asegura que nada lo sobreescriba */
}

.footer-column h3 {
color: #ffffff !important; /* El !important asegura que nada lo sobreescriba */
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.0rem;
  opacity: 0.9;
}

.footer-column ul li a:hover {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  font-size: 0.8rem;
}

.social-icons a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
  font-size: 1.2rem;
}
.footer-column p i {
  color: white;       /* Asegura que el icono sea blanco */
  margin-right: 10px; /* Separa el icono del texto */
  font-size: 1rem;    /* Ajusta el tamaño del icono */
  vertical-align: middle;
}

.footer-column p {
  color: white;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
#sk-modulo-factura .sk-factura-top-bar {
    width: 100%;
    max-width: 700px; /* Debe coincidir con el ancho de tu sk-factura-card */
    margin: 0 auto 15px auto; /* Centra el contenedor y da espacio abajo */
    display: flex;
    justify-content: flex-end; /* Alinea el botón a la derecha */
}

/* Usamos prefijos sk- (Suraki) para no chocar con otros estilos de Bootstrap */
/* Contenedor principal del Header */
/* Contenedor principal para alinear todo en una línea */
/* Banner Rojo Superior */
.sk-top-bar {
    background-color: #e31e24 !important;
    color: white !important;
    padding: 0 40px !important;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 65px; /* Altura suficiente para que la barra flote encima */
    font-size: 13px;
}

/* Contenedor Gris de Fondo */
.sk-page-content {
    background-color: #f4f4f4; /* Gris claro de la imagen */
    padding-bottom: 0px;
    position: relative;
}

/* Barra Blanca Flotante (La Card) */
.sk-navbar-card {
    background-color: #ffffff;
    max-width: 95%; /* Un poco menos del 100% para que se vea el margen lateral */
    margin: 0 auto; /* Centrada */
    padding: 12px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
height: 80px;
    /* FORZAR ESTADO FIJO */
    position: fixed !important;
    top: 65px; /* Se pega justo debajo de la roja (que mide 65px) */
    left: 0;
    right: 0;
    z-index: 9998; /* Un nivel por debajo de la roja */
   
}

/* Buscador Estilizado */
.sk-search-pill {
    background-color: #f1f3f5;
    border-radius: 5px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    flex-grow: 1;
    max-width: 350px;
    margin: 0 25px;
}

.sk-search-input {
    border: none !important;
    background: transparent !important;
    outline: none !important;
    width: 100%;
    padding-left: 10px !important;
    font-size: 14px;
}

/* Enlaces del Menú */
.sk-nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.sk-menu-link {
    text-decoration: none !important;
    color: #444 !important;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* Botón Rojo Iniciar Sesión */
.sk-btn-main {
    background-color: #e31e24;
    color: white !important;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
}

/* Contenedor de acciones a la derecha */
.sk-actions-container {
    display: flex !important;
    align-items: center !important;
    padding-left: 50px !important; /* Separación masiva del menú anterior */
}

/* Espacio específico entre el Botón Rojo y el Carrito */
.sk-btn-spacer {
    margin-right: 45px !important; /* Gran separación tras el botón */
}

/* Espacio entre los Iconos (Carrito y Usuario) */
.sk-icons-separator {
    display: flex !important;
    align-items: center !important;
    gap: 35px !important; /* Mayor separación entre iconos */
}

.sk-icon-btn {
    color: #444 !important;
    transition: transform 0.2s, color 0.2s;
    text-decoration: none !important;
}

.sk-icon-btn:hover {
    color: #e31e24 !important;
    transform: scale(1.15); /* Efecto visual de resaltado */
}

/* Contenedor del icono */
.sk-cart-wrapper {
    position: relative;
    display: inline-block;
}

/* El círculo rojo (Badge) */
.sk-cart-badge {
    position: absolute;
    top: -8px;      /* Posición vertical */
    right: -12px;   /* Posición horizontal */
    background-color: #e31e24; /* Rojo Suraki */
    color: white !important;
    font-size: 10px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff; /* Separación visual del icono */
    z-index: 10;
}

/* Separación masiva para que no se vean montados */
.sk-actions-container {
    display: flex !important;
    align-items: center !important;
    gap: 45px !important; /* Espacio extra entre botón e iconos */
    margin-left: 50px;
}

.sk-icon-btn {
    color: #444 !important;
    text-decoration: none !important;
}
/* Estilo base para los enlaces del menú */
.sk-menu-link {
    text-decoration: none !important;
    color: #444 !important; /* Gris oscuro original */
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease; /* Hace que el cambio sea suave */
}

/* Efecto Hover: Cambia a rojo al pasar el mouse */
.sk-menu-link:hover {
    color: #e31e24 !important; /* El mismo rojo de Suraki */
}

/* Contenedor principal del banner */
.sk-newsletter-banner {
    background-color: #1a1a1a !important; /* Fondo casi negro */
    padding: 40px 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    color: white !important;
    border-radius: 0px; /* Cambiar a 10px si lo quieres redondeado */
    margin-top: 0px;
}

/* Sección de texto (Izquierda) */
.sk-newsletter-text h2 {
    font-size: 24px !important;
    font-weight: bold !important;
    margin-bottom: 5px !important;
}



.sk-newsletter-text p {
    font-size: 14px !important;
    color: #b0b0b0 !important; /* Texto gris claro */
    margin: 0 !important;
}

/* Formulario (Derecha) */
.sk-newsletter-form {
    display: flex !important;
    gap: 15px !important;
    align-items: center !important;
}

.sk-newsletter-input {
    background-color: #333 !important; /* Fondo gris oscuro del input */
    border: 1px solid #444 !important;
    color: white !important;
    padding: 12px 20px !important;
    border-radius: 8px !important;
    width: 300px !important;
    font-size: 14px !important;
    outline: none !important;
}

.sk-newsletter-input::placeholder {
    color: #888 !important;
}

/* Botón de Suscribirme */
.sk-newsletter-btn {
    background-color: #e31e24 !important; /* Rojo Suraki */
    color: white !important;
    border: none !important;
    padding: 12px 30px !important;
    border-radius: 8px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
}

.sk-newsletter-btn:hover {
    background-color: #c4191f !important;
}
/* Contenedor principal */
.sk-newsletter-banner {
    background-color: #1a1a1a; /* Color oscuro de tu imagen */
    padding: 40px 20px;
    color: white;
}

.sk-container {
    display: flex;
    flex-wrap: wrap; /* Permite que los elementos bajen en móviles */
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px; /* Espacio entre texto y formulario */
}

/* Texto */
.sk-newsletter-text {
    flex: 1;
    min-width: 300px; /* Evita que se haga demasiado pequeño */
    text-align: left;
}

.sk-newsletter-text h2 {
    color: #4a5d8a; /* Color azulado del título */
    margin-bottom: 10px;
}

/* Formulario */
.sk-newsletter-form {
    flex: 1;
    display: flex;
    min-width: 300px;
}

.sk-newsletter-input {
    flex-grow: 1;
    padding: 12px;
    border: 1px solid #444;
    background: #333;
    color: white;
    border-radius: 4px 0 0 4px;
}

.sk-newsletter-btn {
    padding: 12px 20px;
    background-color: #4a5d8a;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* --- AJUSTES PARA MÓVIL --- */
@media (max-width: 768px) {
    .sk-newsletter-text {
        text-align: center; /* Centrar texto en móvil */
    }

    .sk-newsletter-form {
        flex-direction: column; /* Input arriba, botón abajo */
        width: 100%;
        gap: 10px;
    }

    .sk-newsletter-input, .sk-newsletter-btn {
        border-radius: 4px; /* Bordes redondeados completos en móvil */
        width: 100%;
    }
.sk-navbar-card {
   
    top: 150px !important;/* Se pega justo debajo de la roja (que mide 65px) */
   
}

}
/* Contenedor general de beneficios */
.sk-benefits-section {
    display: flex !important;
    justify-content: center !important;
    gap: 30px !important;
    padding: 50px 20px !important;
    background-color: #f4f4f4 !important; /* Fondo gris claro */
}

/* Tarjeta individual */
.sk-benefit-card {
    background-color: #ffffff !important;
    padding: 30px !important;
    border-radius: 12px !important;
    text-align: center !important;
    flex: 1 !important;
    max-width: 350px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
}

/* Círculo del icono */
.sk-benefit-icon-circle {
    width: 50px !important;
    height: 50px !important;
    background-color: #ffebee !important; /* Rojo muy claro */
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px auto !important;
}

.sk-benefit-icon-circle i {
    color: #e31e24 !important; /* Rojo Suraki */
    font-size: 20px !important;
}

/* Textos de la tarjeta */
.sk-benefit-card h3 {
    font-size: 18px !important;
    font-weight: bold !important;
    color: #1a1a1a !important;
    margin-bottom: 10px !important;
}

.sk-benefit-card p {
    font-size: 13px !important;
    color: #777 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}


/* Tarjeta Base */
/* Tarjeta Base */
.sk-product-card {
    background: #fff;
    border-radius: 15px;
    padding: 10px;
    max-width: 280px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent; /* Borde invisible al inicio */
    font-family: 'Poppins', sans-serif;
    margin: 10px;
}

/* EFECTO HOVER: Marco rojo en toda la tarjeta */
.sk-product-card:hover {
    border: 2px solid #e31e24; 
    transform: translateY(-5px);
}

/* Etiqueta Nuevo */
.sk-badge-new {
    position: absolute;
    top: 15px;
    right: 5px;
    background: #e31e24;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 6px;
}

/* Meta y Títulos */
.sk-brand-badge {
    background: #e31e24;
    color: white;
    font-size: 10px;
    padding: 2px 10px;
    border-radius: 10px;
    font-weight: bold;
}

.sk-product-title { font-size: 18px; font-weight: bold; margin: 10px 0 5px 0; color: #1a1a1a; }
.sk-product-desc { font-size: 13px; color: #777; margin-bottom: 20px; }

/* Footer: Precio y Botones */
.sk-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.sk-price { font-size: 22px; font-weight: bold; color: #e31e24; }

/* Estilo de los Botones de Acción */
.sk-actions-group {
    display: flex;
    align-items: center;
    gap: 15px; /* Separación entre lupa y carrito */
}

/* Botón Lupa (Círculo con borde rojo) */
.sk-btn-view {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #e31e24; /* Borde rojo pedido */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e31e24;
    background: transparent;
    transition: 0.2s;
    cursor: pointer;
}

.sk-btn-view:hover { background: #ffebee; }

/* Botón Carrito (Círculo rojo sólido) */
.sk-btn-add {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e31e24; /* Color rojo pedido */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    transition: 0.2s;
}

.sk-btn-add:hover { background: #c4191f; transform: scale(1.1); }


/* Contenedor de la paginación */
.sk-pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
}

/* Estilo general de los botones */
.sk-page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px; /* Bordes redondeados suaves */
    background-color: #f8f9fa; /* Fondo gris muy claro */
    color: #666 !important; /* Texto gris */
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* Efecto Hover para todos */
.sk-page-link:hover {
    background-color: #e31e24;
    color: white !important;
}

/* Botón Activo (El número donde estás parado) */
.sk-page-link.active {
    background-color: #e31e24 !important; /* Rojo sólido de la imagen */
    color: white !important;
    box-shadow: 0 4px 10px rgba(227, 30, 36, 0.2);
}

/* Botones de Flechas (Anterior/Siguiente) */
.sk-page-nav {
    background-color: #ffffff;
    border: 1px solid #eee;
}

/* Puntos suspensivos (...) */
.sk-page-dots {
    color: #999;
    font-weight: bold;
    padding: 0 5px;
}

/* Contenedor principal de la barra de filtros */
.sk-filter-bar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 20px 0 !important;
    font-family: 'Poppins', sans-serif !important;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

/* Título y Conteo */
.sk-filter-title h2 {
    font-size: 24px !important;
    font-weight: 800 !important;
    margin: 0 !important;
    color: #1a1a1a;
}
@media (max-width: 768px) {
  
/* Título y Conteo */
.sk-filter-title h2 {
    font-size: 14px !important;
    font-weight: 800 !important;
    margin-bottom: 10px;
}
}
.sk-filter-count {
    font-size: 13px;
    color: #777;
    margin-top: 5px;
}

/* Sección derecha (Ordenar y Vistas) */
.sk-filter-actions {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}

.sk-sort-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Selector de Relevancia */
.sk-sort-select {
    background-color: #f8f9fa !important;
    border: 1px solid #eee !important;
    padding: 8px 15px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    color: #444 !important;
    cursor: pointer;
    outline: none !important;
}

/* Botones de Vista (Grid/List) */
.sk-view-buttons {
    display: flex !important;
    gap: 5px !important;
    background: #f8f9fa;
    padding: 4px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.sk-view-btn {
    width: 32px;
    height: 32px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 6px !important;
    color: #999;
    text-decoration: none !important;
    transition: 0.2s;
}

.sk-view-btn.active {
    background: white !important;
    color: #e31e24 !important; /* Rojo Suraki activo */
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Contenedor del ítem en lista */
.sk-product-list-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 15px 25px;
    margin-bottom: 15px;
    border: 2px solid transparent; /* Marco invisible inicialmente */
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* EFECTO HOVER: Aparece el marco rojo */
.sk-product-list-item:hover {
    border-color: #e31e24; /* Rojo Suraki */
    transform: translateX(8px); /* Desplazamiento sutil */
}

/* Imagen a la izquierda */
.sk-list-img-box {
    width: 120px;
    height: 120px;
    min-width: 120px;
    margin-right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sk-list-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Información central */
.sk-list-info {
    flex-grow: 1;
}

.sk-list-category {
    font-size: 11px;
    font-weight: bold;
    color: #999;
    text-transform: uppercase;
}

.sk-list-title {
    font-size: 19px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 5px 0;
}

/* Área de precio y botones (Derecha) */
.sk-list-actions {
    text-align: right;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.sk-list-price {
    font-size: 24px;
    font-weight: bold;
    color: #e31e24;
}

/* Contenedor Lateral de Filtros */
.sk-filter-sidebar {
    width: 280px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-family: 'Poppins', sans-serif;
}

/* Cabecera Roja de Filtros */
.sk-filter-header {
    background: #e31e24; /* Rojo Suraki */
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sk-filter-header h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
}

.sk-btn-clear {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    text-decoration: none;
}

/* Secciones del Filtro */
.sk-filter-section {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.sk-filter-section h4 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #333;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
}

/* Lista de Opciones (Checkboxes) */
.sk-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sk-filter-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.sk-filter-item input {
    accent-color: #e31e24; /* Color rojo para el checkbox */
    margin-right: 12px;
    width: 18px;
    height: 18px;
}

.sk-count {
    color: #bbb;
    margin-left: 5px;
    font-size: 12px;
}

/* Switch Especial "Solo Suraki" */
.sk-brand-switch {
    background: #fff5f5;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #e31e24;
    font-weight: bold;
}

/* Estilo del Rango de Precio */
.sk-price-slider {
    width: 100%;
    accent-color: #e31e24;
    margin-top: 10px;
}

.sk-price-values {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #888;
    margin-top: 8px;
}

.tarjeta-producto {
        transition: all 0.3s ease;
        cursor: pointer;
        display: inline-block; /* Para que se pongan una al lado de la otra */
        margin: 15px; /* Espacio entre tarjetas */
    }
    
    .tarjeta-producto:hover {
        transform: translateY(-10px); /* Efecto de elevarse */
        box-shadow: 0 12px 20px rgba(0,0,0,0.15) !important; /* Sombra más fuerte */
    }

    .tarjeta-producto img {
        transition: transform 0.5s ease;
    }

    .tarjeta-producto:hover img {
        transform: scale(1.05); /* Zoom suave a la imagen */
    }

    .carrito-container {
        display: flex;
        gap: 30px;
        padding: 20px;
        background-color: #f8f9fa;
        font-family: "Inter", sans-serif;
    }
    .lista-productos { 
      margin-bottom: 20px;
      flex: 2; }
    .resumen-pedido { 
        flex: 1; 
        background: white; 
        padding: 25px; 
        border-radius: 15px; 
        height: fit-content;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
    .item-carrito {
        display: flex;
        align-items: center;
        background: white;
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 12px;
        border: 1px solid #eee;
    }
    .item-img { width: 80px; height: 80px; object-fit: contain; margin-right: 20px; }
    .item-info { flex-grow: 1; }
    .item-precio { font-weight: bold; font-size: 1.1em; }
    
    .btn-proceder {
        width: 100%;
        background: #eb3e32;
        color: white;
        border: none;
        padding: 15px;
        border-radius: 10px;
        font-weight: bold;
        margin-top: 20px;
        cursor: pointer;
    }
    .banner-envio {
        background: #eb3e32;
        color: white;
        text-align: center;
        padding: 8px;
        font-size: 14px;
        border-radius: 8px 8px 0 0;
    }


 /* Contenedor principal */
  .category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    font-family: 'Segoe UI', Arial, sans-serif;
  }

  /* El enlace que envuelve todo */
  .category-link {
    text-decoration: none; /* Quita el subrayado */
    color: inherit;
  }

  /* La tarjeta cuadrada */
  .category-card {
    border: 1px solid #ff0000; /* El borde del cuadrado */
    padding: 30px 20px;
    text-align: center;
    background-color: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    height: 240px;
  }

  /* Efecto al pasar el mouse */
  .category-card:hover {
    border-color: #000; /* El borde se oscurece */
   box-shadow: 0 4px 5px #ff0000;
  }

  /* Contenedor de la imagen */
.image-box {
    width: 100%;             /* Ocupa todo el ancho de su columna */
    aspect-ratio: 1 / 1;     /* FUERZA a que sea un cuadrado perfecto (1:1) */
    background-color: transparent; 
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;      /* Un poco más redondeado para un look moderno */
}

.image-box img {
    width: 100%;
    height: 100%;
    /* 'contain' asegura que se vea toda la imagen sin cortes. 
       'cover' la expande para llenar el cuadro (útil si todas tienen el mismo fondo) 
    */
    object-fit: contain; 
    transition: transform 0.3s ease; /* Suavidad si decides poner un efecto hover */
}

/* Ajuste para pantallas muy pequeñas (opcional) */
@media (max-width: 480px) {
    .image-box {
        width: 100%; 
        max-width: 200px; /* Evita que crezca demasiado en teléfonos grandes */
        margin: 0 auto 10px auto; /* Centra el cuadro */
    }
}

  /* Nombre de la categoría */
  .category-name {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #333;
  }

  .product-card { min-width: 160px; max-width: 160px; }
        .promo-badge { background: #FFD700; color: #003399; font-weight: 800; border-radius: 0 0 15px 15px; }
        .shadow-bottom { box-shadow: 0 -2px 10px rgba(0,0,0,0.05); }

    @media (max-width: 767px) {
    /* Forzar que los contenedores no floten mal */
    .col-xs-6 {
        width: 50% !important;
        float: left;
        padding: 5px; /* Menos espacio entre tarjetas */
    }

    /* Hacer la tarjeta más pequeña */
    .shop {
        margin-bottom: 15px !important;
        height: auto !important; 
    }

    /* Ajustar el texto para que quepa en dos columnas */
    .shop .shop-body h4 {
        font-size: 12px !important; /* Texto más pequeño */
        margin-bottom: 5px;
    }

    .shop .shop-body .cta-btn {
        font-size: 10px !important; /* Botón más pequeño */
    }

    /* Ajustar la imagen para que no sea tan alta */
    .shop-img {
        height: 120px !important; /* Altura fija para que todas sean iguales */
        overflow: hidden;
    }
    
    .shop-img img {
        height: 100%;
        object-fit: cover; /* Mantiene la proporción sin deformar */
    }
}

@media (max-width: 767px) {
    /* Ajusta el tamaño de la tarjeta para que no ocupe toda la pantalla */
    .sk-product-card {
       max-width: 300px;
        margin: 20px;
        padding: 15px;
        min-height: 340px; /* Ajusta según tu contenido */
    }

    /* Reduce los textos para que quepan bien */
    .sk-product-title {
        font-size: 14px !important;
        height: 40px; /* Para que todos los títulos midan lo mismo */
        overflow: hidden;
    }

    .sk-price {
        font-size: 18px !important;
    }

    /* Hace que la imagen sea un poco más pequeña en móvil */
    .sk-product-card img {
        height: 120px !important;
    }
}
/* Contenedor que envuelve ambas partes */
.carrito-main-container {
    display: flex;
    flex-wrap: wrap; /* Esto permite que "salten" de línea */
    gap: 20px;
    padding: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Columna de productos (Izquierda en PC, Arriba en Móvil) */
.carrito-columna-izquierda {
    flex: 1;
    min-width: 60%; /* En PC ocupa más espacio */
}

/* Columna de resumen (Derecha en PC, Abajo en Móvil) */
.carrito-columna-derecha {
    flex: 1;
    min-width: 300px; /* Tamaño mínimo para el resumen */
}

/* Estilos para el banner de productos frescos */
.fresco-banner {
    background: #e8f5e9; 
    color: #2e7d32; 
    padding: 10px; 
    border-radius: 8px; 
    font-size: 13px; 
    margin-top: 20px;
}

/* --- AJUSTES ESPECÍFICOS PARA TELÉFONOS --- */
@media (max-width: 768px) {
    .carrito-main-container {
        flex-direction: column; /* Fuerza el orden vertical */
    }

    .carrito-columna-izquierda, 
    .carrito-columna-derecha {
        width: 100%; /* Ocupan todo el ancho de la pantalla */
        min-width: 100%;
    }

    .resumen-pedido {
        margin-top: 20px; /* Separación extra para que no se pegue a la lista */
    }
}
/* Contenedor de la cuadrícula de productos */
.contenedor-productos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); /* Adaptable en PC */
    gap: 15px;
    padding: 10px;
}

/* La tarjeta del producto */
.producto-card {
    background: #fff;
    border-radius: 12px;
    aspect-ratio: 1 / 1.2; /* Esto las mantiene "cuadradas" pero con espacio para texto */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border: 1px solid #eee;
}

/* Ajuste específico para Teléfonos */
@media (max-width: 480px) {
    .contenedor-productos {
        grid-template-columns: 1fr 1fr; /* Fuerza 2 productos por fila */
        gap: 10px;
    }
    
    .producto-card {
        padding: 10px;
        aspect-ratio: 1 / 1.4; /* Ajuste para que quepa el botón y precio en móvil */
    }
    
    .producto-card img {
        max-height: 80px; /* Evita que la imagen empuje el contenido */
        object-fit: contain;
    }
}

/* Contenedor principal */
.sk-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #fff;
    border-bottom: 1px solid #eee;
    gap: 15px;
}

/* Título y contador de resultados */
.sk-filter-title {
    flex: 1;
    min-width: 200px;
}

.sk-filter-title h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.sk-filter-count {
    font-size: 0.9rem;
    color: #666;
}

/* Contenedor de acciones (Selects y Botones) */
.sk-filter-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.sk-sort-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
}

.sk-sort-select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #f9f9f9;
    font-size: 0.9rem;
}

/* Botones de vista (Cuadrícula/Lista) */
.sk-view-buttons {
    display: flex;
    gap: 5px;
}

.sk-view-btn {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #999;
    cursor: pointer;
    background: #fff;
    transition: all 0.3s;
}

.sk-view-btn.active {
    background-color: #fff;
    color: #d32f2f; /* Rojo como en tu imagen */
    border-color: #eee;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* --- AJUSTE ESPECÍFICO PARA TELÉFONO --- */
@media (max-width: 600px) {
    .sk-filter-bar {
        flex-direction: column;
        align-items: flex-start; /* Alinea todo a la izquierda */
    }

    .sk-filter-actions {
        width: 100%;
        justify-content: space-between; /* Separa selects de botones de vista */
        border-top: 1px solid #eee;
        padding-top: 10px;
    }

    .sk-sort-select {
        flex: 1; /* Los selects crecen para llenar el espacio */
        min-width: 120px;
    }

    .sk-filter-title h2 {
        font-size: 1.2rem;
    }
}
/* Contenedor de cada par Etiqueta + Select */
.sk-filter-group {
    display: flex;
    align-items: center; /* Alineación vertical al centro */
    gap: 8px;            /* Espacio entre el texto y el select */
}

/* Ajustes para la barra completa en Móvil */
@media (max-width: 600px) {
    .sk-filter-actions {
        display: flex;
        flex-direction: column; /* Apila los grupos verticalmente */
        gap: 15px;
        width: 100%;
    }

    .sk-filter-group {
        justify-content: space-between; /* Texto a la izquierda, Select a la derecha */
        width: 100%;
    }

    .sk-sort-select {
        width: 60%; /* Ajusta el ancho para que se vea uniforme */
        padding: 8px;
    }

    .sk-view-buttons {
        justify-content: center; /* Centra los botones de vista al final */
        width: 100%;
        border-top: 1px solid #eee;
        padding-top: 10px;
    }
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 120px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
}



#mostrarmodalGlobalini .modal-dialog {
    display: flex;
    align-items: center;
    min-height: calc(100% - 3.5rem); /* Centrado vertical */
}

#mostrarmodalGlobalini .modal-content {
    border-radius: 15px; /* Bordes más suaves */
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* Sombra elegante */
}

/* Personalizar el encabezado */
#mostrarmodalGlobalini .modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* Ajustar el tamaño si es necesario */
@media (min-width: 576px) {
    #mostrarmodalGlobalini .modal-dialog {
        max-width: 500px; /* Ancho personalizado */
        margin: 1.75rem auto;
    }
}
/* Solo si modal-fullscreen no te funciona automáticamente */
#mostrarmodalGlobalini .modal-dialog {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    max-width: none;
}

#mostrarmodalGlobalini .modal-content {
    height: 100%;
    border-radius: 0;
    border: none;
}
/* Prefijo mg- para evitar conflictos */
.carousel-container { position: relative; width: 100%; max-width: 900px; margin: auto; overflow: hidden; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
            .carousel-slide { display: flex; transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1); }
            .carousel-item { min-width: 100%; position: relative; }
            .carousel-item img { width: 100%; display: block; border: none; transition: transform 0.3s; }
            .carousel-item img:hover { transform: scale(1.02); cursor: pointer; }
            
            /* Botones de navegación */
            .nav-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); color: white; border: none; padding: 20px 15px; cursor: pointer; z-index: 10; font-size: 24px; border-radius: 5px; }
            .nav-btn:hover { background: rgba(0,0,0,0.8); }
            .btn-prev { left: 0; }
            .btn-next { right: 0; }
            
            /* Texto sobre imagen */
            .img-caption { position: absolute; bottom: 0; background: rgba(0,0,0,0.7); color: white; width: 100%; padding: 15px; text-align: center; font-size: 1.2rem; }





            /* Contenedor principal para evitar herencias */
.suraki-footer-wrap {
    background-color: #bc1f1f !important; /* Rojo exacto de la imagen */
    color: white !important;
    font-family: 'Arial', sans-serif !important;
    position: relative !important;
   padding-top: 110px !important; 
    overflow: hidden !important;
}

/* Reset interno */
.suraki-footer-wrap * { box-sizing: border-box !important; margin: 0; padding: 0; }

.suraki-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* Onda Superior */
.suraki-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}
.suraki-wave svg {
    width: 100%;
    height: 70px;
    fill: #f8f9fa; /* Color del fondo de tu web arriba del footer */
}

/* Grid */
.suraki-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 30px;
    padding-bottom: 60px;
}

/* Logo y descripción */
.suraki-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.suraki-circle-logo {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
}
.suraki-brand {
    font-size: 2rem;
    font-weight: 900;
}
.suraki-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* Suscripción */
.suraki-subs-box {
    background: rgba(255, 255, 255, 0.12);
    padding: 20px;
    border-radius: 15px;
}
.suraki-subs-box label {
    font-size: 13px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}
.suraki-input-group {
    display: flex;
    background: white;
    border-radius: 30px;
    padding: 5px;
}
.suraki-input-group input {
    border: none;
    background: transparent;
    padding: 8px 15px;
    flex: 1;
    outline: none;
    font-size: 13px;
}
.suraki-input-group button {
    background: #bc1f1f;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
}

/* Títulos con Icono */
.suraki-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Enlaces */
.suraki-links { list-style: none !important; }
.suraki-links li { margin-bottom: 15px; }
.suraki-links a {
    color: white !important;
    text-decoration: none !important;
    font-size: 14px;
    transition: 0.3s;
}
.suraki-links a:hover { opacity: 0.7; }

/* Contacto Row */
.suraki-contact-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 13px;
}
.suraki-icon-bg {
    background: rgba(255,255,255,0.2);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

/* Redes Sociales */
.suraki-social { margin-top: 30px; }
.suraki-social-label { font-size: 14px; font-weight: bold; display: block; margin-bottom: 10px; }
.suraki-social-icons { display: flex; gap: 10px; }
.suraki-social-icons a {
    background: rgba(255,255,255,0.2);
    color: white;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
}
.suraki-social-icons a:hover { background: white; color: #bc1f1f; }

/* Barra inferior */
.suraki-bottom-bar {
    background: rgba(0,0,0,0.1);
    padding: 20px 0;
    font-size: 12px;
}
.suraki-flex-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.suraki-badge-safe {
    background: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 20px;
    margin-right: 15px;
}
.suraki-payments { display: flex; align-items: center; gap: 10px; }
.suraki-cards { display: flex; gap: 10px; background: white; padding: 5px 15px; border-radius: 5px; color: #333; font-size: 18px; }

/* Responsive */
@media (max-width: 992px) {
    .suraki-main-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .suraki-main-grid { grid-template-columns: 1fr; text-align: left; }
    .suraki-logo-section, .suraki-contact-row, .suraki-flex-bottom, .suraki-title2 { justify-content: left; }
    .suraki-flex-bottom { flex-direction: column; gap: 20px; }
}
/* Títulos con Icono */
.suraki-title2 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

/* Caja de suscripción (el contenedor rojo claro) */
.suraki-subs-box {
    background: rgba(255, 255, 255, 0.12);
    padding: 20px;
    border-radius: 15px;
}

/* El formulario que contiene el input y el botón */
.suraki-input-group {
    display: flex;
    align-items: center;
    gap: 10px; /* Espacio entre la barra y el botón circular */
    margin-top: 10px;
}

/* La barra blanca del correo */
.suraki-input-group input {
    background: white;
    border: none;
    padding: 12px 20px;
    border-radius: 30px; /* Bordes muy redondeados */
    flex: 1;
    outline: none;
    font-size: 14px;
    color: #333;
}

/* El botón circular del avioncito */
.suraki-input-group button {
    background: white; /* Fondo blanco */
    color: #bc1f1f;   /* Avioncito rojo */
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%; /* Círculo perfecto */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Sombra suave */
    transition: transform 0.2s ease;
}

.suraki-input-group button:hover {
    transform: scale(1.1); /* Efecto al pasar el mouse */
}

/* Quita el fondo degradado de los controles izquierdo y derecho */
.carousel-control.left, 
.carousel-control.right {
    background-image: none !important;
    filter: none !important;
    background-color: transparent !important;
}

/* Opcional: Si quieres que la flecha no tenga ninguna sombra de texto */
.carousel-control .imnuevo {
    text-shadow: none !important;
}


/*barra de trabajo*/

/* Contenedor tipo Panel/Tarjeta */
.suraki-progress-panel {
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    width: 100%; /* Ajusta según tu diseño lateral */
    overflow: hidden;
   
}

/* Línea estética superior (efecto panel) */
.panel-header-line {
    height: 4px;
    background: linear-gradient(to right, #ff4b2b, #ff416c); /* Rojo Suraki */
    width: 100%;
}

.panel-content {
    padding: 30px 15px;
}

/* Contenedor del Stepper */
.stepper-vertical-container {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Línea que atraviesa los círculos */
.step-connector-line {
    position: absolute;
    top: 20px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.steps-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    z-index: 2;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

/* Círculos base */
.circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    color: #bbb;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.label {
    font-size: 11px;
    font-weight: 600;
    color: #999;
}

/* ESTADO: COMPLETADO (Verde Suraki) */
.step-item.completed .circle {
    background-color: #4caf50;
    border-color: #4caf50;
    color: white;
}
.step-item.completed .label { color: #4caf50; }

/* ESTADO: ACTIVO (Rojo Suraki con Glow) */
.step-item.active .circle {
    background-color: #e53935;
    border-color: #e53935;
    color: white;
    box-shadow: 0 0 12px rgba(229, 57, 53, 0.4);
}
.step-item.active .label { color: #e53935; }




/*carrito nuevo*/
/* Prefijo sk- para total independencia */
.sk-cart-root {
    --sk-red: #e53935;
    --sk-green: #4caf50;
    --sk-gray-bg: #fdfdfd;
    --sk-border: #f0f0f0;
    --sk-shadow: 0 8px 30px rgba(0,0,0,0.05);
    
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
}

.sk-cart-grid {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.sk-cart-items-section { flex: 2; }


/* Tarjeta Base */
.sk-cart-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--sk-border);
    box-shadow: var(--sk-shadow);
    overflow: hidden;
}

/* Header Carrito */
.sk-cart-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f8f8f8;
}

.sk-header-left { display: flex; align-items: center; gap: 10px; }
.sk-icon-red { color: var(--sk-red); font-size: 20px; }
.sk-cart-title { font-size: 20px; font-weight: 800; color: #333; margin: 0; }
.sk-cart-badge {
    background: var(--sk-red); color: white;
    padding: 2px 10px; border-radius: 20px; font-size: 13px; font-weight: bold;
}

.sk-btn-vaciar {
    background: #fff; border: 1px solid #ddd; border-radius: 30px;
    padding: 6px 16px; font-size: 12px; color: #888; cursor: pointer;
    transition: 0.3s;
}

/* Item del Carrito */
.sk-cart-item {
    display: flex;
    align-items: center;
    padding: 20px;
    margin: 15px;
    border-radius: 12px;
    border: 1px solid #f5f5f5;
    transition: 0.3s;
}

.sk-item-selected {
    border-color: rgba(229, 57, 53, 0.3);
    background: rgba(229, 57, 53, 0.01);
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.05);
}

.sk-item-thumb { width: 90px; position: relative; }
.sk-item-thumb img { width: 100%; border-radius: 10px; }
.sk-tag-discount {
    position: absolute; top: -5px; left: -5px;
    background: var(--sk-red); color: #fff; font-size: 10px;
    padding: 2px 6px; border-radius: 5px; font-weight: bold;
}

.sk-item-info { flex: 1; padding: 0 20px; }
.sk-item-name { font-size: 16px; font-weight: 700; color: #333; margin-bottom: 4px; }
.sk-item-meta { font-size: 12px; color: #999; margin-bottom: 8px; display: flex; gap: 15px; }
.sk-stock-label { color: var(--sk-green); font-weight: 600; }

.sk-price-now { font-size: 20px; font-weight: 800; color: var(--sk-red); }
.sk-price-old { font-size: 13px; text-decoration: line-through; color: #ccc; margin-left: 8px; }

/* Controles de Acción */
.sk-item-actions { display: flex; align-items: center; gap: 25px; }

.sk-qty-control {
    display: flex; border: 1px solid #eee; border-radius: 30px; overflow: hidden;
    background: #fff;
}
.sk-qty-control button {
    border: none; background: none; padding: 5px 12px; color: var(--sk-red); cursor: pointer; font-weight: bold;
}
.sk-qty-input { width: 30px; border: none; text-align: center; font-weight: 700; color: #333; outline: none; }

.sk-item-total { font-size: 18px; font-weight: 800; color: #333; min-width: 70px; text-align: right; }
.sk-btn-remove { background: #fee; border: none; color: #fcc; width: 30px; height: 30px; border-radius: 50%; cursor: pointer; }

/* PANEL DE RESUMEN */
.sk-summary-card { padding: 24px; }
.sk-summary-header { display: flex; align-items: center; gap: 10px; margin-bottom: 25px; }
.sk-summary-title { font-size: 18px; font-weight: 800; color: #333; margin: 0; }

.sk-summary-line { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 14px; color: #666; }
.sk-val-green { color: var(--sk-green); font-weight: 700; }
.sk-discount-line { color: var(--sk-red); font-weight: 700; }

.sk-total-block {
    display: flex; justify-content: space-between; align-items: center;
    margin: 25px 0; padding-top: 20px; border-top: 2px dashed #f0f0f0;
}
.sk-total-label { font-size: 18px; font-weight: 800; color: #333; }
.sk-total-val { font-size: 24px; font-weight: 900; color: var(--sk-red); }

.sk-btn-checkout {
    width: 100%; background: var(--sk-red); color: white; border: none;
    padding: 16px; border-radius: 40px; font-size: 15px; font-weight: 800;
    cursor: pointer; box-shadow: 0 6px 20px rgba(229, 57, 53, 0.3);
    transition: 0.3s; display: flex; justify-content: center; align-items: center; gap: 10px;
}
.sk-btn-checkout:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4); }

.sk-secure-badge { text-align: center; margin-top: 15px; font-size: 11px; color: #bbb; }

.sk-coupon-area { margin-top: 30px; }
.sk-coupon-text { font-size: 13px; font-weight: 700; color: #555; margin-bottom: 10px; }
.sk-coupon-input-group { display: flex; gap: 8px; }
.sk-coupon-input { flex: 1; border: 1px solid #eee; padding: 10px 15px; border-radius: 30px; font-size: 13px; outline: none; }
.sk-btn-apply { background: #fff; border: 1px solid var(--sk-red); color: var(--sk-red); padding: 0 20px; border-radius: 30px; font-size: 12px; font-weight: bold; cursor: pointer; }

.srk-back-container {
    margin: 15px 0;
}

.srk-btn-volver {
    /* Diseño Ovalado */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 25px;
    border-radius: 50px; /* Hace el efecto cápsula */
    
    /* Colores y Bordes */
    background-color: #ffffff;
    border: 1.5px solid #e0e0e0;
    color: #666666;
    
    /* Tipografía y Cursor */
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

/* Efecto al pasar el mouse */
.srk-btn-volver:hover {
    background-color: #f8f9fa;
    border-color: #cccccc;
    color: #333333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Ajuste del icono */
.srk-btn-volver i {
    font-size: 12px;
}



.sk-upsell-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 15px;
    font-family: 'Poppins', sans-serif;
}

.sk-upsell-title {
    color: #e53935; /* El rojo de Suraki */
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sk-upsell-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* Tarjeta de Producto */
.sk-upsell-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
     height: 200px;
}

.sk-upsell-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

/* Círculo para la imagen */
.sk-upsell-img-wrap {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Sutil sombra circular */
    border: 1px solid #f9f9f9;
}

.sk-upsell-img-wrap img {
    max-width: 50px;
}

.sk-upsell-name {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.sk-upsell-price {
    color: #e53935;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
}

.sk-upsell-price span {
    color: #999;
    font-size: 13px;
    font-weight: 400;
}

/* Botón Añadir Rojo */
.sk-btn-addn {
    width: 100%;
    background-color: #e53935;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.sk-btn-addn:hover {
    background-color: #c62828;
}

/* Ajuste para móviles */
@media (max-width: 600px) {
    .sk-upsell-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.sk-cart-summary-section {
    /* Mantiene el panel visible al bajar */
    position: -webkit-sticky; /* Soporte para Safari */
    position: sticky;
    top: 120px; /* Distancia desde el borde superior de la pantalla */
    
    /* Crucial para que sticky funcione en Flexbox */
    align-self: flex-start; 
    
    /* Asegura que esté por encima de otros elementos si es necesario */
    z-index: 10;
}




/* 1. BARRA ROJA (Superior) */
.sk-top-bar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 10000;
    /* Mantiene el diseño que ya tienes */
}

/* 2. BARRA BLANCA (Navegación) */
.sk-navbar-card {
    background-color: #ffffff;
    /* Cambiamos de max-width a width 100% */
    width: 100% !important; 
    max-width: 100% !important;
    
    /* Eliminamos márgenes y redondeado para que pegue a los bordes */
    margin: 0 !important;
    border-radius: 0 !important; 
    
    padding: 12px 40px; /* Mantenemos el padding interno para los iconos */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;

    /* Posicionamiento fijo debajo de la roja */
    position: fixed !important;
    top: 40px; 
    left: 0;
    right: 0;
    z-index: 9999;

    /* 👇 AÑADE ESTA LÍNEA 👇 */
    border-bottom: 3px solid #ff0000 !important; 
}




:root {
    --sk-red: #e31e24;
    --sk-gray-text: #666;
    --sk-input-bg: #fff;
    --sk-border: #e0e0e0;
}

.sk-login-container {
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    font-family: 'Poppins', sans-serif;
}

/* Header con Curva */
.sk-login-header {
    background: var(--sk-red);
    padding: 40px 20px 60px;
    text-align: center;
    color: white;
    position: relative;
    /* Crear la curva blanca inferior */
    border-bottom-left-radius: 50% 20%;
    border-bottom-right-radius: 50% 20%;
}

.sk-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
}

.sk-logo-circle {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.sk-login-header h1 { font-size: 24px; font-weight: 700; margin: 0;  color: white;}
.sk-login-header p { font-size: 14px; opacity: 0.9; margin-top: 5px; }

/* Cuerpo */
.sk-login-body {
    padding: 20px 30px 40px;
    margin-top: -20px; /* Sube un poco para entrar en la curva */
}

/* Tabs */
.sk-tabs {
    display: flex;
    background: #f5f5f5;
    padding: 5px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.sk-tab {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    color: var(--sk-gray-text);
    border-radius: 10px;
    transition: 0.3s;
}

.sk-tab.active {
    background: white;
    color: var(--sk-red);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Inputs */
.sk-input-group { margin-bottom: 20px; }
.sk-input-group label { 
    display: block; 
    font-size: 13px; 
    font-weight: 700; 
    margin-bottom: 8px;
    color: #333;
}

.sk-input-wrapper {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--sk-border);
    border-radius: 12px;
    padding: 10px 15px;
    background: var(--sk-input-bg);
}

.sk-input-wrapper i { color: #999; margin-right: 10px; }
.sk-input-wrapper input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
}

.sk-toggle-pass { cursor: pointer; margin-left: 10px; }

/* Opciones y Botón */
.sk-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-bottom: 30px;
}

.sk-checkbox { display: flex; align-items: center; gap: 5px; color: var(--sk-gray-text); }
.sk-forgot { color: var(--sk-red); text-decoration: none; font-weight: 600; }

.sk-btn-submit {
    width: 100%;
    background: var(--sk-red);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(227, 30, 36, 0.3);
}


/* Usamos el prefijo srk- para no afectar otros divs o inputs de la web */
.srk-form-container {
    font-family: 'Segoe UI', Roboto, sans-serif;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.srk-form-card {
    width: 100%;
    width: 500px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.srk-srk-title-only {
   
    color: white;
   
}

.srk-header {
    background-color: #d32f2f; /* Rojo Suraki */
    color: white;
    text-align: center;
    padding: 30px 20px;
    position: relative;
    border-bottom-left-radius: 50% 20%;
    border-bottom-right-radius: 50% 20%;
}

.srk-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    border-radius: 50%;
    cursor: pointer;
}

.srk-logo-placeholder {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.srk-tabs {
    display: flex;
    background: #f5f5f5;
    margin: 20px;
    border-radius: 10px;
    padding: 5px;
}

.srk-tab {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 8px;
    font-weight: bold;
    color: #666;
}

.srk-tab--active {
    background: white;
    color: #d32f2f;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.srk-body { padding: 0 25px 25px; }

.srk-input-group { margin-bottom: 15px; }

.srk-input-group label {
    display: block;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 5px;
}

.srk-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 8px 12px;
}

.srk-input-wrapper input {
    border: none;
    outline: none;
    width: 100%;
    margin-left: 10px;
}

.srk-submit-btn {
    width: 100%;
    background: #d32f2f;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}
/* Estilo para los iconos de Font Awesome dentro del formulario */
.srk-icon {
    color: #757575; /* Gris de la imagen */
    font-size: 18px;
    width: 25px;
    text-align: center;
}

.srk-icon-eye {
    color: #757575;
    cursor: pointer;
    transition: color 0.3s;
}

.srk-icon-eye:hover {
    color: #d32f2f; /* Rojo al pasar el mouse */
}

/* Ajuste del botón de cerrar */
.srk-close-btn i {
    font-size: 20px;
}
/* Contenedor para poner elementos en la misma línea */
.srk-row {
    display: flex;
    gap: 10px; /* Espacio entre el select y el input */
}

/* Anchos proporcionales */
.srk-w-35 { width: 35%; }
.srk-w-65 { width: 65%; }

/* Estilo para el Select (limpio para que no afecte otros) */
.srk-select {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-weight: bold;
    color: #555;
    cursor: pointer;
    appearance: none; /* Quita la flecha por defecto en algunos navegadores */
}

/* Ajuste general de los inputs para que no se deformen en la fila */
.srk-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 8px 12px;
    background: white;
}

.srk-input-wrapper input {
    border: none;
    outline: none;
    width: 100%;
    margin-left: 8px;
    font-size: 14px;
}

.srk-icon-eye {
    cursor: pointer;
    padding: 5px; /* Aumenta el área de clic */
    transition: transform 0.2s ease;
}

.srk-icon-eye:active {
    transform: scale(0.9); /* Efecto visual de pulsado */
}

/* Texto informativo debajo del título */
.srk-helper-text {
    text-align: center;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 25px 0;
}

/* Enlace para volver */
.srk-footer-link {
    text-align: center;
    margin-top: 20px;
}

.srk-footer-link a {
    color: #d32f2f;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.srk-footer-link a:hover {
    text-decoration: underline;
}

/* Ajuste del botón de volver en el header */
.srk-header .srk-close-btn {
    left: 15px; /* Lo movemos a la izquierda para que parezca un botón de "atrás" */
    right: auto;
}
/* Contenedor Principal Centrado */
.srk-delivery-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    background-color: #fdfdfd;
}

/* Tarjeta de Información */
.srk-delivery-card {
    width: 100%;
    max-width: 800px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Cabecera Roja Estilo Suraki */
.srk-delivery-header {
    background-color: #ff0000; /* Rojo puro según tu imagen */
    padding: 30px 40px;
}

.srk-delivery-header h1 {
    color: #ffffff;
    margin: 0;
    font-size: 32px;
    font-weight: 700;
}

/* Cuerpo del texto */
.srk-delivery-body {
    padding: 40px;
    color: #666666;
    line-height: 1.8;
    font-size: 18px;
}

.srk-highlight {
    margin-bottom: 30px;
}

/* Botón "Volver" Moderno */
.srk-delivery-footer {
    margin-top: 40px;
}

.srk-btn-back {
    background: #ffffff;
    color: #ff0000;
    border: 1px solid #dddddd;
    padding: 12px 60px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.srk-btn-back:hover {
    background: #f8f8f8;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}


/* ============================================================
   ESTILO GLOBAL: SURAKI CHECKOUT (ANCHO Y RESPONSIVE)
   ============================================================ */

#SRK_CHECKOUT_SYSTEM {
    all: initial; /* Aislamiento de otros estilos de la web */
    display: block;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f6f8f9; /* Color de fondo sutil */
    padding: 30px 0;
    line-height: 1.5;
}

#SRK_CHECKOUT_SYSTEM * {
    box-sizing: border-box;
}

/* 1. CONTENEDOR PRINCIPAL (Ancho máximo ampliado) */
#SRK_CHECKOUT_SYSTEM .srk-main-wrapper {
    max-width: 1400px; /* Ocupa más espacio en pantalla */
    margin: 0 auto;
    padding: 0 40px;
}

#SRK_CHECKOUT_SYSTEM .srk-flex-layout {
    display: flex;
    gap: 40px; /* Espacio generoso entre las dos columnas */
    align-items: flex-start;
}

/* 2. COLUMNA DE DATOS (Izquierda - Flexible) */
#SRK_CHECKOUT_SYSTEM .srk-data-column {
    flex: 1; /* Permite que esta columna se estire según el ancho */
}

#SRK_CHECKOUT_SYSTEM .srk-section-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid #eee;
}

#SRK_CHECKOUT_SYSTEM .srk-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

#SRK_CHECKOUT_SYSTEM .srk-icon-bg {
    background: #fdf2f2;
    color: #ff0000;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
}

#SRK_CHECKOUT_SYSTEM .srk-text h3 { margin: 0; font-size: 20px; color: #1a1a1a; font-weight: 700; }
#SRK_CHECKOUT_SYSTEM .srk-text p { margin: 4px 0 0; font-size: 14px; color: #777; }

/* 3. INPUTS Y FORMULARIOS */
#SRK_CHECKOUT_SYSTEM .srk-input-row {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

#SRK_CHECKOUT_SYSTEM .srk-control {
    flex: 1;
    margin-bottom: 18px;
}

#SRK_CHECKOUT_SYSTEM label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #444;
    margin-bottom: 8px;
    text-transform: uppercase;
}

#SRK_CHECKOUT_SYSTEM .srk-field-icon {
    display: flex;
    align-items: center;
    background: #fcfcfc;
    border: 1.5px solid #e8e8e8;
    border-radius: 12px;
    padding-left: 15px;
    transition: 0.3s ease;
}

#SRK_CHECKOUT_SYSTEM input, 
#SRK_CHECKOUT_SYSTEM select {
    width: 100%;
    padding: 14px 15px;
    border: 1.5px solid #e8e8e8;
    border-radius: 12px;
    background: #fcfcfc;
    font-size: 15px;
    outline: none;
}

#SRK_CHECKOUT_SYSTEM .srk-field-icon input {
    border: none !important;
    background: transparent !important;
}

#SRK_CHECKOUT_SYSTEM .srk-field-icon i { color: #aaa; font-size: 16px; }

#SRK_CHECKOUT_SYSTEM .srk-field-icon:focus-within {
    border-color: #ff0000;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.05);
}

/* 4. COLUMNA DE RESUMEN (Derecha - Fija) */
#SRK_CHECKOUT_SYSTEM .srk-summary-column {
    width: 420px; /* Ancho optimizado para legibilidad */
}

#SRK_CHECKOUT_SYSTEM .srk-sticky-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    position: sticky;
    top: 20px; /* Se queda fijo al hacer scroll */
    box-shadow: 0 15px 40px rgba(0,0,0,0.07);
}

#SRK_CHECKOUT_SYSTEM .srk-summary-head {
    background: #ff0000;
    color: #ffffff;
    padding: 22px;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    gap: 12px;
}

#SRK_CHECKOUT_SYSTEM .srk-product-list {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
}

#SRK_CHECKOUT_SYSTEM .srk-prod-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f2f2f2;
}

#SRK_CHECKOUT_SYSTEM .srk-prod-img {
    width: 55px; height: 55px;
    background: #f9f9f9;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
}

#SRK_CHECKOUT_SYSTEM .srk-prod-meta strong { display: block; font-size: 15px; color: #333; }
#SRK_CHECKOUT_SYSTEM .srk-prod-meta span { font-size: 12px; color: #999; }
#SRK_CHECKOUT_SYSTEM .srk-prod-price { margin-left: auto; font-weight: 800; color: #1a1a1a; }

/* 5. TOTALES Y BOTÓN */
#SRK_CHECKOUT_SYSTEM .srk-bill-details { padding: 0 25px 25px; }
#SRK_CHECKOUT_SYSTEM .srk-bill-line { display: flex; justify-content: space-between; margin-bottom: 12px; color: #555; }
#SRK_CHECKOUT_SYSTEM .srk-green { color: #2e7d32; font-weight: 700; }
#SRK_CHECKOUT_SYSTEM .srk-divider { border: 0; border-top: 1px dashed #ddd; margin: 20px 0; }

#SRK_CHECKOUT_SYSTEM .srk-usd { font-size: 34px; font-weight: 800; color: #ff0000; line-height: 1; }
#SRK_CHECKOUT_SYSTEM .srk-bs { font-size: 13px; color: #888; margin-top: 5px; text-align: right; }

#SRK_CHECKOUT_SYSTEM .srk-btn-order {
    width: 100%;
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.2);
}

#SRK_CHECKOUT_SYSTEM .srk-btn-order:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

#SRK_CHECKOUT_SYSTEM .srk-badge-secure {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; font-size: 12px; color: #2e7d32; margin-top: 15px; font-weight: 600;
}

/* 6. RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    #SRK_CHECKOUT_SYSTEM .srk-flex-layout { flex-direction: column; }
    #SRK_CHECKOUT_SYSTEM .srk-summary-column { width: 100%; }
    #SRK_CHECKOUT_SYSTEM .srk-main-wrapper { padding: 0 20px; }
}

@media (max-width: 600px) {
    #SRK_CHECKOUT_SYSTEM .srk-input-row { flex-direction: column; gap: 0; }
    #SRK_CHECKOUT_SYSTEM .srk-section-box { padding: 20px; }
}



#SRK_PAYMENT_SYSTEM {
    all: initial;
    display: block;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f6f8f9;
    padding: 40px 0;
    color: #333;
}

#SRK_PAYMENT_SYSTEM * { box-sizing: border-box; }

.srk-main-wrapper {
    max-width: 1400px; /* Ancho máximo amplio */
    margin: 0 auto;
    padding: 0 40px;
}

.srk-flex-layout {
    display: flex;
    gap: 35px;
    align-items: flex-start;
}

/* COLUMNA IZQUIERDA */
.srk-method-column { flex: 1; }

.srk-section-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.03);
    border: 1px solid #eee;
}

.srk-section-header { display: flex; align-items: center; gap: 15px; margin-bottom: 30px; }

.srk-icon-bg {
    background: #fdf2f2; color: #ff0000;
    width: 45px; height: 45px; display: flex; align-items: center; justify-content: center;
    border-radius: 12px; font-size: 20px;
}

/* LISTA DE OPCIONES (BINANCE INCLUIDO) */
.srk-options-list { display: flex; flex-direction: column; gap: 12px; }

.srk-pay-item { cursor: pointer; display: block; }

.srk-pay-item input { display: none; } /* Ocultamos radio original */

.srk-pay-inner {
    display: flex; align-items: center;
    padding: 15px 20px;
    border: 1.5px solid #f0f0f0;
    border-radius: 15px;
    transition: all 0.2s ease;
}

.srk-pay-item:hover .srk-pay-inner { background: #fafafa; border-color: #ddd; }

/* Efecto cuando se selecciona */
.srk-pay-item input:checked + .srk-pay-inner {
    border-color: #ff0000;
    background: #fffafa;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.05);
}

.srk-icon-circle {
    width: 42px; height: 42px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px; margin-right: 15px;
}

/* Colores de iconos */
.bank { background: #0d47a1; }
.mobile { background: #00c853; }
.zelle { background: #673ab7; }
.binance { background: #f3ba2f; color: #000 !important; } /* Amarillo Binance */
.cash { background: #2e7d32; }

.srk-name { flex: 1; font-weight: 600; color: #444; font-size: 16px; }

.srk-badge {
    padding: 4px 12px; border-radius: 8px; font-size: 11px; font-weight: 800;
}
.red { background: #ffebee; color: #d32f2f; }
.green { background: #e8f5e9; color: #2e7d32; }
.yellow { background: #fff9c4; color: #827717; }

/* COLUMNA DERECHA */
.srk-info-column { width: 450px; }

.srk-data-card {
    background: #fff; border-radius: 20px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06); margin-bottom: 20px;
}

.srk-data-header { background: #e62e2e; color: #fff; padding: 18px 25px; font-weight: 700; }

.srk-tabs { display: flex; border-bottom: 1px solid #eee; background: #fff; }
.srk-tabs span {
    flex: 1; padding: 12px; text-align: center; font-size: 12px; 
    font-weight: 700; color: #999; cursor: pointer;
}
.srk-tabs span.active { color: #ff0000; border-bottom: 2px solid #ff0000; }

.srk-data-body { padding: 25px; }
.srk-alert-box { border: 1.5px solid #ff0000; border-radius: 12px; padding: 15px; position: relative; }
.srk-alert-box strong:first-child { 
    display: block; background: #ff0000; color: #fff; padding: 5px 12px; 
    margin: -15px -15px 15px; border-radius: 10px 10px 0 0; 
}
.srk-alert-box ul { list-style: none; padding: 0; margin: 0; }
.srk-alert-box li { font-size: 13px; margin-bottom: 5px; border-bottom: 1px solid #f9f9f9; }

/* BOTONES */
.srk-nav-group { display: flex; gap: 15px; margin-top: 20px; }
.srk-btn-vol, .srk-btn-sig {
    flex: 1; padding: 16px; border-radius: 30px; font-weight: 700; cursor: pointer; transition: 0.3s;
}
.srk-btn-vol { background: #fff; border: 1px solid #ddd; color: #888; }
.srk-btn-sig { background: #ff0000; border: none; color: #fff; box-shadow: 0 4px 15px rgba(255,0,0,0.2); }

.srk-help-card {
    background: #fff; padding: 20px; border-radius: 20px; text-align: center; border: 1px solid #eee; margin-bottom: 20px;
}
.srk-wa-button { color: #ff0000; font-weight: bold; text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .srk-flex-layout { flex-direction: column; }
    .srk-info-column { width: 100%; }
    .srk-main-wrapper { padding: 0 20px; }
}



.payment-card {
            background: white;
            width: 100%;
         
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            overflow: hidden;
        }

        /* --- Alerta Superior --- */
        .info-banner {
            background-color: var(--bg-info);
            padding: 15px 20px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            border-bottom: 1px solid #d1e9ff;
        }

        .info-banner i {
            color: var(--blue-info);
            font-size: 20px;
            margin-top: 2px;
        }

        .info-banner p {
            margin: 0;
            color: var(--blue-info);
            font-size: 14px;
            line-height: 1.4;
        }

        .content {
            padding: 25px;
        }

        /* --- Secciones --- */
        section {
            margin-bottom: 25px;
        }

        .section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--red-suraki);
            margin-bottom: 15px;
        }

        .section-title i {
            font-size: 18px;
        }

        .section-title h2 {
            font-size: 16px;
            font-weight: 700;
            margin: 0;
            text-transform: uppercase;
        }

        /* --- Filas de Datos --- */
        .data-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .label {
            color: var(--text-gray);
            font-size: 14px;
        }

        .value-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .value {
            font-weight: 700;
            font-size: 14px;
            color: var(--text-dark);
        }

        .btn-copy {
            background: #f8f9fa;
            border: 1px solid #ddd;
            padding: 5px 10px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
            color: #555;
            transition: all 0.2s;
        }

        .btn-copy:hover {
            background: #e9ecef;
            border-color: #ccc;
        }

        /* --- Monto Final --- */
        .amount-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
        }

        .amount-value {
            color: var(--red-suraki);
            font-size: 22px;
            font-weight: 800;
        }

        /* --- Input de Referencia --- */
        .ref-instruction {
            font-size: 12px;
            color: #999;
            margin: 0 0 10px 0;
            font-style: italic;
        }

        .ref-input {
            width: 100%;
            box-sizing: border-box;
            padding: 15px;
            border: 2px solid #eee;
            border-radius: 8px;
            text-align: center;
            font-size: 20px;
            font-family: monospace;
            background: #fafafa;
            outline: none;
            transition: border-color 0.3s;
        }

        .ref-input:focus {
            border-color: var(--red-suraki);
            background: white;
        }

        /* --- Upload Area --- */
        .upload-area {
            border: 2px dashed #ccc;
            border-radius: 10px;
            padding: 30px 20px;
            text-align: center;
            cursor: pointer;
            background: #fdfdfd;
            transition: all 0.3s;
        }

        .upload-area:hover {
            border-color: var(--red-suraki);
            background: #fff8f8;
        }

        .upload-area i {
            font-size: 40px;
            color: #bbb;
            margin-bottom: 15px;
        }

        .upload-area p {
            margin: 0;
            font-size: 14px;
            font-weight: 600;
            color: #444;
        }

        .upload-area span {
            font-size: 12px;
            color: #aaa;
        }

        hr.dashed {
            border: 0;
            border-top: 1px dashed #ddd;
            margin: 25px 0;
        }

        #header {
    padding-top: 5px; /* Padding ligero */
    padding-bottom: 5px;                
}

@media (min-width: 724px) {
/* 3. EL TRUCO PARA NO DEFORMAR LA WEB */
body {
    /* Sumamos la altura de la roja (65px) + espacio para la blanca */
    /* Este padding empuja TODO el contenido hacia abajo para que nada se tape */
    padding-top: 120px !important; 
}
}


/* Base para pantallas pequeñas (Celulares) */
.sk-cart-grid {
    display: flex;
    flex-direction: column; /* Apila secciones verticalmente */
    gap: 20px;
    padding: 10px;
}

/* Ajustes para elementos individuales */
.sk-cart-item {
    display: flex;
    flex-wrap: wrap; /* Permite que los elementos bajen si no hay espacio */
    gap: 10px;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.sk-item-thumb {
    width: 60px; /* Tamaño más pequeño en celular */
}

.sk-item-info {
    flex: 1; /* Toma el espacio restante */
    min-width: 150px; /* Evita que se encoja demasiado */
}

.sk-item-actions {
    width: 100%; /* Acciones ocupan todo el ancho abajo */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

/* Pantallas Medianas (Tablets) */
@media (min-width: 768px) {
    .sk-cart-grid {
        flex-direction: row; /* Columnas lado a lado */
        align-items: flex-start;
    }

    .sk-cart-items-section {
        flex: 2; /* Carrito ocupa 2/3 */
    }

    .sk-cart-summary-section {
        flex: 1; /* Resumen ocupa 1/3 */
        position: sticky; /* Se queda fijo al hacer scroll */
        top: 20px;
    }

    .sk-item-actions {
        width: auto; /* Acciones vuelven a la derecha */
        flex-direction: column;
        gap: 10px;
    }
}
