*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
        font-family: "Be Vietnam Pro", sans-serif;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

footer {
  margin-top: auto;
}


h1, h2, h3, h4, h5, h6 {
    color: #000;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    font-style: normal;
}

.container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
[class*="coll"] {
  padding: 0 15px;
  box-sizing: border-box;
  flex: 0 0 auto;
}
.coll1 { width: 8.3333%; }
.coll2 { width: 16.6666%; }
.coll3 { width: 25%; }
.coll4 { width: 33.3333%; }
.coll5 { width: 41.6666%; }
.coll6 { width: 50%; }
.coll7 { width: 58.3333%; }
.coll8 { width: 66.6666%; }
.coll9 { width: 75%; }
.coll10 { width: 83.3333%; }
.coll11 { width: 91.6666%; }
.coll12 { width: 100%; }
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }
  [class*="coll"] {
    width: 100%;
  }
}
.logotext a{
  color: #000;
  text-decoration: none
}
.logotext span{
 text-transform: uppercase;
  display: block;
  font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
}
.logotext span.headl2{
      font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 1.2;
    text-transform: uppercase;
}

header .container > .row{
  justify-content: space-between
}

header{
  padding: 20px 0;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

a{
  text-decoration: none;
  color: #ab0101;
}

 ul li{
   list-style: none;
 }

header ul li {
  float: left;
  margin-right: 30px;
}
header ul li:last-child{
  margin-right: 0;
}

header .menuarea{
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: end;
  margin-right: 22px;
}

header ul li a{
    font-size: 18px;
    text-transform: uppercase;
    color: #000000;
  transition: .3s;
  position: relative;
}

header ul li a:after{
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ab0101;
  display: none;
}


header ul li a:hover{
   color: #ab0101;
}

header ul li a:hover:after{
  display: block;
}

header ul li.current-menu-item a{
  color: #ab0101;
  position: relative;
}

header ul li.current-menu-item a:after{
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ab0101;
  display: block
}

.cartandsearch{
  display: flex;
  justify-content: space-between;
  color: #ab0101;
  height: 100%;
  align-items: center;
  padding-left: 14px;
  width: 94px;
  float: right;
}

.cartandsearch .seach_area svg{
  color: #ab0101;
  width: 20px;
  fill: #ab0101;
}

.headerrightrow{
  height: 100%;
  position: relative;
  flex-direction: row;
}

.cartandsearch .seach_area{
    cursor: pointer;
    position: relative;
}



.search-bar {
  position: absolute;
  width: 420px;
  display: flex;
  bottom: -17px;
  right: 10px;
  z-index: 9;
}

.search-bar input {
   width: 100%;
    height: 40px;
    font-size: 18px;
    line-height: 100%;
    padding: 10px 15px;
    margin: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -webkit-appearance: none;
    box-sizing: border-box;
  color: #544;
  font-style: italic;
  
 
}

.search-bar button {
  width: 45px;
  background: #111;
  color: #fff;
  border: 1px solid #111;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 9;
}

.search-bar button:hover {
  background: #333;
}

.search-bar svg{
  width: 20px;
  fill: white;
}

.search-bar button:before{
 content: '';
    position: absolute;
    border-width: 8px 8px 8px 0;
    border-style: solid solid solid none;
    border-color: transparent #333;
    top: 12px;
    left: -6px;
    -webkit-transition: 250ms 
ease-in-out;
    -moz-transition: 250ms ease-in-out;
    -ms-transition: 250ms ease-in-out;
    -o-transition: 250ms ease-in-out;
    transition: 250ms 
ease-in-out;
}




.search-bar input:focus {
    outline: 0;
    background: #fff;
    box-shadow: 0 0 9px 1px rgba(0,0,0,.06);
    -webkit-transition: 150ms ease-in;
    -moz-transition: 150ms ease-in;
    -ms-transition: 150ms ease-in;
    -o-transition: 150ms ease-in;
    transition: 150ms ease-in
}

.search-bar input::placeholder {
    color: #999;
    font-weight: 400;
    font-style: italic;
    line-height: normal
}

.search-bar input::-webkit-input-placeholder {
    color: #999;
    font-weight: 400;
    font-style: italic;
    line-height: normal
}

.search-bar input:-moz-placeholder {
    color: #999;
    font-weight: 400;
    font-style: italic;
    line-height: normal
}

.search-bar input::-moz-placeholder {
    color: #999;
    font-weight: 400;
    font-style: italic;
    line-height: normal
}

.search-bar input:-ms-input-placeholder {
    color: #999;
    font-weight: 400;
    font-style: italic;
    line-height: normal
}

.seach_area .searchboxicon{
    position: absolute;
    bottom: -16px;
    right: 0;
    z-index: 5;
    width: 15px;
    height: 15px;
    background: #fff;
    border: 1px solid #ddd;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    display: none;
}

.seach_area .searchboxicon.show{
    display: block;
}

.search-bar{
  display:none;
}

.search-bar.show{
  display: flex;
}
.mobilemenucloser, .mobileiconbar{
  display: none;
}




.mainfooter{
   background-color: #f6f6f6;
    border-style: none;
    border-width: 0;
    background-clip: border-box;
    border-color: rgba(175, 175, 175, 0.46);
    border-top-width: 1px;
  padding: 30px 0
}

footer .ftitle{
 margin-bottom: 10px;
}

footer a{
  color: #111;
}
footer a:hover{
   color: #ab0101;;
}

footer .fmenuarea ul li a{
  color: #111;
  text-transform: uppercase;
  font-size: 18px;
  padding: 5px 0;
  display: inline-block;
  transition: .3s;
}

footer .fmenuarea ul li a:hover{
  color: #ab0101;;
}

.fselectbox select{
  font-size: 18px
}


.select2-container .select2-selection--single {
  height: 45px;
  border: 1px solid #ccc;
  border-radius: 4px;
  /* padding: 8px 10px; */
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 43px;
  right: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 28px;
  font-size: 16px;
  color: #333;
}


.iconandtext{
  margin-top: 15px
}

.iconandtext .iconlistarea{
  display: flex;
  gap: 20px;
  margin-bottom: 15px

}
.iconandtext .iconlistarea:last-child{
  margin-bottom: 0
}

.iconandtext .iconlistarea .icon{
  font-size: 20px;
  color: #ab0101;;
}

.iconandtext .iconlistarea .icontext{
  font-size: 18px
}

.bottomfooter{
  background-color: #ffffff;
    border-style: solid;
    border-width: 0;
    background-clip: border-box;
    border-color: rgba(175, 175, 175, 0.46);
    border-top-width: 1px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
  padding: 20px 0;
  text-align: center
}

.scrolltotop{
    background-color: #ccc;
    background-color: rgba(0, 0, 0, 0.2);
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 44px;
    height: 42px;
    text-align: center;
    z-index: 1003;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: .3s;
  cursor: pointer
}

.scrolltotop:hover{
  opacity: .7;
}


.button{
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  text-transform: uppercase;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 30px;
  padding-right: 30px;
  background: #ab0101;
  background: rgba(171, 1, 1, 1);
  color: #fff;
  transition: .3s;
  display: inline-block;
}

.footerimage img{
  max-width: 100%
}






section.productscatssection{
  padding: 80px 0;
  background-color: #f2f2f2;
}


section.homesection5 .coll6:last-child a:hover{
  text-decoration: none;
}

 .sectiontitle{
  text-align: center;
  margin-bottom: 40px;
}

 .sectiontitle h2{
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0px;
  margin-bottom: 10px
}

section.productscatssection .leftcatsbox{
  border: 1px solid rgba(51, 51, 51, 0.29);
padding: 20px;
}

section.productscatssection .leftcatsbox .title h2{
  font-weight: 700 !important;
  font-size: 32px;
}

section.productscatssection .leftcatsbox .catlists ul li a{
  color: #111;
  font-size: 18px;
  display: block;
  padding: 10px 0;
  transition: .3s;
}

section.productscatssection .leftcatsbox .catlists ul li a:hover{
  color: #ab0101;
}

  section.productscatssection .leftcatsbox .viewallbutton{
    margin-top: 30px;
    overflow: hidden;
    display: flex;
    justify-content: center;
  }

.productbox{
  background-color: #fff;
  padding: 20px;
  border-style: solid;
    border-width: 0;
    background-clip: border-box;
    border-color: #cccccc;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.productbox .img img{
  max-width: 100%;
  height: 350px;
  object-fit: contain;
}
.productbox  .ptitle{
  margin: 15px 0;
}
.productbox h4{
      font-size: 25px;
    line-height: 34px;
  text-align: center;
}
.productbox h4 a{
  color: #111;
}

.productbox .price span{
  font-size: 20px;
}

.productbox .price{
  margin-bottom: 15px;
  text-align: center
}


.productbox .addtocartbtn{
  text-align: center
}

.productbox{
  min-height: 590px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

section.productscatssection .leftcatsbox .viewallbutton a {
    padding: 12px 20px;
}

section.productscatssection .row .row .coll6{
    padding: 10px;
}

section.productscatssection .leftcatsbox{
    margin-top: 10px;
}

section.productscatssection a.button:hover{
    background-color: #ada34e;
    color: #111;
}


.select2-container {
  width: 100% !important;
}

.select2-dropdown {
  z-index: 9999 !important;
}


.price .oldprice {
  text-decoration: line-through;
  color: #999;
  margin-right: 5px;
}
.price .saleprice {
  color: #c00;
  font-weight: bold;
}
.ajax_add_to_cart.loading {
  opacity: 0.6;
  pointer-events: none;
}


.ajax_add_to_cart_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-weight: bold;
  background: #a00;
  color: #fff;
  transition: all 0.3s ease;
}
.ajax_add_to_cart_btn.loading {
  background: #d4cda1;
  cursor: not-allowed;
}
.ajax_add_to_cart_btn .btn-loader {
  margin-left: 6px;
  font-size: 14px;
}
.ajax_add_to_cart_btn.added {
  background: #a00;
}
.view-cart-btn {
  background: #a00;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
}


#search_result {
  display: none;
  position: absolute;
  top: 60px;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  z-index: 9999;
  max-height: 400px;
  overflow-y: auto;
  border-radius: 6px;
}

#search_result .search-section {
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
}

#search_result h4 {
  font-size: 20px;
  text-transform: uppercase;
  color: #111;
  margin: 5px 0 10px;
}

#search_result .result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-radius: 4px;
  transition: background 0.2s;
}

#search_result .search-section a{
  color: #111
}

#search_result .search-section a:hover{
 color:#ab0101;
}

#search_result img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}

section.termssection{
  padding: 80px 0
}

section.termssection .sectiontitle h2{
  font-size: 36px
}


section.termssection h4{
    color: #000000 !important;
    margin-bottom: 10px !important;
  font-size: 24px
}

section.termssection .textcontent{
  margin-bottom: 30px;
  
}

section.termssection .row .coll6{
  padding: 0 30px
}

section.termssection .textcontent p{
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 15px;
}
section.termssection .textcontent p:last-child{
  margin-bottom: 0;
}

section.termssection .textcontent ul{
  padding-left: 30px;
  margin: 0;
  margin-bottom: 15px
}
section.termssection .textcontent ul li{
   font-size: 18px;
   line-height: 30px;
   list-style: disc;
}

section.termssection .textcontent a{
  color: #ab0101;
  text-decoration: underline;
}

section.termssection .textcontent a:hover{
  color: #111;
  text-decoration: none;
}
  section.termssection .textcontent:last-child{
    margin-bottom: 0
  }



.woocommerce-cart-form{
  max-width: 1200px;
  margin: 50px auto
}

.woocommerce-cart-form .shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  border: 1px solid #ddd;
  background: #fff;
  font-family: inherit;
}

.woocommerce-cart-form .shop_table thead {
  
  border-bottom: 2px solid #e5e5e5;
}


.woocommerce-cart-form .shop_table th {
  text-align: left;
  padding: 18px 20px!important;
  font-size: 18px;
  font-weight: 700;
  color: #2b2b2b;
  text-transform: capitalize;
}

.woocommerce-cart-form .shop_table td {
  padding: 16px 20px!important;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
  font-weight: normal;
}

/* === PRODUCT REMOVE === */
.woocommerce-cart-form .product-remove a.remove {
  color: #a00;
  font-size: 24px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s;
}
.woocommerce-cart-form .product-remove a.remove:hover {
  color: #d33;
}

/* === PRODUCT IMAGE === */
.woocommerce-cart-form .product-thumbnail img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  /* border-radius: 6px; */
  border: 1px solid #ddd;
}

/* === PRODUCT NAME === */
.woocommerce-cart-form .product-name a {
  color: #92241a;
  /* font-weight: 600; */
  font-size: 18px;
  text-decoration: none;
  line-height: 1.4;
}
.woocommerce-cart-form .product-name a:hover {
  color: #000;
}

/* === PRICE & SUBTOTAL === */
.woocommerce-cart-form .product-price,
.woocommerce-cart-form .product-subtotal {
  font-weight: 600;
  font-size: 17px;
  color: #000;
}

/* === QUANTITY FIELD === */
.woocommerce-cart-form .quantity input.qty {
  width: 65px;
  height: 42px;
  text-align: center;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: 0.2s;
}
.woocommerce-cart-form .quantity input.qty:focus {
  border-color: #92241a;
}

/* === ACTIONS (COUPON + UPDATE CART) === */
.woocommerce-cart-form .actions {
  background: #fafafa;
  border-top: 2px solid #ddd;
  padding: 20px;
  text-align: right;
}

.woocommerce-cart-form .actions .coupon {
  float: left;
  display: flex;
  align-items: center;
  gap: 10px;
}

.woocommerce-cart-form .actions .coupon input.input-text {
  width: 200px!important;
  height: 45px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 18px;
  padding: 0 15px!important;
}

.woocommerce-cart-form .actions .button {
 font-weight: 700;
    font-size: 18px;
    line-height: 1.6;
    text-transform: uppercase;
    padding-top: 8px!important;
    padding-bottom: 8px!important;
    padding-left: 20px!important;
    padding-right: 20px!important;
    background: #ab0101;
    background: rgba(171, 1, 1, 1);
    color: #fff;
    transition: .3s;
    display: inline-block;
}
.woocommerce-cart-form .actions .button:hover {
  background: #ada34e;
  color: #111;
}



.cart_totals {
  background: #fff;
}

.cart_totals h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #000;
}

.cart_totals table.shop_table {
  width: 100%;
  border-collapse: collapse!important;
}

.cart_totals table.shop_table th,
.cart_totals table.shop_table td {
  border: none;
  padding: 15px 10px;
  vertical-align: middle;
}

.cart_totals table.shop_table th {
  font-weight: 700;
  font-size: 18px;
  color: #000;
}

.cart_totals table.shop_table td {
  font-weight: 600;
  font-size: 18px;
  color: #111;
  text-align: right;
}

.cart_totals table.shop_table tr:not(:last-child) td,
.cart_totals table.shop_table tr:not(:last-child) th {
  border-bottom: 1px solid #efefef;
}

.cart_totals .woocommerce-shipping-methods {
  margin: 10px 0;
  list-style: none;
  padding: 0;
}

.cart_totals .woocommerce-shipping-methods li {
  margin-bottom: 8px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart_totals .woocommerce-shipping-methods input[type="radio"] {
  transform: scale(1.2);
  accent-color: #9d1a0f;
}

.cart_totals .woocommerce-shipping-methods label {
  cursor: pointer;
  color: #111;
}

.cart_totals .woocommerce-shipping-destination {
  margin-top: 5px;
  font-size: 15px;
  color: #333;
}

.cart_totals .woocommerce-shipping-destination strong {
  font-weight: 700;
  color: #000;
}

.cart_totals .shipping-calculator-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  color: #9d1a0f;
  text-decoration: none;
  margin-top: 6px;
  transition: 0.2s;
}

.cart_totals .shipping-calculator-button:hover {
  text-decoration: underline;
}

.cart_totals .order-total td strong {
  font-size: 20px;
  color: #000;
}

.wc-proceed-to-checkout {
  margin-top: 25px;
}

.wc-proceed-to-checkout a.checkout-button {
 font-weight: 700;
    font-size: 18px;
    line-height: 1.6;
    text-transform: uppercase;
    padding-top: 8px!important;
    padding-bottom: 8px!important;
    padding-left: 20px!important;
    padding-right: 20px!important;
    background-color: #ab0101!important;
    background: rgba(171, 1, 1, 1);
    color: #fff;
    transition: .3s;
    display: inline-block;
}

.wc-proceed-to-checkout a.checkout-button:hover {
  background-color: #ada34e!important;
  color: #111!important;
}

















.woocommerce-checkout .woocommerce{
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 15px;
}

.woocommerce-checkout .woocommerce .woocommerce-info{
  border: none;
  padding: 20px;
  font-weight: 700;
}

.woocommerce-checkout .woocommerce .woocommerce-error::before, 
.woocommerce-checkout .woocommerce .woocommerce-info::before,
.woocommerce-checkout .woocommerce  .woocommerce-message::before{
  display: none
}

.woocommerce-checkout .woocommerce .woocommerce-info a:hover{
  color: #111;
  text-decoration: underline
}

  .woocommerce-checkout  div.woocommerce h3 {
        font-size: 30px !important;
    }

 .woocommerce-checkout  div.woocommerce input:focus,
 .woocommerce-checkout  div.woocommerce select:focus,
 .woocommerce-checkout  div.woocommerce textarea:focus{
   border-color: #ada34e!important;
   outline: 0;
 }

 .woocommerce-checkout div.woocommerce h3#order_review_heading{
   margin-bottom: 20px;
 }

 .woocommerce-checkout div.woocommerce  div#customer_details{
   margin-bottom: 50px
 }

 .woocommerce-checkout div.woocommerce table thead th,
 .woocommerce-checkout div.woocommerce table tbody td{
   padding:18px
 }

 .woocommerce-checkout#add_payment_method #payment,
 .woocommerce-checkout .woocommerce-cart #payment, 
 .woocommerce-checkout .woocommerce-checkout #payment{
   background-color: transparent;
   border: 1px solid #dddd
 }


 .woocommerce-checkout div.woocommerce #payment div.payment_box, 
 .woocommerce-checkout div.woocommerce .woocommerce-page #payment div.payment_box {
    background: #f7f7f7;
    color: #000;
    margin: 10px 0 20px;
    text-shadow: none;
    width: 100%;
}


.woocommerce-page ul.products li.product a.button,.woocommerce-page .woocommerce-message a.button,.woocommerce-page .woocommerce-message a.button.wc-forward,.woocommerce-page .woocommerce a.button.wc-forward,.woocommerce-page button.button,.woocommerce-page button.button.alt,.woocommerce-page a.button,.woocommerce-page a.button.alt,.woocommerce-page .woocommerce button[type=submit],.woocommerce-page button[type=submit].alt.disabled {
    color: #fff;
    background-color: #ab0101;
    font-family: "Be Vietnam Pro",sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.6;
    text-transform: uppercase;
    border: 0px none initial;
    border-radius: 0px
}

.woocommerce-page button.button:disabled,.woocommerce-page button.button:disabled[disabled],.woocommerce-page button.alt.disabled {
    padding: 6px 12px
}

.woocommerce-page ul.products li.product a.button:hover,.woocommerce-page .woocommerce-message a.button:hover,.woocommerce-page button.button:hover,.woocommerce-page button.button.alt:hover,.woocommerce-page a.button.alt:hover,.woocommerce-page a.button:hover,.woocommerce-page .woocommerce button[type=submit]:hover,.woocommerce-page button[type=submit].alt.disabled:hover {
    background-color: #ada34e;
    color: #000;
    border: 0px none initial;
    border-radius: 0px;
    border-color: initial
}



.woocommerce-order .woocommerce-thankyou-order-received{
  font-size: 28px;
  margin-bottom: 40px;
  
}

.woocommerce-order ul.order_details li{
  border-top: 1px solid #ddd!important;
  border-bottom: 1px solid #ddd!important;
  padding: 20px;
  margin: 0
}

.woocommerce-order ul.order_details li:first-child{
  border-left: 1px solid #ddd!important;
}

.woocommerce-order ul.order_details li:last-child{
  border-right: 1px solid #ddd;
}

.woocommerce-order .woocommerce-order-details{
  margin-top: 30px
}
.woocommerce-order h2{
  margin-bottom: 10px
}

.woocommerce-order .woocommerce-column--billing-address,
.woocommerce-order .woocommerce-column--shipping-address{
  line-height: 190%
}



.woocommerce-account .woocommerce{
  max-width: 1200px;
  margin: auto;
  padding: 80px 15px;
}

.woocommerce-account .woocommerce:last-child{
  padding-top: 0
}



.woocommerce .woocommerce-MyAccount-navigation ul,.woocommerce-page .woocommerce-MyAccount-navigation ul {
    list-style-type: none;
    margin-bottom: 30px;
    padding-left: 0
}

.woocommerce .woocommerce-MyAccount-navigation ul li,.woocommerce-page .woocommerce-MyAccount-navigation ul li {
    border-top: 1px solid #e6e6e6
}

.woocommerce .woocommerce-MyAccount-navigation ul li:last-child,.woocommerce-page .woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: 1px solid #e6e6e6
}

.woocommerce .woocommerce-MyAccount-navigation ul li a,.woocommerce-page .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 10px 0
}
.woocommerce .woocommerce-MyAccount-navigation ul li a:hover,.woocommerce-page .woocommerce-MyAccount-navigation ul li a:hover{
  color: #111;
  text-decoration: underline
}

.woocommerce-account .woocommerce-MyAccount-content{
  line-height: 190%
}
.woocommerce-account .woocommerce-order-details{
  margin-top: 30px
}

.woocommerce-account form .form-row{
  margin-bottom: 20px
}

.woocommerce-account form.woocommerce-form.woocommerce-form-register.register{
  line-height: 150%
}
.woocommerce-account  .woocommerce-privacy-policy-text{
  margin-bottom: 20px
}

@media(max-width: 768px){
  section.termssection .textcontent{
    text-align: center;
  }
  section.termssection .sectiontitle h2{
    font-size: 24px;
    line-height: 34px
  }
    section.termssection{
      padding: 50px 0;
    }


 .woocommerce-cart-form .shop_table thead {
    display: none;
  }

  .woocommerce-cart-form .shop_table tbody tr {
    display: block;
    margin-bottom: 15px;
    border-bottom: 2px solid #f3f3f3;
    padding-bottom: 15px;
  }

  .woocommerce-cart-form .shop_table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    padding: 10px 15px;
  }

  .woocommerce-cart-form .shop_table td::before {
    content: attr(data-title);
    font-weight: 600;
    color: #555;
  }

  .woocommerce-cart-form .actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .woocommerce-cart-form .actions .coupon {
    flex-direction: column;
    /* align-items: stretch; */
  }

  .woocommerce-cart-form .actions .coupon input.input-text,
  .woocommerce-cart-form .actions .button {
    width: 100%!important;
  }

  .woocommerce-checkout div.woocommerce h3{
    font-size: 24px!important
  }
.woocommerce-checkout .woocommerce{
  padding: 50px 15px;
}

  .woocommerce-order ul.order_details li{
    width: 100%;
    border: 1px solid #ddd!important;
    border-bottom: none!important
  }
    .woocommerce-order ul.order_details li:last-child{
       border: 1px solid #ddd!important;
    }
      .woocommerce-order .woocommerce-column--shipping-address{
        margin-top: 20px
      }

  .woocommerce-account .woocommerce{
  max-width: 1200px;
  margin: auto;
  padding: 50px 15px;
}

.woocommerce-account .woocommerce:last-child{
  padding-top: 0
}

}





.archivesectionforoldglory15s {
  padding: 60px 0;
  background: #fafafa;
  font-family: 'Inter', sans-serif;
}

.archivesectionforoldglory15s .archive-header {
  text-align: center;
  margin-bottom: 40px;
}

.archivesectionforoldglory15s .archive-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.archivesectionforoldglory15s .archive-description {
  color: #555;
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.archivesectionforoldglory15s .archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.archivesectionforoldglory15s .archive-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.archivesectionforoldglory15s .archive-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.archivesectionforoldglory15s .archive-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.archivesectionforoldglory15s .archive-content {
  padding: 20px;
}

.archivesectionforoldglory15s .archive-item-title a {
  color: #111;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

.archivesectionforoldglory15s .archive-item-title a:hover {
  color: #0073aa;
}

.archivesectionforoldglory15s .archive-meta {
  font-size: 14px;
  color: #777;
  margin: 8px 0 12px;
}

.archivesectionforoldglory15s .archive-excerpt {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.archivesectionforoldglory15s .readmore {
  color: #0073aa;
  font-weight: 500;
  text-decoration: none;
}

.archivesectionforoldglory15s .readmore:hover {
  text-decoration: underline;
}

.archivesectionforoldglory15s .pagination {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 40px;
}

.archivesectionforoldglory15s .pagination a,
.archivesectionforoldglory15s .pagination span {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 14px;
  border-radius: 5px;
  background: #fff;
  color: #0073aa;
  border: 1px solid #ddd;
  text-decoration: none;
  transition: background 0.2s ease;
}

.archivesectionforoldglory15s .pagination .current,
.archivesectionforoldglory15s .pagination a:hover {
  background: #0073aa;
  color: #fff;
}


.singlesectionforoldglory15s {
  padding: 70px 0;
  background: #f9f9f9;
  font-family: 'Inter', sans-serif;
}

.singlesectionforoldglory15s .single-article {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  max-width: 850px;
  margin: 0 auto;
}

.singlesectionforoldglory15s .single-header {
  text-align: center;
  margin-bottom: 30px;
}

.singlesectionforoldglory15s .single-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.singlesectionforoldglory15s .single-meta {
  font-size: 14px;
  color: #777;
}

.singlesectionforoldglory15s .single-meta span {
  margin: 0 8px;
}

.singlesectionforoldglory15s .single-thumbnail img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 30px;
}

.singlesectionforoldglory15s .single-content {
  color: #333;
  font-size: 16px;
  line-height: 1.8;
}

.singlesectionforoldglory15s .single-content h2,
.singlesectionforoldglory15s .single-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: #111;
}

.singlesectionforoldglory15s .single-footer {
  margin-top: 40px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.singlesectionforoldglory15s .single-tags {
  margin-bottom: 15px;
  font-size: 14px;
}

.singlesectionforoldglory15s .post-navigation {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.singlesectionforoldglory15s .post-navigation a {
  color: #0073aa;
  text-decoration: none;
}

.singlesectionforoldglory15s .post-navigation a:hover {
  text-decoration: underline;
}

.singlesectionforoldglory15s .single-comments {
  margin-top: 50px;
}




.indexsectionforoldglory15s {
  padding: 60px 0;
  background: #f8f8f8;
  font-family: 'Inter', sans-serif;
}

.indexsectionforoldglory15s .index-header {
  text-align: center;
  margin-bottom: 40px;
}

.indexsectionforoldglory15s .index-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.indexsectionforoldglory15s .index-subtitle {
  color: #666;
  font-size: 15px;
}

.indexsectionforoldglory15s .index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.indexsectionforoldglory15s .index-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.indexsectionforoldglory15s .index-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.indexsectionforoldglory15s .index-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.indexsectionforoldglory15s .index-content {
  padding: 20px;
}

.indexsectionforoldglory15s .index-item-title a {
  color: #111;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

.indexsectionforoldglory15s .index-item-title a:hover {
  color: #0073aa;
}

.indexsectionforoldglory15s .index-meta {
  font-size: 14px;
  color: #777;
  margin: 8px 0 12px;
}

.indexsectionforoldglory15s .index-excerpt {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.indexsectionforoldglory15s .readmore {
  color: #0073aa;
  font-weight: 500;
  text-decoration: none;
}

.indexsectionforoldglory15s .readmore:hover {
  text-decoration: underline;
}

.indexsectionforoldglory15s .pagination {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 40px;
}

.indexsectionforoldglory15s .pagination a,
.indexsectionforoldglory15s .pagination span {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 14px;
  border-radius: 5px;
  background: #fff;
  color: #0073aa;
  border: 1px solid #ddd;
  text-decoration: none;
  transition: background 0.2s ease;
}

.indexsectionforoldglory15s .pagination .current,
.indexsectionforoldglory15s .pagination a:hover {
  background: #0073aa;
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .indexsectionforoldglory15s .index-title {
    font-size: 1.8rem;
  }
  .indexsectionforoldglory15s .index-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .indexsectionforoldglory15s {
    padding: 40px 0;
  }
  .indexsectionforoldglory15s .index-grid {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  }
  .indexsectionforoldglory15s .index-item-title a {
    font-size: 16px;
  }
  .indexsectionforoldglory15s .index-excerpt {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .indexsectionforoldglory15s .index-title {
    font-size: 1.5rem;
  }
  .indexsectionforoldglory15s .index-thumb img {
    height: 160px;
  }
  .indexsectionforoldglory15s .pagination a,
  .indexsectionforoldglory15s .pagination span {
    padding: 6px 10px;
    font-size: 13px;
  }
}




.searchsectionforoldglory15s {
  padding: 60px 0;
  background: #fafafa;
  font-family: 'Inter', sans-serif;
}

.searchsectionforoldglory15s .search-header {
  text-align: center;
  margin-bottom: 40px;
}

.searchsectionforoldglory15s .search-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.searchsectionforoldglory15s .search-title span {
  color: #0073aa;
}

.searchsectionforoldglory15s .search-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.searchsectionforoldglory15s .search-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.searchsectionforoldglory15s .search-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.searchsectionforoldglory15s .search-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.searchsectionforoldglory15s .search-content {
  padding: 20px;
}

.searchsectionforoldglory15s .search-item-title a {
  color: #111;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

.searchsectionforoldglory15s .search-item-title a:hover {
  color: #0073aa;
}

.searchsectionforoldglory15s .search-meta {
  font-size: 14px;
  color: #777;
  margin: 8px 0 12px;
}

.searchsectionforoldglory15s .search-excerpt {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.searchsectionforoldglory15s .readmore {
  color: #0073aa;
  font-weight: 500;
  text-decoration: none;
}

.searchsectionforoldglory15s .readmore:hover {
  text-decoration: underline;
}

.searchsectionforoldglory15s .pagination {
  text-align: center;
  margin-top: 40px;
}

.searchsectionforoldglory15s .pagination a,
.searchsectionforoldglory15s .pagination span {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 14px;
  border-radius: 5px;
  background: #fff;
  color: #0073aa;
  border: 1px solid #ddd;
  text-decoration: none;
  transition: background 0.2s ease;
}

.searchsectionforoldglory15s .pagination .current,
.searchsectionforoldglory15s .pagination a:hover {
  background: #0073aa;
  color: #fff;
}

/* No Results Section */
.searchsectionforoldglory15s .no-results {
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  max-width: 600px;
  margin: 0 auto;
}

.searchsectionforoldglory15s .search-form {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.searchsectionforoldglory15s .search-field {
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 60%;
  font-size: 15px;
}

.searchsectionforoldglory15s .search-submit {
  background: #0073aa;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.2s ease;
}

.searchsectionforoldglory15s .search-submit:hover {
  background: #005f87;
}

/* Responsive */
@media (max-width: 1024px) {
  .searchsectionforoldglory15s .search-title {
    font-size: 1.8rem;
  }
  .searchsectionforoldglory15s .search-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .searchsectionforoldglory15s {
    padding: 40px 0;
  }
  .searchsectionforoldglory15s .search-grid {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  }
  .searchsectionforoldglory15s .search-item-title a {
    font-size: 16px;
  }
  .searchsectionforoldglory15s .search-excerpt {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .searchsectionforoldglory15s .search-title {
    font-size: 1.5rem;
  }
  .searchsectionforoldglory15s .search-thumb img {
    height: 160px;
  }
  .searchsectionforoldglory15s .search-form {
    flex-direction: column;
    gap: 10px;
  }
  .searchsectionforoldglory15s .search-field {
    width: 100%;
  }
  .searchsectionforoldglory15s .pagination a,
  .searchsectionforoldglory15s .pagination span {
    padding: 6px 10px;
    font-size: 13px;
  }
}




.productscatssection .paginationarea {
  text-align: center;
  margin-top: 40px;
}

.productscatssection .paginationarea .page-numbers {
  display: inline-block;
  margin: 0 4px;
  padding: 10px 14px;
  border: 1px solid #ccc;
  color: #a52a2a; /* reddish brown like your screenshot */
  background: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
  min-width: 40px;
  text-align: center;
}

.productscatssection .paginationarea .page-numbers:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.productscatssection .paginationarea .page-numbers.current {
  background: #000;
  color: #fff;
  border-color: #000;
  font-weight: 600;
}

.productscatssection .paginationarea .page-numbers.dots {
  border: none;
  background: transparent;
  color: #555;
  padding: 10px;
  cursor: default;
}

/* Responsive tweak */
@media (max-width: 480px) {
  .productscatssection .paginationarea .page-numbers {
    padding: 8px 10px;
    font-size: 14px;
    margin: 0 2px;
  }
}

section.productscatssection.inarchivepage .leftcatsbox{
  /* max-height: 600px; */
  /* overflow: scroll; */
  /* overflow-x: hidden; */
  margin-top: 0;
}

section.productscatssection.inarchivepage .leftcatsbox .title h2{
  font-size: 25px;
  margin-bottom: 15px;
}

section.productscatssection.inarchivepage .leftcatsbox .product-categories ul{
  padding-left: 10px;
}

section.productscatssection.inarchivepage .leftcatsbox .product-categories ul li a{
  padding: 0
}
section.productscatssection.inarchivepage  .woocommerce-breadcrumb{
  font-size: 16px;
}

section.productscatssection.inarchivepage  .woocommerce-breadcrumb a{
  color: #ab0101!important;
  transition: .3s;
  font-size: 16px;
}

section.productscatssection.inarchivepage  .woocommerce-breadcrumb a:hover{
  color: #ada34e!important;
}


section.productscatssection .leftcatsbox.shoppagecats .catlists ul li a{
  padding: 0;
  line-height: 30px;
}

section.productscatssection .leftcatsbox.shoppagecats .catlists > ul > li{
  margin-bottom: 10px
}

section.productscatssection.inarchivepage  .shopnav{
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #000
}

section.productscatssection.inarchivepage .woocommerce-ordering select{
  font-size: 20px
}

.woocommerce-error li{
	color: #b81c23;
}


.ppc-button-wrapper{
  max-width: 500px;
  margin: 30px auto
}