/*
Theme Name: How To Spa
*/
  :root {
      --white: #FEFEFE;
      --off-white: #F9F7F4;
      --sand: #EDE8E1;
      --clay: #d3c49e;
      --clay-light: #E8C4B8;
      --forest: #3A4A3F;
      --forest-light: #5C7165;
      --charcoal: #222222;
      --text-muted: #7A7A7A;
    }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  
  background: var(--off-white);
  color: var(--charcoal);
  overflow-x: hidden;
  font-weight: 400;
  line-height: 1.7;
  font-size: 1rem;
  margin:0;
  padding:0;
}

/* ─── NOISE TEXTURE ─── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: .03;
  pointer-events: none;
  z-index: 9999;
}

.menu-btn {
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 999;
}

.menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: #000;
    border-radius: 30px;
    transition: 0.3s ease;
}

.mobile-menu-wrapper {
    position: fixed;
    inset: 0;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
}

.mobile-menu-wrapper.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.mobile-menu-sidebar {
    position: absolute;
    top: 0;
    left: -320px;
    width: 300px;
    max-width: 85%;
    height: 100%;
    background: #fff;
    overflow-y: auto;
    transition: left 0.4s ease;
    padding: 20px;
    box-shadow: 5px 0 20px rgba(0,0,0,0.15);
}

.mobile-menu-wrapper.active .mobile-menu-sidebar {
    left: 0;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    border: none;
    background: #f2f2f2;
    color: #000;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-bottom: 20px;
}

.mobile-nav-menu,
.mobile-nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu > li {
    border-bottom: 1px solid #eee;
}

.mobile-nav-menu li {
    position: relative;
}

.mobile-nav-menu li a {
    display: block;
    padding: 14px 40px 14px 0;
    color: #222;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.mobile-nav-menu li ul {
    display: none;
    padding-left: 15px;
}

.mobile-nav-menu li ul li a {
    font-size: 14px;
    color: #666;
    padding: 10px 35px 10px 0;
}

.submenu-toggle {
    position: absolute;
    top: 8px;
    right: 0;
    width: 34px;
    height: 34px;
    border: none;
    background: #f5f5f5;
    color: #000;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
}

body.menu-open {
    overflow: hidden;
}
.mobile-menu-wrapper,
    .menu-btn {
        display: none;
    }
.scrolled #primary-menu.no-responsive > li > a{color: #222;}
    #primary-menu.no-responsive > li.menu-item-cart{display: none !important;}
    #primary-menu.no-responsive > li > ul > li > a{font-size: 12px !important;}
nav{display: flex;
  justify-content: space-between;
  align-items: center; padding: .8rem 4rem;}
.nav-cta {
  padding: .9rem 1.8rem;
  background: #cdbb8e;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  border-radius: 2px;
}
.nav-cta:hover {
  background: #d3c49e;
  color: #fff;
}
nav.scrolled {
  background: rgba(254,254,254,.9);
  backdrop-filter: blur(20px);
  padding: 1.2rem 4rem;
  box-shadow: 0 1px 0 #EDE8E1;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all .4s ease;
}
#primary-menu.no-responsive > li.menu-item-current > a{border: none !important;}
#primary-menu.no-responsive > li > a{font-size: 12px;}
.nav-menu li:hover ul{opacity: 1 !important; visibility: visible !important; z-index: 99; margin-top: -13px;}
#primary-menu.no-responsive > li{padding: 25px 0px !important;}
#primary-menu.no-responsive > li.menu-item-active > a {
  border: 2px solid #cdbc8c;
}
#primary-menu.no-responsive > li {
  padding: 25px 0px !important;
}
.white-header{background: #fff !important;}
.footer {
    background: #000;
    color: #fff;
    padding: 35px 0;
    font-family: "DM Sans", sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-copyright {
    font-size: 16px;
    line-height: 1.6;
    max-width: 220px;
}

.footer-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    padding: 0 24px;
    transition: opacity 0.3s ease;
}

.footer-menu a:hover {
    opacity: 0.7;
}

.footer-menu a:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}

.footer-social-sec {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-social-sec a {
    color: #fff !important;
    font-size: 28px !important;
    transition: opacity 0.3s ease;
}

.footer-social-sec a:hover {
    opacity: 0.7;
}

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:#ffffff;
    transition:.35s ease;
}

.site-header.sticky{
    background:#fff;
    box-shadow:0 2px 20px rgba(0,0,0,.08);
}

.site-header .container{
    max-width:1400px;
    margin:0 auto;
    padding:10px 0px 25px 0px;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    max-height:58px;
    display:block;
}

.main-nav{
    margin-left:auto;
}

.menu{
    display:flex;
    align-items:center;
    list-style:none;
}

.menu > li{
    position:relative;
    margin:0 5px;
}

.menu > li > a{
  color: #000;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  padding: 15px 10px;
  display: block;
  position: relative;
  letter-spacing: .02em;
  font-family: 'Montserrat', sans-serif;
}
.menu > li.active > a{border: 2px solid #cdbc8c; color:#cdbc8c; padding: 0 10px;}
.menu > li.active > a:hover{color:#cdbc8c;}
.menu > li.active > a::after{display: none;}
.menu > li > a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:10px;
    width:0;
    height:1px;
    background:#d3c49e;
    transition:width .35s ease;
}

.menu > li:hover > a::after{
    width:100%;
}
.menu > li:hover > a{
    color:var(--gold);
}

.dropdown{
    position:absolute;
    top:65px;
    left:0;
    width:310px;
    background:#f6f7f9;
    list-style:none;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:
    opacity .35s ease,
    transform .35s ease,
    visibility .35s ease;
    border:1px solid #e5e5e5;
}
.sticky .dropdown{top: 77px;}
.white-header.sticky .dropdown{top: 64px;}
.has-dropdown:hover .dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown li a{
    display:block;
    padding:15px 30px;
    color:#66798a;
    text-decoration:none;
    font-size:12px;
    border-bottom:1px solid #e5e5e5;
    letter-spacing: .02em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.dropdown li:last-child a{
    border-bottom:none;
}

.dropdown li a:hover{
    background:#fff;
    border-left: 3px solid #cdbc8c;
    color: #000;
}

.has-dropdown:hover .dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.discover-btn{
    margin-left: 10px;
    text-decoration: none;
    background: #d3c49e;
    color: #fff;
    padding: 0px 28px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .5px;
    transition: .3s;
    height: 40px;
    line-height: 40px;
}

.discover-btn:hover{
    opacity:.9;
}

.menu-toggle{
    display:none;
    width:32px;
    background:none;
    border:none;
    cursor:pointer;
}

.menu-toggle span{
    display:block;
    height:2px;
    background:#000;
    margin:7px 0;
}

.has-dropdown > a{
    display:flex !important;
    align-items:center;
    gap:8px;
}

.dropdown-icon{
    width:8px;
    height:8px;
    border-right:2px solid currentColor;
    border-bottom:2px solid currentColor;
    transform:rotate(45deg);
    transition:.3s ease;
    margin-top:-3px; display: block;
}

.has-dropdown:hover > a .dropdown-icon{
    transform:rotate(225deg);
}

.bottom-header{display: flex; justify-content: space-between;}
.top-header{display: flex; justify-content: end; padding: 0px 0 10px 0;}

.mobile-close{
    display:none;
}

.wpml-ls-legacy-dropdown{width: 120px;}
.wpml-ls-legacy-dropdown a{font-size: 12px;}

.cat-page-main .product-taxonomy{display: flex !important; justify-content: center; }
.cat-page-main .product-taxonomy .product-image{height: auto !important; min-height: auto !important; max-height: auto !important;}
.cat-page-main .product-taxonomy .product-btn{text-decoration: none;}
.cat-page-main .product-taxonomy .product-title{min-height: auto;}
.woocommerce-cart .site-main article{padding: 150px 0 50px 0px;}
.woocommerce-cart h1,.woocommerce-checkout h1{text-align: center; text-transform: uppercase;}

.woocommerce-product-details__short-description a{color: #d3c49e;}
.wp-block-woocommerce-cart{margin-top: 30px;}
.wc-block-cart-items .screen-reader-text{display: none;}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden; padding: 15rem 4rem 8rem 4rem;
}

.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 10s linear;
}
.hero:hover .hero-bg img { transform: scale(1.03); }

.hero-overlay {
  position: absolute; inset: 0;
  background: #ffffff96;
}

.hero-content {
  position: relative; z-index: 10;
  padding: 0rem;
  max-width: 580px;
}

.hero-eyebrow {
  font-size: 1rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: #b99429; margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .8s .2s forwards;
}

.hero-title {
  font-family: 'Montserrat';
  font-size: 60px;
  font-weight: 300; line-height: 75px;
  color: var(--black); margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 1s .4s forwards; margin-top: 0px;
}
.hero-title em { font-style: italic; color: #b99429; }

.hero-text {
  font-size: 1.1rem; color: var(--black);
  max-width: 480px; margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s .6s forwards;
}

.hero-actions {
  display: flex; gap: 1rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s .8s forwards;
}

.btn {
  padding: .7rem 1.3rem;
  font-family: 'Manrope', sans-serif;
  font-size: .9rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; text-decoration: none;
  cursor: pointer; transition: all .3s ease;
  border-radius: 2px;
}
.btn-white {
  background: #cebb8d;
  color: #fdfffe;
  border-radius: 3px;
  font-weight: 700;
}
.btn-white:hover { background: #eadfc2; color: #000; }
.btn-ghost {
  background: transparent; color: #000000;
  border: 1px solid rgb(0 0 0 / 40%);
}
.btn-ghost:hover { border-color: var(--white); color: #fff; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute; bottom: 3rem; right: 4rem;
  display: flex; flex-direction: column; align-items: center;
  gap: .5rem; color: var(--black); font-size: 1rem;
  letter-spacing: .15em; text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0; animation: fadeUp 1s 1.2s forwards;
}

.hero-scroll span {
  width: 1px; height: 60px; background: rgb(0 0 0);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50%       { transform: scaleY(1); transform-origin: top; }
  51%       { transform-origin: bottom; }
  100%      { transform: scaleY(0); transform-origin: bottom; }
}

section {
  padding: 4rem 4rem;
  position: relative;
}
.container {
  max-width: 1400px; margin: 0 auto; width: auto !important;
}
.container::before { display: none; }

.custom-breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    background: none;
}

.custom-breadcrumbs li {
    position: relative;
    padding: 10px 25px;
    margin-right: 10px;
    border-radius: 6px;
    font-size: 14px;
    text-transform: uppercase;
}
.custom-breadcrumbs li:first-child{padding-left: 0px;}
.custom-breadcrumbs li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #d3c49e;
    border-right: 2px solid #d3c49e;
    transform: translateY(-50%) rotate(45deg);
}

.custom-breadcrumbs a {
    text-decoration: none;
    color: #000;
    transition: .3s;
}

.custom-breadcrumbs a:hover {
    color: #d3c49e;
}

.custom-breadcrumbs .active {
    background: none;
    color: #d3c49e;
}

.simple-banner-section{padding-top: 150px;}
.simple-banner-section .section-title {
  text-align: center;
  margin-bottom: 30px;
}
.simple-banner-section .section-title span {
  color: #d3c49e;
  letter-spacing: 3px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}
.simple-banner-section .section-title h2 {
  font-family: 'Cormorant Garamond',serif;
  font-size: 64px;
  margin-top: 15px;
  color: #1f1f1f;
  font-weight: 400;
}
.simple-banner-section .section-title p {
  max-width: 850px;
  margin: 20px auto 0;
  line-height: 1.9;
  color: #777;
  font-size: 1rem;
}
.simple-banner-section .custom-breadcrumbs ul {
  justify-content: center;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    padding: 18px 24px;
    background: #f8f8f8;
    border: 1px solid #ececec;
    border-radius: 12px;
}

.post-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #444;
    line-height: 1;
}

.post-meta .meta-item svg {
    width: 18px;
    height: 18px;
    color: #d3c49e;
    flex-shrink: 0;
}

.post-meta .meta-item span {
    line-height: 1.4;
}

.post-meta .meta-author a,
.post-meta .meta-category a {
    color: inherit;
    text-decoration: none;
    pointer-events: none; /* Prevents clicking */
    cursor: default;
}

.post-meta .meta-category {
    color: #222;
    font-weight: 600;
}

@media (max-width: 768px) {
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 16px;
    }

    .post-meta .meta-item {
        font-size: 14px;
    }
}


.post-tags {
    margin: 40px 0;
    padding-top: 25px;
    border-top: 1px solid #ececec;
}

.post-tags .tags-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

.post-tags .tags-title svg {
    width: 18px;
    height: 18px;
    color: #d3c49e;
}

.post-tags .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.post-tags .tag-item {
    display: inline-block;
    padding: 8px 16px;
    background: #f8f8f8;
    border: 1px solid #e6e6e6;
    border-radius: 50px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    cursor: default;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 60px 0;
    padding: 30px;
    border: 1px solid #ececec;
    border-radius: 12px;
    background: #fff;
}

.post-navigation .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-navigation .nav-next {
    text-align: right;
}

.post-navigation .nav-label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d3c49e;
    font-weight: 600;
}

.post-navigation .nav-item a {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    line-height: 1.5;
    text-decoration: none;
    transition: color .3s ease;
}

.post-navigation .nav-item a:hover {
    color: #d3c49e;
}

@media (max-width:768px) {
    .post-navigation {
        flex-direction: column;
        padding: 20px;
        gap: 25px;
    }

    .post-navigation .nav-next {
        text-align: left;
    }

    .post-navigation .nav-item a {
        font-size: 17px;
    }
}



@media screen and (min-width: 1199px) and (max-width: 1370px) {

	.menu > li > a{font-size: 11px; padding: 15px 7px;}
	.menu > li{margin: 0px;}
	.discover-btn{margin-left: 15px;}
	.site-header .container{padding: 25px 10px;}
 
    
}


@media(max-width:1199px){

    .menu-toggle{
        display:block;
    }

    .main-nav{
        position:fixed;
        top:0;
        right:-100%;
        width:320px;
        height:100vh;
        background:#fff;
        overflow:auto;
        transition:.4s ease;
        padding:90px 25px 30px;
    }

    .main-nav.active{
        right:0;
    }

    .menu{
        flex-direction:column;
        align-items:flex-start;
    }

    .menu li{
        width:100%;
        margin:0;
    }

    .menu > li > a{
        width:100%;
        padding:16px 0;
        border-bottom:1px solid #eee;
    }

    .dropdown{
        position:static;
        width:100%;
        display:none;
        opacity:1;
        visibility:visible;
        transform:none;
        border:none;
        background:#fafafa;
    }

    .has-dropdown.active .dropdown{
        display:block;
    }

    .discover-btn{
        display:none;
    }

    .site-header .container{
        padding:20px;
    }

    .has-dropdown.active > a .dropdown-icon{
        transform:rotate(225deg);
    }

    .mobile-close{
        display:block;
        position:absolute;
        top:25px;
        right:25px;
        width:30px;
        height:30px;
        cursor:pointer;
    }

    .mobile-close span{
        position:absolute;
        top:14px;
        left:0;
        width:100%;
        height:2px;
        background:#222;
    }

    .mobile-close span:first-child{
        transform:rotate(45deg);
    }

    .mobile-close span:last-child{
        transform:rotate(-45deg);
    }
}

@media (max-width: 1024px) {
.hero-content { padding: 0 2rem; }
.hero-scroll { display: none; }
}

/* Responsive */
@media (max-width: 991px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .footer-menu {
        justify-content: center;
    }

    .footer-menu a {
        padding: 0 15px;
        margin-bottom: 10px;
    }

    .footer-social-sec {
        justify-content: center;
    }
    .site-header .container{padding: 10px !important;}

     .simple-banner-section .section-title h2{
        font-size: 34px;
        line-height: 40px;
    }
}

@media (max-width: 576px) {
    .footer-menu {
        flex-direction: column;
        gap: 12px;
    }

    .footer-menu a::after {
        display: none;
    }

    .footer-social-sec a {
        font-size: 24px !important;
    }
}
@media (max-width: 768px) {
      .nav-links, .nav-cta { display: none !important; }
	  .mobile-menu-wrapper.active{display: block !important;}
	  .menu-btn { display: flex; }
      .simple-banner-section { padding-top: 100px; padding-left: 15px; padding-right: 15px; padding-bottom: 0px; }
      .simple-banner-section .section-title{line-height: 20px;}
      .custom-breadcrumbs ul{text-align: center;}
      .custom-breadcrumbs ul li a, .custom-breadcrumbs ul li { font-size: 12px; }

}

@media (max-width: 550px) {
.hero{padding: 10rem 1.5rem 8rem 1.5rem;}
.hero-content{padding: 0px;}
.hero-title{font-size: 30px; line-height: 40px;}
.hero-actions .btn{padding: .4rem .8rem; font-size: .87rem; letter-spacing: 0px;}
.hero-text{font-size: 1rem;}
.hero-eyebrow{font-size: .9rem;}
.custom-breadcrumbs ul{justify-content: center;}
.custom-breadcrumbs ul li{padding: 8px 15px;}
.custom-breadcrumbs ul li a{font-size: 12px;}
}



.shop-section{
    padding:150px 0 90px 0;
}

/* HEADING */

.shop-heading{
    text-align:center;
    margin-bottom:60px;
}

.shop-label{
    display:inline-block;
    background:#ccb08f;
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
    letter-spacing:2px;
    font-size:13px;
    margin-bottom:30px;
}

.shop-heading h1{
    font-size:44px;
    line-height:1.4;
    font-weight:700;
    color:#3d3646;
    text-transform:uppercase;
    max-width:1100px;
    margin:auto auto 18px;
}

.shop-heading p{
    color:#7e736a;
    line-height:1.9;
    font-size:16px;
    max-width:900px;
    margin:auto;
}

/* TABS */

.shop-tabs{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:16px;
    margin-top:50px;
}

.shop-tab{
    padding:16px 28px;
    background:#e9e3db;
    border:none;
    cursor:pointer;
    font-size:14px;
    font-weight:600;
    color:#5f564d;
    border-radius:8px;
    transition:.3s;
    text-transform:uppercase;
}

.shop-tab.active{
    background:#ccb08f;
    color:#fff;
}

.shop-tab:hover{
    background:#ccb08f;
    color:#fff;
}

/* PRODUCTS */

.products-wrap{
    margin-top:70px;
}

.products-grid{
    display:none;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
}

.products-grid.active{
    display:grid;
}

/* CARD */

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    position:relative;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.1);
}

.product-image{
    height:340px;
    padding:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#faf8f5;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.4s;
}

.product-card:hover img{
    transform:scale(1.05);
}

.product-content{
    padding:15px;
    text-align:center;
}

.product-title{
    font-size:18px;
    line-height:1.6;
    font-weight:600;
    color:#4c4340;
    margin-bottom:15px;
    min-height:86px;
}

.product-price{
    font-size:22px;
    font-weight:700;
    color:#ccb08f;
    margin-bottom:20px;
}

/* BUTTONS */

.product-buttons{
    display:flex;
    justify-content:center;
    gap:12px;
    align-items: center;
}
.product-buttons a.added_to_cart{text-transform: uppercase;
  text-decoration: none;
  color: #000;
  font-weight: 600;}
.wc-block-components-product-metadata__description a{color: #ccb08f; text-decoration: none;}
.product-btn{
    width:44px;
    height:44px;
    border-radius:50%;
    border:none;
    background:#f3ede7;
    color:#7b6d61;
    cursor:pointer;
    transition:.3s;
    font-size:28px;
}

.product-btn:hover{
    background:#ccb08f;
    color:#fff;
}

/* BADGE */

.stock-badge{
    position:absolute;
    top:20px;
    right:20px;
    background:#ccb08f;
    color:#fff;
    width:74px;
    height:74px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-size:11px;
    font-weight:700;
    line-height:1.4;
    z-index: 999;
}

/* EQUAL IMAGE HEIGHT */

.product-image{
    height:320px;
    min-height:320px;
    max-height:320px;

    padding:15px;
    display:flex;
    align-items:center;
    justify-content:center;

    background:#faf8f5;
    overflow:hidden;
}

/* IMAGE */

.product-image img{
    width:100%;
    height:100%;
    object-fit: cover; /* use cover if needed */
    display:block;
    border-radius: 20px;
}

/* SAME CARD HEIGHT */

.product-card{
    height:100%;
    display:flex;
    flex-direction:column;
}

.product-content{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.section-title{
    text-align:center;
    margin-bottom:30px;
}

.section-title span{
    color:#d3c49e;
    letter-spacing:3px;
    font-size:14px;
    text-transform:uppercase;
    font-weight:500;
}

.section-title h2{
    font-family:'Cormorant Garamond',serif;
    font-size:45px;
    margin-top:15px;
    color:#1f1f1f;
    font-weight: 400;
}

.section-title p{
    max-width:750px;
    margin:20px auto 0;
    line-height:1.9;
    color:#777;
}
.custom-breadcrumbs ul{ justify-content: center;}

.product-taxonomy{display: grid !important; }

/* Pagination */
.woocommerce-pagination{
    margin:60px 0 0;
    display:flex;
    justify-content:center;
}

.woocommerce-pagination ul.page-numbers{
    display:flex;
    align-items:center;
    gap:12px;
    padding:0;
    margin:0;
    list-style:none;
    border:none !important;
}

.woocommerce-pagination ul.page-numbers li{
    border:none !important;
    margin:0;
    padding:0;
}

.woocommerce-pagination .page-numbers{
    width:48px;
    height:48px;
    display:flex !important;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    border:1px solid #d8d8d8;
    border-radius:50%;
    background:#fff;
    color:#021b58;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.woocommerce-pagination a.page-numbers:hover{
    background:#021b58;
    color:#fff;
    border-color:#021b58;
}

.woocommerce-pagination .current{
    background:#021b58;
    color:#fff;
    border-color:#021b58;
}

.woocommerce-pagination .prev,
.woocommerce-pagination .next{
    font-size:20px;
    font-weight:700;
}

.page-numbers{display: grid !important; gap: 5px;}
.page-numbers span{ line-height: normal !important;}
.woocommerce nav.woocommerce-pagination ul li{overflow: inherit;}
@media(max-width:767px){

    .woocommerce-pagination .page-numbers{
        width:40px;
        height:40px;
        font-size:14px;
    }

}
/* RESPONSIVE */

@media(max-width:1200px){

.products-grid{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:900px){

.products-grid{
    grid-template-columns:repeat(2,1fr);
}

.shop-heading h1{
    font-size:34px;
}

.section-title h2{
        font-size: 34px;
        line-height: 40px;
    }

}

@media(max-width:600px){

.products-grid{
    grid-template-columns:1fr;
}

.shop-tabs{
    gap:10px;
}

.shop-tab{
    width:100%;
}

.shop-heading h1{
    font-size:28px;
}
.shop-section{padding: 100px 20px 60px 20px;}
.section-title h2{
        font-size: 34px;
        line-height: 40px;
    }
}

/* ==========================
   PRODUCT PAGE
========================== */

.hts-product{
    max-width:1400px;
    margin:0px auto;
    display:grid;
    grid-template-columns:1fr 520px;
    gap:70px;
    align-items:start;
}

.hts-gallery{

    position:sticky;
    top:120px;

}

.woocommerce-product-gallery{

    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.hts-summary h1{

    font-size:42px;
    line-height:1.25;
    color:#222222;
    margin:10px 0 20px;

}

.hts-category{

    color:#d3c49e;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
    font-weight:600;

}

.hts-category a{

    color:#d3c49e;
    text-decoration:none;

}

.hts-price{

    margin:20px 0;

}

.hts-price .price{

    font-size:40px;
    color:#d3c49e;
    font-weight:700;

}

.hts-short-desc{

    margin:30px 0;
    line-height:1.9;
    color:#555;
    font-size:17px;

}

.cart{

    display:flex;
    gap:15px;
    align-items:center;
    margin:35px 0;

}

.quantity input{

    width:70px;
    height:52px;
    border:1px solid #ddd;
    border-radius:8px;
    text-align: center;
    font-weight: bold;

}

/* Chrome, Edge, Safari, Opera */
.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.quantity input {
    -moz-appearance: textfield;
    appearance: textfield;
}

.quantity input:focus, .quantity input:focus-visible{border:1px solid #ddd; outline: none;}
.single_add_to_cart_button{

    background:#d3c49e!important;
    color:#fff!important;
    border:none!important;
    padding:16px 45px!important;
    border-radius:8px!important;
    transition:.35s;

}
form.cart button.button{position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 14px; font-size: 16px;}
form.cart button.button::before{
    content: "";
    width: 24px;
    height: 24px;
    background: url("/wp-content/uploads/2026/07/shopping-cart.png") no-repeat center;
    background-size: contain;   
}

.single_add_to_cart_button:hover{

    background:#222!important;

}

.stock{

    color:#2d8a3f;
    font-weight:600;

}

.hts-info{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin:40px 0;

}

.hts-info div{

    background:#faf8f3;
    border:1px solid #ece2c6;
    border-radius:12px;
    padding:20px;

}

.hts-meta{

    border-top:1px solid #eee;
    padding-top:25px;
    color:#777;

}

.hts-meta a{

    color:#d3c49e;

}

/* Tabs */

.hts-tabs{

    margin:80px auto;
    max-width:1400px;

}

.woocommerce-tabs ul.tabs{

    display:flex;
    gap:15px;
    border:none!important;

}

.woocommerce-tabs ul.tabs li{

    background:#f7f4ec!important;
    border:none!important;
    border-radius:50px!important;
    padding:14px 30px!important;

}

.woocommerce-tabs ul.tabs li.active{

    background:#d3c49e!important;

}

.woocommerce-tabs ul.tabs li.active a{

    color:#fff!important;

}

/* Related */

.hts-related{

    max-width:1400px;
    margin:30px auto 30px auto;

}
.related.products{padding: 20px 0px;}

.related h2{

    text-align:center;
    font-size:38px;
    margin-bottom:50px;
    color:#222;

}

.related ul.products{

    display:grid!important;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.related ul.products li{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;

}

.related ul.products li:hover{

    transform:translateY(-8px);

}

.related img{

    width:100%;
    height:300px;
    object-fit:cover;

}

.related .button{

    width:calc(100% - 40px);
    margin:20px;
    background:#d3c49e;
    color:#fff;
    border-radius:50px;

}
.single-product .woocommerce-wrapper{padding-top: 150px;}
.woocommerce-product-gallery__wrapper{text-align: center;}
.woocommerce .products ul::after, .woocommerce .products ul::before, .woocommerce ul.products::after, .woocommerce ul.products::before{content: none !important; display: inherit !important;}

/* Mobile */

@media(max-width:991px){

.hts-product{

grid-template-columns:1fr;
gap:40px;
padding:20px;

}

.hts-gallery{

position:relative;
top:0;

}

.related ul.products{

grid-template-columns:1fr;

}

.hts-summary h1{

font-size:30px;

}

.hts-info{

grid-template-columns:1fr;

}

.related.products{padding: 20px;}

}

.site-main article{padding: 100px 0px; max-width: 1400px; margin: 0 auto;}

/*==============================
WOOCOMMERCE CART LAYOUT
==============================*/

.wc-block-cart{
    display:grid !important;
    grid-template-columns:minmax(0,2fr) 380px;
    gap:40px;
    align-items:start;
}

/* Left Column */
.wc-block-cart__main{
    width:100%;
}

/* Right Column */
.wc-block-cart__sidebar{
    width:100%;
    position:sticky;
    top:30px;
}

/*==============================
SIDEBAR CARD
==============================*/

.wc-block-cart__sidebar{
    background:#fff;
    border:1px solid #ececec;
    border-radius:16px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.wc-block-cart__totals-title{
    font-size:30px;
    color:#222;
    font-weight:700;
    margin-bottom:25px;
    padding-bottom:15px;
    border-bottom:2px solid #d3c49e;
}

/*==============================
TOTALS
==============================*/

.wc-block-components-totals-item{
    padding:18px 0;
    border-bottom:1px dashed #ddd;
}

.wc-block-components-totals-item__label{
    color:#222;
    font-weight:600;
    font-size:16px;
}

.wc-block-components-totals-item__value{
    color:#d3c49e;
    font-size:24px;
    font-weight:700;
}

/*==============================
COUPON
==============================*/

.wc-block-components-totals-coupon{
    background:#f8f8f8;
    border:1px solid #d3c49e;
    border-radius:10px;
    padding:15px;
    font-weight:600;
    transition:.3s;
}

.wc-block-components-totals-coupon:hover{
    background:#d3c49e;
    color:#fff;
}

.wc-block-components-totals-coupon:hover svg{
    fill:#fff;
}

.wc-block-components-panel__button{line-height: 24px; display: flex; gap: 10px;}
.wc-block-components-totals-coupon__form{display: flex; gap: 10px; margin-top: 15px;}
.wc-block-components-button{
  padding: 8px 15px;
  background: #000;
  border: none;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;}
  .wc-block-components-text-input label{display: none;}
  .wc-block-components-text-input input[type="text"]{padding: 8px 20px; width: 165px;}
  .wc-block-components-quantity-selector__input:focus{border: none; outline: none;}
  .wc-block-components-quantity-selector__input::-webkit-inner-spin-button,
.wc-block-components-quantity-selector__input::-webkit-outer-spin-button{
    -webkit-appearance: none;
    margin: 0;
}

.wc-block-components-quantity-selector__input{
    -moz-appearance: textfield;
    appearance: textfield;
}
/*==============================
CHECKOUT BUTTON
==============================*/

.wc-block-cart__submit-button{
   width: 100%;
  border-radius: 50px !important;
  background: #d3c49e !important;
  color: #fff !important;
  font-size: 16px;
  font-weight: 500;
  padding: 18px 25px;
  transition: .35s;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
}

.wc-block-cart__submit-button:hover{
    background:#222 !important;
}

/*==============================
LEFT COLUMN TABLE
==============================*/

.wc-block-cart-items{
    width:100%;
}

.wc-block-cart-items__row{
    background:#fff;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

/*==============================
RESPONSIVE
==============================*/

@media (max-width:991px){

.wc-block-cart{
    grid-template-columns:1fr;
    gap:30px;
}

.wc-block-cart__sidebar{
    position:relative;
    top:0;
}

}

@media (max-width:767px){

.wc-block-cart__sidebar{
    padding:25px;
}

.wc-block-cart__totals-title{
    font-size:24px;
}
.site-main article{padding: 100px 15px !important;}
}

/*==========================
 CART PAGE
==========================*/

.wc-block-cart-items{
    border:0;
    border-collapse:separate;
    border-spacing:0 25px;
    background:transparent;
}

.wc-block-cart-items thead{
    background:#222;
}

.wc-block-cart-items thead th{
    color:#fff;
    padding:18px 20px;
    font-size:16px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.5px;
    border:0;
}

.wc-block-cart-items thead th:first-child{
    border-radius:10px 0 0 10px;
}

.wc-block-cart-items thead th:last-child{
    border-radius:0 10px 10px 0;
}

/*==========================
 EACH PRODUCT
==========================*/

.wc-block-cart-items__row{
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.wc-block-cart-items__row:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.wc-block-cart-items__row td{
    padding:25px;
    border:0;
    vertical-align:middle;
}

.wc-block-cart-item__image{
    width:150px;
}

.wc-block-cart-item__image img{
    width:120px !important;
    height:120px;
    object-fit:cover;
    border-radius:14px;
    border:2px solid #d3c49e;
    transition:.35s;
    position: inherit !important;
    margin: 0px !important;
}

.wc-block-cart-item__image img:hover{
    transform:scale(1.05);
}

/*==========================
 PRODUCT TITLE
==========================*/

.wc-block-components-product-name{
    font-size:22px;
    font-weight:700;
    color:#222;
    text-decoration:none;
    line-height:1.4;
    transition:.3s;
}

.wc-block-components-product-name:hover{
    color:#d3c49e;
}

/*==========================
 DESCRIPTION
==========================*/

.wc-block-components-product-metadata{
    margin:12px 0;
}

.wc-block-components-product-metadata p{
    color:#777;
    font-size:15px;
    line-height:1.8;
}

/*==========================
 PRICE
==========================*/

.wc-block-cart-item__prices{
    margin:15px 0;
}

.wc-block-components-product-price__value{
    font-size:22px;
    font-weight:700;
    color:#d3c49e;
}

/*==========================
 QUANTITY
==========================*/

.wc-block-cart-item__quantity{
    display:flex;
    align-items:center;
    gap:20px;
    margin-top:20px;
}

.wc-block-components-quantity-selector{
    border:2px solid #d3c49e;
    border-radius:50px;
    overflow:hidden;
    background:#fff;
}

.wc-block-components-quantity-selector__button{
    width:42px;
    height:42px;
    border:0;
    background:#d3c49e;
    color:#222;
    font-size:22px;
    transition:.3s;
}

.wc-block-components-quantity-selector__button:hover{
    background:#d3c49e;
    color:#fff;
}

.wc-block-components-quantity-selector__input{
    width:55px;
    border:0;
    font-size:18px;
    font-weight:600;
    color:#222;
    text-align:center;
}

/*==========================
 REMOVE BUTTON
==========================*/

.wc-block-cart-item__remove-link{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#cebb8d;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.35s;
    border: none;
}

.wc-block-cart-item__remove-link svg{
    fill:#fff;
}

.wc-block-cart-item__remove-link:hover{
    background: #ccb785;
}

.wc-block-cart-item__remove-link:hover svg{
    fill:#fff;
}

/*==========================
 TOTAL
==========================*/

.wc-block-cart-item__total{
    text-align:right;
    width: 250px;
}

.wc-block-cart-item__total .wc-block-components-product-price__value{
    font-size:28px;
    color:#222;
    font-weight:700;
}

/*==========================
 RESPONSIVE
==========================*/

@media(max-width:991px){

.wc-block-cart-items{
    border-spacing:0 20px;
}

.wc-block-cart-items__row td{
    padding:18px;
}

.wc-block-cart-item__image img{
    width:90px;
    height:90px;
}

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

.wc-block-cart-item__total .wc-block-components-product-price__value{
    font-size:22px;
}

}

@media(max-width:767px){

.wc-block-cart-items thead{
    display:none;
}

.wc-block-cart-item__quantity{
    flex-wrap:wrap;
}

.wc-block-cart-item__image{
    width:100px;
}

.wc-block-cart-item__image img{
    width:80px;
    height:80px;
}

}

/*========================================
EMPTY CART
========================================*/

.wp-block-woocommerce-empty-cart-block{
    max-width:1400px;
    margin:80px auto;
    padding:0 15px;
}

/*========================================
EMPTY MESSAGE
========================================*/

.wc-block-cart__empty-cart__title{
    position:relative;
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:25px;
    padding-top:110px;
}

.wc-block-cart__empty-cart__title::before{
    content:"🛒";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:80px;
    height:80px;
    line-height:80px;
    font-size:42px;
    border-radius:50%;
    background:#d3c49e;
    color:#fff;
    box-shadow:0 15px 35px rgba(185,147,40,.3);
}

/*========================================
SEPARATOR
========================================*/

.wp-block-separator{
    border:none;
    width:120px;
    height:3px;
    background:#d3c49e;
    margin:40px auto;
    opacity:1;
}

/*========================================
SECTION TITLE
========================================*/

.wp-block-heading{
    color:#222;
    font-size:36px;
    font-weight:700;
    margin-bottom:50px;
}

/*========================================
PRODUCT GRID
========================================*/

.wc-block-grid__products{
    display:grid !important;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin:0;
    padding:0;
}

/*========================================
PRODUCT CARD
========================================*/

.wc-block-grid__product{
    list-style:none;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #ececec;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.wc-block-grid__product:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

/*========================================
IMAGE
========================================*/

.wc-block-grid__product-image{
    background:#faf8f3;
    padding:25px;
}

.wc-block-grid__product-image img{
    width:100%;
    aspect-ratio:1;
    object-fit:cover;
    border-radius:12px;
    transition:.4s;
}

.wc-block-grid__product:hover img{
    transform:scale(1.08);
}

/*========================================
TITLE
========================================*/

.wc-block-grid__product-title{
    padding:25px 20px 10px;
    font-size:20px;
    font-weight:700;
    color:#222;
    line-height:1.5;
    min-height:90px;
}

/*========================================
PRICE
========================================*/

.wc-block-grid__product-price{
    padding:0 20px;
    font-size:24px;
    color:#d3c49e;
    font-weight:700;
    margin-bottom:20px;
}

/*========================================
BUTTON
========================================*/

.wc-block-grid__product-add-to-cart{
    padding:0 20px 25px;
}

.wc-block-grid__product-add-to-cart .wp-block-button__link{
    display:block;
    width:100%;
    text-align:center;
    background:#d3c49e;
    color:#fff;
    border-radius:50px;
    padding:15px 20px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

.wc-block-grid__product-add-to-cart .wp-block-button__link:hover{
    background:#222;
}
.wc-block-grid__product a{text-decoration: none;}
/*========================================
RESPONSIVE
========================================*/

@media(max-width:1200px){

.wc-block-grid__products{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:991px){

.wc-block-grid__products{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:767px){

.wc-block-cart__empty-cart__title{
    font-size:30px;
    padding-top:90px;
}

.wp-block-heading{
    font-size:28px;
}

.wc-block-grid__products{
    grid-template-columns:1fr;
    gap:20px;
}

.wc-block-grid__product-title{
    min-height:auto;
}

}


/* Notice Wrapper */
.woocommerce-notices-wrapper {
    margin: 0 0 25px;
    width: 100%;
}

/* Common Notice Style */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    position: relative;
    padding: 16px 20px 16px 50px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    line-height: 1.6;
    list-style: none;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

/* Success */
.woocommerce-message {
    background: #f7f4ea;
    border-left: 4px solid #d3c49e;
    color: #222222;
}

/* Error */
.woocommerce-error {
    background: #fff5f5;
    border-left: 4px solid #dc3545;
    color: #842029;
}

/* Info */
.woocommerce-info {
    background: #f5f8ff;
    border-left: 4px solid #d3c49e;
    color: #d3c49e;
}



/* Links */
.woocommerce-message a,
.woocommerce-error a,
.woocommerce-info a {
    color: #d3c49e;
    font-weight: 600;
    text-decoration: none;
}

.woocommerce-message a:hover,
.woocommerce-error a:hover,
.woocommerce-info a:hover {
    color: #222222;
}

/* Remove default WooCommerce icon */
.woocommerce-message::before,
.woocommerce-error::before,
.woocommerce-info::before {
    display: none;
}

/* Custom Icon */
.woocommerce-message::after,
.woocommerce-error::after,
.woocommerce-info::after {
    position: absolute;
    left: 18px;
    top: 15px;
    font-size: 18px;
    font-weight: bold;
}

.woocommerce-message::after {
    content: "✓";
    color: #d3c49e;
}

.woocommerce-error::after {
    content: "!";
    color: #dc3545;
}


.woocommerce-info::after {
  content: "i";
  color: #fff;
  background: #000;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  text-align: center;
  font-size: 16px;
}

/* List */
.woocommerce-error li,
.woocommerce-message li,
.woocommerce-info li {
    margin: 0;
}

/* Responsive */
@media (max-width:768px){
    .woocommerce-message,
    .woocommerce-error,
    .woocommerce-info{
        padding:14px 15px 14px 45px;
        font-size:14px;
    }
}


/*==================================================
THANK YOU PAGE
==================================================*/

.woocommerce-order-received article{
    max-width:1400px;
    margin:70px auto;
    padding: 100px 0px 0px 0px !important;
}

.woocommerce-order-received article>h1{
    text-align:center;
    font-size:42px;
    color:#222;
    margin-bottom:40px;
    font-weight:700;
}

.woocommerce-order-received .woocommerce-order{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
    border:1px solid #ececec; padding-top: 50px;
}


/*==========================
SUCCESS MESSAGE
===========================*/

.woocommerce-order-received .woocommerce-notice--success{
    background:#f8f5ec;
    border-left:6px solid #d3c49e;
    color:#222;
    padding:28px 35px;
    font-size:20px;
    font-weight:600;
    margin:0;
}


/*==========================
ORDER OVERVIEW
===========================*/

.woocommerce-order-received .woocommerce-order-overview{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
    list-style:none;
    margin:40px;
    padding:0;
}

.woocommerce-order-received .woocommerce-order-overview li{
    background:#faf8f2;
    border:1px solid #ece4cd;
    border-radius:12px;
    padding:22px;
    font-size:15px;
    color:#666;
    text-align:center;
    transition:.3s;
}

.woocommerce-order-received .woocommerce-order-overview li:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.woocommerce-order-received .woocommerce-order-overview strong{
    display:block;
    margin-top:12px;
    color:#222;
    font-size:18px;
    font-weight:700;
}


/*==========================
PAYMENT TEXT
===========================*/

.woocommerce-order-received .woocommerce-order>p{
    margin:0 40px 40px;
    padding:18px 25px;
    background:#fff8e8;
    border-radius:10px;
    border-left:4px solid #d3c49e;
}


/*==========================
SECTION TITLES
===========================*/

.woocommerce-order-received h2{
    font-size:28px;
    color:#222;
    margin-bottom:25px;
}


/*==========================
ORDER DETAILS
===========================*/

.woocommerce-order-received .woocommerce-order-details,
.woocommerce-order-received .woocommerce-customer-details{
    padding:40px;
}

.woocommerce-order-received .shop_table{
    width:100%;
    border-collapse:collapse;
    margin:0;
}

.woocommerce-order-received .shop_table thead{
    background:#d3c49e;
}

.woocommerce-order-received .shop_table thead th{
    color:#fff;
    padding:18px;
    font-size:16px;
}

.woocommerce-order-received .shop_table td,
.woocommerce-order-received .shop_table th{
    padding:18px;
    border:1px solid #ececec;
}

.woocommerce-order-received .shop_table tbody tr:nth-child(even){
    background:#fafafa;
}

.woocommerce-order-received .shop_table tfoot th{
    background:#faf8f2;
    color:#222;
    width:220px;
}

.woocommerce-order-received .shop_table tfoot td{
    font-weight:700;
    color:#d3c49e;
}


/*==========================
PRODUCT
===========================*/

.woocommerce-order-received .product-name a{
    color:#222;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.woocommerce-order-received .product-name a:hover{
    color:#d3c49e;
}

.woocommerce-order-received .product-quantity{
    color:#fff; padding: 20px;
}


/*==========================
ADDRESS
===========================*/

.woocommerce-order-received address{
    background:#faf8f2;
    padding:30px;
    border-radius:12px;
    border:1px solid #ece4cd;
    font-style:normal;
    line-height:2;
}

.woocommerce-order-received .woocommerce-column__title{
    margin-bottom:25px;
}


/*==========================
EMAIL
===========================*/

.woocommerce-order-received .woocommerce-customer-details--email{
    margin-top:20px;
    color:#222;
    font-weight:600;
}


/*==========================
PRICE
===========================*/

.woocommerce-order-received .amount{
    color:#d3c49e;
    font-weight:700;
}


/*==========================
RESPONSIVE
===========================*/

@media(max-width:991px){

.woocommerce-order-received .woocommerce-order-overview{

grid-template-columns:repeat(2,1fr);

margin:25px;

}

.woocommerce-order-received .woocommerce-order-details,
.woocommerce-order-received .woocommerce-customer-details{

padding:25px;

}

}

@media(max-width:767px){

.woocommerce-order-received article>h1{

font-size:32px;

}

.woocommerce-order-received .woocommerce-order-overview{

grid-template-columns:1fr;

margin:20px;

}

.woocommerce-order-received .woocommerce-notice--success{

font-size:18px;

padding:20px;

}

.woocommerce-order-received .shop_table{

display:block;
overflow:auto;

}

}



/*==========================================
STEP 1
==========================================*/

.checkout-step-content[data-step="1"]{
    max-width:1400px;
    margin:40px auto;
}

.checkout-card{
    background:#fff;
    border-radius:20px;
    border:1px solid #ececec;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    overflow:hidden;
}

.checkout-card>h2{
    font-size:38px;
    font-weight:700;
    color:#222;
    margin:40px 40px 10px;
    text-align:center;
}

.checkout-card>p{
    text-align:center;
    color:#777;
    margin:0 40px 40px;
    font-size:17px;
    line-height:1.7;
}


/*==========================================
LOGIN BOX
==========================================*/

.checkout-login-wrapper{
    margin:0 40px 40px;
    border:1px solid #ece4cd;
    border-radius:18px;
    overflow:hidden;
    background:#fff;
}


/*==========================================
HEADER
==========================================*/

.checkout-login-header{
    display:flex;
    align-items:center;
    gap:20px;
    padding:15px 30px;
    background:linear-gradient(135deg,#d3c49e,#d3c49e);
    color:#fff;
}

.checkout-login-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.checkout-login-icon svg{
    width:34px;
    height:34px;
}

.checkout-login-header h2{
    margin:0;
    color:#fff;
    font-size:26px;
}

.checkout-login-header p{
    margin:0;
    opacity:.9;
    font-size:15px;
    color: #fff !important;
}


/*==========================================
BODY
==========================================*/

.checkout-login-content{
    padding:35px;
}


/*==========================================
FIELDS
==========================================*/

.checkout-login-content .form-row{
    margin-bottom:22px;
}

.checkout-login-content label{
    display:block;
    font-weight:600;
    color:#222;
    margin-bottom:10px;
    font-size:15px;
}

.checkout-login-content .required{
    color:#d62c2c;
}

.checkout-login-content input.input-text{
    width:100%;
    height:56px;
    padding:0 18px;
    border:2px solid #e6e6e6;
    border-radius:10px;
    font-size:16px;
    transition:.3s;
    background:#fff;
}

.checkout-login-content input.input-text:focus{
    border-color:#d3c49e;
    outline:none;
    box-shadow:0 0 0 4px rgba(185,147,40,.12);
}


/*==========================================
FOOTER
==========================================*/

.checkout-login-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:30px;
    gap:20px;
    flex-wrap:wrap;
}

.checkout-login-footer label{
    display:flex;
    align-items:center;
    gap:10px;
    margin:0;
    font-weight:500;
}

.checkout-login-footer input[type="checkbox"]{
    width:18px;
    height:18px;
    accent-color:#d3c49e;
}


/*==========================================
LOGIN BUTTON
==========================================*/

.checkout-login-footer .button{
    background:#d3c49e;
    color:#fff;
    border:none;
    border-radius:10px;
    height:52px;
    padding:0 40px;
    font-size:16px;
    font-weight:600;
    transition:.3s;
    cursor:pointer;
}

.checkout-login-footer .button:hover{
    background:#222;
}


/*==========================================
LINKS
==========================================*/

.checkout-links{
    display:flex;
    justify-content:space-between;
    margin-top:30px;
    padding-top:25px;
    border-top:1px solid #ececec;
    flex-wrap:wrap;
    gap:15px;
}

.checkout-links a{
    color:#d3c49e;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.checkout-links a:hover{
    color:#222;
}


/*==========================================
CONTINUE BUTTON
==========================================*/

.checkout-navigation{
    padding:0 40px 40px;
    text-align:right;
}

.checkout-next{
    background:#222;
    color:#fff;
    border:none;
    padding:16px 45px;
    border-radius:10px;
    font-size:16px;
    font-weight:600;
    transition:.3s;
    cursor:pointer;
}

.checkout-next:hover{
    background:#d3c49e;
}


/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:767px){

.checkout-card>h2{
    font-size:30px;
    margin:30px 25px 10px;
}

.checkout-card>p{
    margin:0 25px 30px;
}

.checkout-login-wrapper{
    margin:0 20px 25px;
}

.checkout-login-header{
    flex-direction:column;
    text-align:center;
}

.checkout-login-content{
    padding:25px;
}

.checkout-login-footer{
    flex-direction:column;
    align-items:flex-start;
}

.checkout-login-footer .button{
    width:100%;
}

.checkout-links{
    flex-direction:column;
}

.checkout-navigation{
    padding:0 20px 25px;
}

.checkout-next{
    width:100%;
}

}



/*==========================================
LOGGED IN USER CARD
==========================================*/

.logged-in-message{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:25px 30px;
    margin:30px 40px;
    background:linear-gradient(135deg,#faf8f2,#ffffff);
    border:1px solid #d3c49e;
    border-left:6px solid #d3c49e;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.logged-in-message::before{
    content:"✓";
    width:58px;
    height:58px;
    border-radius:50%;
    background:#d3c49e;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:700;
    flex-shrink:0;
    margin-right:18px;
}

.logged-in-message p{
    flex:1;
    margin:0;
    color:#555;
    font-size:16px;
    line-height:1.6;
}

.logged-in-message strong{
    display:block;
    color:#222;
    font-size:22px;
    font-weight:700;
    margin-top:6px;
}

.checkout-logout-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-width:140px;
    height:48px;
    padding:0 24px;
    background:#222;
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    border-radius:10px;
    transition:.3s ease;
}

.checkout-logout-btn::before{
    content:"↩";
    font-size:18px;
}

.checkout-logout-btn:hover{
    background:#d3c49e;
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(185,147,40,.35);
}


/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:767px){

.logged-in-message{
    flex-direction:column;
    align-items: center;
    text-align:center;
    padding:20px;
}

.logged-in-message::before{
    margin:0 0 15px;
}

.logged-in-message strong{
    font-size:20px;
}

.checkout-logout-btn{
    width:100%;
}

}

/*==================================================
STEP 2
==================================================*/

.checkout-step-content[data-step="2"]{
    max-width:1400px;
    margin:40px auto;
}


/*==========================
GRID
==========================*/

.checkout-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    align-items:start;
}


/*==========================
LEFT CARD
==========================*/

.checkout-card{
    background:#fff;
    border-radius:18px;
    border:1px solid #ececec;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    overflow:hidden;
}


/*==========================
HEADER
==========================*/

.checkout-card-header{
    background:linear-gradient(135deg,#d3c49e,#d3c49e);
    padding:20px 35px;
}

.checkout-card-header h2{
    margin:0;
    color:#fff;
    font-size:32px;
    font-weight:700;
}

.checkout-card-header p{
    margin-top:0px;
    color:rgba(255,255,255,.9) !important;
    font-size:16px;
}


/*==========================
FORM
==========================*/

#customer_details{
    padding:40px;
}

.woocommerce-billing-fields h3{
    display:none;
}


/*==========================
FIELD
==========================*/

.woocommerce-billing-fields__field-wrapper{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
}

.woocommerce-billing-fields__field-wrapper .form-row-wide{
    width:100%;
}

.woocommerce-billing-fields label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
    color:#222;
}

.woocommerce-billing-fields input,
.woocommerce-billing-fields select,
.woocommerce-billing-fields textarea{
    width:100%;
    height:56px;
    border:2px solid #e6e6e6;
    border-radius:12px;
    padding:0 18px;
    font-size:15px;
    transition:.3s;
    background:#fff;
}

.woocommerce-billing-fields textarea{
    height:140px;
    padding:15px 18px;
}

.woocommerce-billing-fields input:focus,
.woocommerce-billing-fields select:focus,
.woocommerce-billing-fields textarea:focus{
    border-color:#d3c49e;
    box-shadow:0 0 0 4px rgba(185,147,40,.12);
    outline:none;
}


/*==========================
ORDER SUMMARY
==========================*/

.checkout-summary-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #ececec;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    position:sticky;
    top:40px;
}

.checkout-summary-card h3{
    background:#222;
    color:#fff;
    margin:0;
    padding:25px 30px;
    font-size:24px;
}


/*==========================
PRODUCT LIST
==========================*/

.summary-items{
    max-height:600px;
    overflow:auto;
}

.summary-product{
    display:flex;
    align-items:center;
    gap:18px;
    padding:20px 25px;
    border-bottom:1px solid #f2f2f2;
    transition:.3s;
}

.summary-product:hover{
    background:#faf8f2;
}

.summary-image img{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:12px;
    border:1px solid #ececec;
}

.summary-content{
    flex:1;
}

.summary-content h4{
    margin:0 0 8px;
    font-size:16px;
    color:#222;
    line-height:1.5;
}

.summary-content span{
    color:#888;
    font-size:14px;
}

.summary-price{
    font-size:18px;
    font-weight:700;
    color:#d3c49e;
    white-space:nowrap;
}


/*==========================
TOTAL
==========================*/

.summary-total{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:30px;
    background:#faf8f2;
    border-top:2px solid #ece4cd;
    font-size:22px;
}

.summary-total strong{
    color:#222;
}

.summary-total .amount{
    color:#d3c49e;
    font-size:28px;
}


/*==========================
BUTTONS
==========================*/

.checkout-navigation{
    display:flex;
    justify-content: end;
    margin-top:40px;
}

.checkout-prev,
.checkout-next{
    min-width:180px;
    height:55px;
    border:none;
    border-radius:10px;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.checkout-prev{
    background:#222;
    color:#fff;
}

.checkout-prev:hover{
    background:#d3c49e;
}

.checkout-next{
    background:#d3c49e;
    color:#fff;
}

.checkout-next:hover{
    background:#222;
}


/*==========================
SCROLLBAR
==========================*/

.summary-items::-webkit-scrollbar{
    width:8px;
}

.summary-items::-webkit-scrollbar-thumb{
    background:#d3c49e;
    border-radius:20px;
}

.checkout-step-content[data-step="2"] .checkout-navigation{padding: 0px !important; justify-content: space-between;}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

.checkout-grid{
    grid-template-columns:1fr;
}

.checkout-summary-card{
    position:relative;
    top:0;
}

}

@media(max-width:767px){

#customer_details{
    padding:25px;
}

.checkout-card-header{
    padding:25px;
}

.checkout-card-header h2{
    font-size:28px;
}

.woocommerce-billing-fields__field-wrapper .form-row-first,
.woocommerce-billing-fields__field-wrapper .form-row-last{
    width:100%;
}

.summary-product{
    padding:18px;
}

.summary-image img{
    width:70px;
    height:70px;
}

.checkout-navigation{
    flex-direction:column;
    gap:15px;
}

.checkout-prev,
.checkout-next{
    width:100%;
}

}


/*==================================================
STEP 3 - REVIEW ORDER
==================================================*/

.checkout-step-content[data-step="3"]{
    max-width:1400px;
    margin:40px auto;
}

/*==========================
GRID
==========================*/

.checkout-step-content[data-step="3"] .checkout-grid{
    display:grid;
    grid-template-columns:2fr 380px;
    gap:35px;
    align-items:start;
}

/*==========================
LEFT CARD
==========================*/

.checkout-step-content[data-step="3"] .checkout-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #ececec;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

/*==========================
HEADER
==========================*/

.checkout-step-content[data-step="3"] .checkout-card-header{
    background:linear-gradient(135deg,#d3c49e,#d3c49e);
    padding:15px 35px;
}

.checkout-step-content[data-step="3"] .checkout-card-header h2{
    color:#fff;
    font-size:32px;
    margin:0;
}

.checkout-step-content[data-step="3"] .checkout-card-header p{
    color:rgba(255,255,255,.9);
    margin-top:0px;
    font-size:16px;
}

/*==========================
TABLE
==========================*/

.checkout-step-content[data-step="3"] .checkout-review-wrapper{
    padding:35px;
}

.checkout-step-content[data-step="3"] table{
    width:100%;
    border-collapse:collapse;
}

.checkout-step-content[data-step="3"] thead{
    background:#faf8f2;
}

.checkout-step-content[data-step="3"] thead th{
    padding:18px;
    color:#222;
    font-size:15px;
    font-weight:700;
    border-bottom:2px solid #ece4cd;
}

.checkout-step-content[data-step="3"] tbody td{
    padding:22px 18px;
    border-bottom:1px solid #efefef;
    vertical-align:middle;
}

.checkout-step-content[data-step="3"] tbody tr:hover{
    background:#faf8f2;
}

/*==========================
PRODUCT
==========================*/

.checkout-step-content[data-step="3"] .checkout-product{
    display:flex;
    align-items:center;
    gap:20px;
}

.checkout-step-content[data-step="3"] .checkout-product-image img{
    width:90px;
    height:90px;
    border-radius:14px;
    object-fit:cover;
    border:1px solid #ececec;
}

.checkout-step-content[data-step="3"] .checkout-product-info h4{
    margin:0 0 8px;
    font-size:18px;
    color:#222;
    line-height:1.5;
}

.checkout-step-content[data-step="3"] .checkout-qty{
    display:inline-block;
    background:#faf8f2;
    color:#d3c49e;
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
}

.checkout-step-content[data-step="3"] .product-total{
    text-align:right;
    font-size:15px;
    font-weight:700;
    color:#d3c49e;
}

/*==========================
TOTALS
==========================*/

.checkout-step-content[data-step="3"] tfoot th,
.checkout-step-content[data-step="3"] tfoot td{
    padding:20px 18px;
    border-top:1px solid #ececec;
}

.checkout-step-content[data-step="3"] .order-total th,
.checkout-step-content[data-step="3"] .order-total td{
    font-size:22px;
    font-weight:700;
}

.checkout-step-content[data-step="3"] .order-total td{
    color:#d3c49e;
}

/*==========================
RIGHT SUMMARY
==========================*/

.checkout-step-content[data-step="3"] .checkout-summary-card{
    background:#fff;
    border-radius:18px;
    border:1px solid #ececec;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    position:sticky;
    top:30px;
}

.checkout-step-content[data-step="3"] .checkout-summary-card h3{
    margin:0;
    background:#222;
    color:#fff;
    padding:22px 30px;
    font-size:24px;
}

.checkout-step-content[data-step="3"] .checkout-totals{
    width:100%;
    border-collapse:collapse;
}

.checkout-step-content[data-step="3"] .checkout-totals th,
.checkout-step-content[data-step="3"] .checkout-totals td{
    padding:18px 28px;
    border-bottom:1px solid #f1f1f1;
}

.checkout-step-content[data-step="3"] .checkout-totals th{
    color:#666;
    font-weight:600;
}

.checkout-step-content[data-step="3"] .checkout-totals td{
    text-align:right;
}

.checkout-step-content[data-step="3"] .checkout-totals .order-total{
    background:#faf8f2;
}

.checkout-step-content[data-step="3"] .checkout-totals .order-total th{
    color:#222;
    font-size:18px;
}

.checkout-step-content[data-step="3"] .checkout-totals .order-total td{
    color:#d3c49e;
    font-size:28px;
    font-weight:700;
}

/*==========================
BUTTONS
==========================*/

.checkout-step-content[data-step="3"] .checkout-navigation{
    display:flex;
    justify-content:space-between;
    margin-top:40px; padding: 0px;
}

.checkout-step-content[data-step="3"] .checkout-prev,
.checkout-step-content[data-step="3"] .checkout-next{
    height:56px;
    padding:0 35px;
    border:none;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.checkout-step-content[data-step="3"] .checkout-prev{
    background:#222;
    color:#fff;
}

.checkout-step-content[data-step="3"] .checkout-prev:hover{
    background:#d3c49e;
}

.checkout-step-content[data-step="3"] .checkout-next{
    background:#d3c49e;
    color:#fff;
}

.checkout-step-content[data-step="3"] .checkout-next:hover{
    background:#222;
}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

.checkout-step-content[data-step="3"] .checkout-grid{
    grid-template-columns:1fr;
}

.checkout-step-content[data-step="3"] .checkout-summary-card{
    position:relative;
    top:0;
}

}

@media(max-width:767px){

.checkout-step-content[data-step="3"] .checkout-review-wrapper{
    padding:20px;
}

.checkout-step-content[data-step="3"] .checkout-product{
    align-items:flex-start;
}

.checkout-step-content[data-step="3"] .checkout-product-image img{
    width:70px;
    height:70px;
}

.checkout-step-content[data-step="3"] .checkout-product-info h4{
    font-size:16px;
}

.checkout-step-content[data-step="3"] table{
    display:block;
    overflow-x:auto;
}

.checkout-step-content[data-step="3"] .checkout-navigation{
    flex-direction:column;
    gap:15px;
}

.checkout-step-content[data-step="3"] .checkout-prev,
.checkout-step-content[data-step="3"] .checkout-next{
    width:100%;
}

}


/*==================================================
STEP 4 - PAYMENT
==================================================*/

.checkout-step-content[data-step="4"]{
    max-width:1400px;
    margin:40px auto;
}

/*==========================
LAYOUT
==========================*/

.checkout-step-content[data-step="4"] .checkout-grid{
    display:block;
}

.checkout-step-content[data-step="4"] .checkout-left{
    max-width:900px;
    margin:0 auto;
}

/*==========================
CARD
==========================*/

.checkout-step-content[data-step="4"] .checkout-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    overflow:hidden;
    margin-bottom:35px;
}

/*==========================
HEADER
==========================*/

.checkout-step-content[data-step="4"] .checkout-card-header{
    background:linear-gradient(135deg,#d3c49e,#d3c49e);
    padding:35px;
}

.checkout-step-content[data-step="4"] .checkout-card-header h2{
    color:#fff;
    margin:0;
    font-size:32px;
}

.checkout-step-content[data-step="4"] .checkout-card-header p{
    margin-top:10px;
    color:rgba(255,255,255,.9);
    font-size:16px;
}

/*==================================================
COUPON
==================================================*/

.checkout-step-content[data-step="4"] .checkout-coupon-card{
    padding:30px;
}

.checkout-step-content[data-step="4"] .woocommerce-info{
    background:#faf8f2;
    border-left:5px solid #d3c49e;
    padding:18px 25px;
    border-radius:10px;
    color:#222;
    margin-bottom:25px;
    padding-left: 50px;
}

.checkout-step-content[data-step="4"] .woocommerce-info a{
    color:#d3c49e;
    font-weight:700;
    text-decoration:none;
}

.checkout-step-content[data-step="4"] .woocommerce-info a:hover{
    color:#222;
}

.checkout-step-content[data-step="4"] .checkout-coupon-card form,
.checkout-step-content[data-step="4"] .checkout_coupon{
    display:flex;
    gap:15px;
    align-items:center;
    flex-wrap:wrap;
}

.checkout-step-content[data-step="4"] #coupon_code{
    height:55px;
    border:2px solid #e6e6e6;
    border-radius:10px;
    padding:0 18px;
    flex:1;
    min-width:250px;
}

.checkout-step-content[data-step="4"] #coupon_code:focus{
    border-color:#d3c49e;
    outline:none;
    box-shadow:0 0 0 4px rgba(185,147,40,.12);
}

.checkout-step-content[data-step="4"] button[name="apply_coupon"]{
    height:55px;
    padding:0 30px;
    background:#222;
    color:#fff;
    border:none;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.checkout-step-content[data-step="4"] button[name="apply_coupon"]:hover{
    background:#d3c49e;
}

/*==================================================
PAYMENT
==================================================*/

.checkout-step-content[data-step="4"] #payment{
    background:#fff;
    padding:35px;
}

.checkout-step-content[data-step="4"] .payment-title{
    font-size:28px;
    color:#222;
    margin-bottom:8px;
}

.checkout-step-content[data-step="4"] .payment-description{
    color:#777;
    margin-bottom:30px;
}

/*==================================================
PAYMENT METHODS
==================================================*/

.checkout-step-content[data-step="4"] .payment_methods{
    list-style:none;
    margin:0;
    padding:0;
}

.checkout-step-content[data-step="4"] .payment-method{
    border:2px solid #ececec;
    border-radius:14px;
    margin-bottom:18px;
    transition:.3s;
    overflow:hidden;
}

.checkout-step-content[data-step="4"] .payment-method:hover{
    border-color:#d3c49e;
}

.checkout-step-content[data-step="4"] .payment-method label{
    display:flex;
    align-items:center;
    gap:15px;
    padding:20px 25px;
    cursor:pointer;
    font-size:17px;
    font-weight:600;
}

.checkout-step-content[data-step="4"] input[type=radio]{
    accent-color:#d3c49e;
    width:20px;
    height:20px;
}

.checkout-step-content[data-step="4"] .gateway-title{
    flex:1;
    color:#222;
}

.checkout-step-content[data-step="4"] .payment_box{
    background:#faf8f2;
    padding:20px 30px;
    border-top:1px solid #ece4cd;
    color:#666;
    line-height:1.8;
}

/*==================================================
PRIVACY
==================================================*/

.checkout-step-content[data-step="4"] .woocommerce-privacy-policy-text{
    background:#faf8f2;
    padding:20px;
    border-radius:12px;
    border:1px solid #ece4cd;
    margin:30px 0;
    font-size:14px;
    line-height:1.8;
}

.checkout-step-content[data-step="4"] .woocommerce-privacy-policy-text a{
    color:#d3c49e;
    font-weight:600;
}

/*==================================================
PLACE ORDER
==================================================*/

.checkout-step-content[data-step="4"] #place_order{
    width:100%;
    height:60px;
    background:linear-gradient(135deg,#d3c49e,#d3c49e);
    color:#fff;
    border:none;
    border-radius:12px;
    font-size:18px;
    font-weight:700;
    transition:.3s;
    letter-spacing:.5px;
}

.checkout-step-content[data-step="4"] #place_order:hover{
    background:#222;
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}

/*==================================================
BACK BUTTON
==================================================*/

.checkout-step-content[data-step="4"] .checkout-navigation{
    margin-top:35px;
    justify-content: center !important;
}

.checkout-step-content[data-step="4"] .checkout-prev{
    background:#222;
    color:#fff;
    border:none;
    padding:15px 35px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.checkout-step-content[data-step="4"] .checkout-prev:hover{
    background:#d3c49e;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:767px){

.checkout-step-content[data-step="4"] .checkout-card-header{
    padding:25px;
}

.checkout-step-content[data-step="4"] #payment{
    padding:20px;
}

.checkout-step-content[data-step="4"] .checkout-coupon-card{
    padding:20px;
}

.checkout-step-content[data-step="4"] .checkout_coupon{
    flex-direction:column;
}

.checkout-step-content[data-step="4"] #coupon_code,
.checkout-step-content[data-step="4"] button[name="apply_coupon"]{
    width:100%;
}

.checkout-step-content[data-step="4"] .payment-method label{
    padding:18px;
    font-size:15px;
}

}



/*----------------------------------- Product Details Page ----------------------------*/

/*==========================================
COMPOSITE STEPS
==========================================*/
.product-type-composite p.component_section_title label{display: none;}
.product-type-composite .composite_navigation.movable, .product-type-composite .composite_navigation.top{display: none;}
.product-type-composite .cart.cart_group{display: inherit !important;}
.product-type-composite .component_title_wrapper{margin-bottom: 20px;}
.product-type-composite .pagination_elements_wrapper{display: inherit !important; padding: 0px !important;}
.product-type-composite .component_content{margin-top: 20px;}


.product-type-composite .composite_pagination{
    margin:70px 0 60px;
}

.product-type-composite .pagination_elements{
    display:grid !important;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:28px;
    margin:0;
    padding:0;
    list-style:none;
}

.product-type-composite .pagination_element{
    position:relative;
    display:flex;
    gap: 15px;
    justify-content:center;
    padding:34px;
    background:#fff;
    border:1px solid #e9ecef;
    border-radius:22px;
    transition:.35s;
    overflow:hidden;
    box-shadow:0 8px 35px rgba(0,0,0,.05);
    align-items: center;
}

.product-type-composite .pagination_element:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(0,0,0,.10);
}

.product-type-composite .pagination_element_current{
    background:#dffcff;
    border-color:#73dce5;
}

.product-type-composite .pagination_element_current:before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,#dffcff 0%,#eefeff 100%);
    z-index:0;
}
.product-type-composite .pagination_element .element_inner{display: flex; gap: 15px; align-items: center;}
.product-type-composite .pagination_element>*{
    position:relative;
    z-index:2;
}

.product-type-composite .element_index {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.product-type-composite .element_title a{color: #000; text-decoration: none; font-size: 18px;}
.product-type-composite .pagination_element_current .element_index{ background: #03abba; color: #fff;}


/* Grid */
.component_option_thumbnails_container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin:0;
    padding:0;
}

.component_option_thumbnail_container{
    list-style:none;
}

/* Product Card */
.component_option_thumbnail{
    display:flex;
    flex-direction:column;
    height:100%;
    background:#fff;
    border:1px solid #ececec;
    border-radius:15px;
    overflow:hidden;
    transition:.35s ease;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    cursor:pointer;
}

.component_option_thumbnail:hover{
    transform:translateY(-8px);
    border-color:#d3c49e;
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

/* Image */
.thumbnail_image{
    background:#f8f8f8;
    padding:20px;
    text-align:center;
}

.thumbnail_image img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:contain;
    transition:.4s;
}

.component_option_thumbnail:hover img{
    transform:scale(1.06);
}

/* Content */
.thumbnail_description{
    display:flex;
    flex-direction:column;
    flex:1;
    padding:20px;
}

.thumbnail_title{
    font-size:18px;
    font-weight:600;
    line-height:1.5;
    color:#222;
    margin:0 0 15px;
    min-height:60px;
}

.thumbnail_price{
    margin-top:auto;
    font-size:24px;
    font-weight:700;
    color:#d3c49e;
}

/* Button */
.thumbnail_buttons{
    padding:20px;
    border-top:1px solid #eee;
}

.component_option_thumbnail_select{
    width:100%;
    border:none;
    background:#222;
    color:#fff;
    font-size:15px;
    font-weight:600;
    padding:14px;
    border-radius:8px;
    transition:.3s;
}

.component_option_thumbnail_select:hover{
    background:#d3c49e;
    color:#fff;
}

/* Selected Product */
.component_option_thumbnail.selected,
.component_option_thumbnail.active{
    border:2px solid #d3c49e;
    box-shadow:0 15px 35px rgba(185,147,40,.2);
}

.component_option_thumbnail.selected .component_option_thumbnail_select,
.component_option_thumbnail.active .component_option_thumbnail_select{
    background:#d3c49e;
}

/* Responsive */

@media(max-width:991px){

.component_option_thumbnails_container{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:575px){

.component_option_thumbnails_container{
grid-template-columns:1fr;
}

.thumbnail_title{
font-size:16px;
min-height:auto;
}

.thumbnail_price{
font-size:20px;
}

}



/*==============================
 FULL WIDTH SELECTED PRODUCT
==============================*/

.component_option_content_container{
    width:100%;
    margin:30px 0;
    grid-column:1 / -1;
}

.component_content.relocated{
    width:100%;
}

.component_summary{
    width:100%;
}

.component_option_content_container .component_summary .product.content.summary_content{
    display: inherit !important;
    width:100%;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 40px rgba(0,0,0,.08);
    border:1px solid #ececec;
}

/*---------------------
HEADER
----------------------*/

.composited_product_title_wrapper{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 35px;
    background:#222;
    border-bottom:4px solid #d3c49e;
    flex-wrap:wrap;

}

.selected_option_label_wrapper{

    margin:0;
    width:100%;

}

.selected_option_label{

    color:#d3c49e;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:2px;

}

.composited_product_title{

    flex:1;
    color:#fff;
    font-size:32px;
    margin:10px 0 0;
    line-height:1.3;

}

.clear_component_options{

    background:#d3c49e;
    color:#fff!important;
    padding:12px 22px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;

}

.clear_component_options:hover{

    background:#fff;
    color:#222!important;

}

/*---------------------
BODY
----------------------*/

.composited_product_details_wrapper{

    display:grid;
    grid-template-columns:320px 1fr;
    gap:40px;
    padding:40px;

}

/* Image */

.composited_product_images{

    display:flex;
    align-items:center;
    justify-content:center;
    background:#fafafa;
    border-radius:15px;
    padding:25px;

}

.composited_product_images img{

    width:100%;
    max-width:280px;
    height:auto;
    transition:.4s;

}

.composited_product_images:hover img{

    transform:scale(1.05);

}

/* Description */

.component_data{

    display:flex;
    flex-direction:column;

}

.component_data p{

    margin:0 0 15px;
    line-height:1.9;
    color:#555;
    font-size:16px;

}

/* Price Area */

.component_wrap{

    margin-top:25px;
    border-top:1px solid #eee;
    padding-top:25px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;

}

.component_wrap .price{

    font-size:42px;
    font-weight:700;
    color:#d3c49e;

}

.stock{

    color:#000;
    border-radius:30px;
    font-weight:600;
    margin:0;

}

/* Hide Quantity */

.quantity_button{

    display:none;

}

/*---------------------
Navigation
----------------------*/

.composite_navigation{

    padding:25px 35px;
    border-top:1px solid #eee;
    background:#fff;
    border-radius: 10px;

}

.composite_navigation_inner{

    display:flex;
    justify-content:flex-end;
    gap: 15px;

}

.page_button{

    background:#d3c49e;
    color:#fff!important;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;

}

.page_button:hover{

    background:#222;

}

.page_button.prev.invisible{

    display:none;

}

/*---------------------
Responsive
----------------------*/

@media(max-width:991px){

.composited_product_details_wrapper{

    grid-template-columns:1fr;

}

.composited_product_images{

    max-width:400px;
    margin:auto;

}

.composited_product_title{

    font-size:24px;

}

.component_wrap{

    flex-direction:column;
    align-items:flex-start;

}

.component_wrap .price{

    font-size:34px;

}

}

@media(max-width:767px){

.composited_product_title_wrapper{

    padding:20px;

}

.composited_product_details_wrapper{

    padding:20px;
    gap:25px;

}

.composite_navigation{

    padding:20px;

}

.page_button{

    width:100%;
    text-align:center;

}

}




/* ==========================================
   REVIEW CONFIGURATION
========================================== */

.cart.composite_data.multistep{display: inherit;}
.cart.composite_data.multistep .composite_navigation{display: none;}

.cart.composite_data.multistep .composite_summary{
    margin:50px 0;
}

.cart.composite_data.multistep .summary_title{
    text-align:center;
    font-size:34px;
    font-weight:700;
    color:#222;
    margin-bottom:40px;
}

.cart.composite_data.multistep .step_index{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    background:#d3c49e;
    color:#fff;
    border-radius:50%;
    margin-right:12px;
    font-size:18px;
}

/* Grid */

.cart.composite_data.multistep .summary_elements{

    display:grid !important;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:30px;

    padding:0;
    margin:0;

}

/* Card */

.cart.composite_data.multistep .summary_element{

    list-style:none;
    margin:0;

}

.cart.composite_data.multistep .summary_element_wrapper{

    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    overflow:hidden;
    height:100%;
    transition:.35s;
    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.cart.composite_data.multistep .summary_element_wrapper:hover{

    transform:translateY(-8px);
    border-color:#d3c49e;
    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.cart.composite_data.multistep .summary_element_wrapper_inner{

    display:flex;
    flex-direction:column;
    padding:25px;
    height:100%;

}

/* Image */

.cart.composite_data.multistep .summary_element_image{

    text-align:center;
    margin-bottom:20px;

}

.cart.composite_data.multistep .summary_element_image img{

    width:180px;
    height:180px;
    object-fit:contain;
    transition:.4s;

}

.cart.composite_data.multistep .summary_element_wrapper:hover img{

    transform:scale(1.05);

}

/* Title */

.cart.composite_data.multistep .summary_element_title{

    margin-bottom:15px;

}

.cart.composite_data.multistep .summary_element_title h3{

    font-size:20px;
    margin:0;
    color:#222;

}

/* Product Name */

.cart.composite_data.multistep .summary_element_selection{

    flex:1;

}

.cart.composite_data.multistep .content_product_title{

    display:block;
    font-size:17px;
    line-height:1.6;
    font-weight:600;
    color:#444;

}

/* Price */

.cart.composite_data.multistep .summary_element_price{

    margin:20px 0;

}

.cart.composite_data.multistep .summary_element_price .price{

    font-size:32px;
    color:#d3c49e;
    font-weight:700;

}

/* Button */

.cart.composite_data.multistep .summary_element_button{

    margin-top:auto;

}

.cart.composite_data.multistep .summary_element_select{

    display:block;
    width:100%;
    text-align:center;
    background:#222;
    color:#fff !important;
    padding:14px;
    border-radius:10px;
    text-decoration:none;
    transition:.3s;

}

.cart.composite_data.multistep .summary_element_select:hover{

    background:#d3c49e;

}
.component_pagination{display: inline-block; width: 100%; margin: 30px 0px; text-align: center;}
.component_pagination button{background: #d3c49e;
  color: #fff !important;
  padding: 15px 35px;
  border-radius: 50px; border: none;
  cursor: pointer;}
/* Responsive */

@media(max-width:991px){

.cart.composite_data.multistep .summary_elements{

    grid-template-columns:1fr;

}

}

@media(max-width:576px){

.cart.composite_data.multistep .summary_title{

    font-size:28px;

}

.cart.composite_data.multistep .summary_element_wrapper_inner{

    padding:18px;

}

.cart.composite_data.multistep .summary_element_image img{

    width:140px;
    height:140px;

}

}


/*========================================
  Composite Bottom Section
========================================*/

.cart.composite_data.multistep .composite_wrap{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    padding:30px;
    margin-top:40px;
    background:#fff;
    border:1px solid #ececec;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

/* Price */

.cart.composite_data.multistep .composite_price .price{
    margin:0;
    font-size:42px;
    font-weight:700;
    color:#d3c49e;
    line-height:1;
}

/* Right Side */

.cart.composite_data.multistep .composite_button{
    display:flex;
    align-items:center;
    gap:18px;
}

/*========================================
 Quantity
========================================*/

.cart.composite_data.multistep .quantity{
    display:flex;
    align-items:center;
    justify-content:center;
    width:90px;
    height:52px;
    background:#fff;
    border:2px solid #ddd;
    border-radius:10px;
    overflow:hidden;
    transition:.3s;
}

.cart.composite_data.multistep .quantity:hover{
    border-color:#d3c49e;
}

.cart.composite_data.multistep .quantity:focus-within{
    border-color:#d3c49e;
    box-shadow:0 0 0 4px rgba(185,147,40,.15);
}

.cart.composite_data.multistep .quantity input.qty{
    width:100%;
    height:100%;
    border:none;
    background:none;
    text-align:center;
    font-size:18px;
    font-weight:600;
    color:#222;
    outline:none;
    padding:0;
}

/* Remove browser arrows */

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

.cart.composite_data.multistep input[type=number]{
    -moz-appearance:textfield;
}

/*========================================
 Button
========================================*/

.cart.composite_data.multistep .composite_add_to_cart_button{
    height:52px;
    padding:0 38px;
    border:none;
    border-radius:10px;
    background:#222;
    color:#fff;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.cart.composite_data.multistep .composite_add_to_cart_button:hover{
    background:#d3c49e;
}

/*========================================
 Mobile
========================================*/

@media(max-width:768px){

.cart.composite_data.multistep .composite_wrap{
    flex-direction:column;
    align-items:stretch;
}

.cart.composite_data.multistep .composite_button{
    width:100%;
    flex-direction:column;
}

.cart.composite_data.multistep .quantity{
    width:100%;
}

.cart.composite_data.multistep .composite_add_to_cart_button{
    width:100%;
}

.cart.composite_data.multistep .composite_price{
    text-align:center;
}

}

.product-page{padding-top: 130px;}
.woocommerce-message:focus-visible{outline: none !important;}
.woocommerce-account article{padding-top: 140px;}


/*=========================================
  WooCommerce My Account
=========================================*/

.woocommerce-account article{
    max-width:1400px;
    margin:0px auto;
   
}

.woocommerce-account article > h1{
    text-align:center;
    font-size:36px;
    font-weight:700;
    color:#222;
    margin-bottom:50px;
    position:relative;
}

/*==============================
Columns
==============================*/

.woocommerce-account #customer_login{
    display:flex;
    gap:40px;
    align-items:stretch;
}

.woocommerce-account #customer_login .u-column1,
.woocommerce-account #customer_login .u-column2{
    width:50%;
    background:#fff;
    border:1px solid #ececec;
    border-radius:12px;
    padding:45px;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

/*==============================
Heading
==============================*/

.woocommerce-account #customer_login h2{
    margin:0 0 30px;
    font-size:26px;
    color:#222;
    font-weight:700;
}

/*==============================
Label
==============================*/

.woocommerce-account label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:600;
    color:#555;
}

/*==============================
Input
==============================*/

.woocommerce-account input[type="text"],
.woocommerce-account input[type="email"],
.woocommerce-account input[type="password"]{
    width:100%;
    height:56px;
    padding:0 18px;
    border:1px solid #d9d9d9;
    border-radius:6px;
    background:#fafafa;
    font-size:15px;
    transition:.3s;
}

.woocommerce-account input:focus{
    outline:none;
    border-color:#d3c49e;
    background:#fff;
    box-shadow:0 0 0 4px rgba(207,187,130,.15);
}

/*==============================
Rows
==============================*/

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

/*==============================
Password Icon
==============================*/

.woocommerce-account .password-input{
    position:relative;
    display:block;
}

.woocommerce-account .show-password-input{
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    border:none;
    background:none;
}

/*==============================
Remember + Lost Password
==============================*/

.woocommerce-account .woocommerce-form-login__rememberme{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
}

.woocommerce-account .woocommerce-form-login__rememberme input{
    width:18px;
    height:18px;
}

.woocommerce-account .lost_password{
    margin-top:18px;
}

.woocommerce-account .lost_password a{
    color:#d3c49e;
    text-decoration:none;
    font-weight:600;
}

.woocommerce-account .lost_password a:hover{
    color:#222;
}

/*==============================
Buttons
==============================*/

.woocommerce-account button.button,
.woocommerce-account .woocommerce-button,
.woocommerce-account .woocommerce-Button{
    width:100%;
    height:58px;
    background:#d3c49e;
    color:#fff;
    border:none;
    border-radius:6px;
    font-size:16px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
    cursor:pointer;
    transition:.3s;
}

.woocommerce-account button.button:hover,
.woocommerce-account .woocommerce-button:hover,
.woocommerce-account .woocommerce-Button:hover{
    background:#b79d60;
    transform:translateY(-2px);
}

/*==============================
Privacy
==============================*/

.woocommerce-account .woocommerce-privacy-policy-text{
    margin:25px 0;
    padding:15px;
    background:#fafafa;
    border-left:4px solid #d3c49e;
    font-size:14px;
    line-height:1.8;
}

.woocommerce-account .woocommerce-privacy-policy-text a{
    color:#d3c49e;
    font-weight:600;
}

/*==============================
Required *
==============================*/

.woocommerce-account .required{
    color:#d93025;
}

/*==============================
Placeholder
==============================*/

.woocommerce-account ::placeholder{
    color:#999;
}

/*==============================
Responsive
==============================*/

@media (max-width:991px){

.woocommerce-account #customer_login{
    flex-direction:column;
}

.woocommerce-account #customer_login .u-column1,
.woocommerce-account #customer_login .u-column2{
    width:100%;
    padding:30px;
}

.woocommerce-account article > h1{
    font-size:34px;
}

}

@media (max-width:575px){

.woocommerce-account article{
    padding:0 15px;
}

.woocommerce-account #customer_login .u-column1,
.woocommerce-account #customer_login .u-column2{
    padding:22px;
}

.woocommerce-account article > h1{
    font-size:28px;
}

.woocommerce-account #customer_login h2{
    font-size:24px;
}

.woocommerce-account input[type="text"],
.woocommerce-account input[type="email"],
.woocommerce-account input[type="password"]{
    height:50px;
}

.woocommerce-account button.button,
.woocommerce-account .woocommerce-button,
.woocommerce-account .woocommerce-Button{
    height:52px;
}

}



/*=========================================
  WooCommerce Lost Password
=========================================*/

.woocommerce-ResetPassword{
    max-width:520px;
    margin:70px auto;
    padding:45px;
    background:#fff;
    border:1px solid #ececec;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

/* Description */

.woocommerce-ResetPassword > p:first-child{
    margin:0 0 30px;
    color:#666;
    font-size:15px;
    line-height:1.8;
    text-align:center;
}

/* Form Rows */

.woocommerce-ResetPassword .form-row{
    margin-bottom:22px;
}

/* Label */

.woocommerce-ResetPassword label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:600;
    color:#444;
}

/* Required */

.woocommerce-ResetPassword .required{
    color:#e53935;
}

/* Input */

.woocommerce-ResetPassword input[type="text"],
.woocommerce-ResetPassword input[type="email"]{
    width:100%;
    height:56px;
    padding:0 18px;
    border:1px solid #ddd;
    border-radius:6px;
    background:#fafafa;
    font-size:15px;
    transition:.3s ease;
    box-sizing:border-box;
}

.woocommerce-ResetPassword input:focus{
    outline:none;
    border-color:#d3c49e;
    background:#fff;
    box-shadow:0 0 0 4px rgba(207,187,130,.15);
}

/* Placeholder */

.woocommerce-ResetPassword input::placeholder{
    color:#999;
}

/* Button */

.woocommerce-ResetPassword .woocommerce-Button,
.woocommerce-ResetPassword button.button{
    width:100%;
    height:56px;
    background:#d3c49e;
    color:#fff;
    border:none;
    border-radius:6px;
    font-size:16px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
    cursor:pointer;
    transition:.3s ease;
}

.woocommerce-ResetPassword .woocommerce-Button:hover,
.woocommerce-ResetPassword button.button:hover{
    background:#b89d5f;
    transform:translateY(-2px);
}

/* Clearfix */

.woocommerce-ResetPassword .clear{
    display:none;
}

/* Responsive */

@media (max-width:767px){

    .woocommerce-ResetPassword{
        margin:40px 20px;
        padding:30px 24px;
    }

}

@media (max-width:480px){

    .woocommerce-ResetPassword{
        margin:30px 15px;
        padding:25px 20px;
    }

    .woocommerce-ResetPassword input[type="text"],
    .woocommerce-ResetPassword input[type="email"],
    .woocommerce-ResetPassword .woocommerce-Button,
    .woocommerce-ResetPassword button.button{
        height:52px;
    }

}
.hts-tabs .woocommerce-tabs ul{display: none;}
.woocommerce-Tabs-panel--description h2{display: none;}

.spa-video-section2{

    max-width:1400px;
    margin:30px auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;

    padding:0;
}
.spa-video-section-my-video{

    max-width:1400px;
    margin:30px auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    padding:0;
}


.spa-video-section2 .video-card{
    text-align:center;
}

.spa-video-section2 .video-card h3{font-size: 18px; margin-top: 20px;}

.spa-video-section2 .video-wrapper{

    position:relative;
    width:100%;
    overflow:hidden;
    border-radius:2px;

    aspect-ratio:16/9;

    background:#000;
}

.spa-video-section2 .video-wrapper iframe{

    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    border:0;
}

.spa-video-section2 .video-wrapper img{ width:100%;}

.spa-video-section2 .buy-btn{

    display:inline-block;
    margin-top:35px;
    background:#d6c391;
    color:#fff;
    text-decoration:none;
    padding:15px 30px;
    font-size:16px;
    font-weight:500;
    letter-spacing:.5px;
    border-radius: 8px;
    transition:.3s;
}

.spa-video-section2 .buy-btn:hover{

    background:#b79f67;
}

.my-video-bottom{padding-top: 70px;}

@media(max-width:991px){

    .spa-video-section2{

        grid-template-columns:1fr;
        gap:35px;
        padding: 0 20px;
    }

    .spa-video-section-my-video{

        grid-template-columns:1fr;
        gap:35px;
        padding: 0 20px;
    }

    .spa-video-section2 .buy-btn{

        width:100%;
        max-width:320px;

        font-size:24px;
    }

}

@media(max-width:767px){

    .spa-video-section2{

        padding:0 15px;
    }

    .spa-video-section2 .buy-btn{

        font-size:20px;
        padding:16px 20px;
    }

}

.relax-showcase-area{

    width:100%;
    padding:40px 20px 80px;

}

.relax-container{

    max-width:1400px;
    margin:auto;

}


/*====================================
    TOP HEADING
====================================*/

.relax-heading-block{

    text-align:center;
    margin-bottom:50px;

}

.relax-heading-block h2{

    font-size:40px;
    font-weight:300;
    color:#3f3d57;
    letter-spacing:2px;
    margin-bottom:15px;

}

.relax-heading-block h3{

    font-size:30px;
    font-weight:300;
    color:#3f3d57;
    margin-bottom:18px;
    letter-spacing:1px;

}

.relax-divider{

    width:90px;
    height:2px;
    background:#ccb57b;
    display:block;
    margin:0 auto 30px;

}

.relax-heading-block p{

    max-width:900px;
    margin:auto;

    font-size:18px;
    font-weight:500;

    color:#6b6b6b;

}

.relax-heading-block strong{

    font-weight:700;

}

/*====================================
    VIDEO GRID
====================================*/

.therapy-video-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:38px;

}

.therapy-video-item{

    text-align:center;

}

.therapy-video-frame{

    position:relative;

    width:100%;
    overflow:hidden;

    background:#000;

    aspect-ratio:16/9;

}

.therapy-video-frame iframe{

    position:absolute;
    left:0;
    top:0;

    width:100%;
    height:100%;

    border:0;

}

.therapy-buy-button{

    display:inline-flex;
    justify-content:center;
    align-items:center;

    margin-top:28px;

    min-width:215px;
    height:45px;

    padding:0 30px;

    background:#d4bf88;

    color:#fff;

    font-size:16px;
    font-weight:500;

    text-transform:uppercase;

    transition:.35s ease;

    border-radius:4px;
    text-decoration: none;

}

.therapy-buy-button:hover{

    background:#bca46a;

}

/*====================================
    BY PACK SECTION
====================================*/

.bundle-offer-area{

    text-align:center;
    padding:70px 0 40px;

}

.bundle-offer-area h3{

    font-size:36px;
    font-weight:300;
    color:#3f3d57;
    letter-spacing:1px;
    margin-bottom:18px;

}

.bundle-offer-area p{

    max-width:900px;
    margin:0 auto 45px;

    font-size:18px;
    font-weight:500;
    color:#6b6b6b;

}

.bundle-offer-area strong{

    font-weight:700;

}

.bundle-buy-button{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:520px;
    min-height:45px;

    padding:0 35px;

    background:#d4bf88;
    color:#ffffff;

    font-size:16px;
    font-weight:500;

    text-transform:uppercase;

    border-radius:4px;

    transition:.35s;
    text-decoration: none;

}

.bundle-buy-button:hover{

    background:#bca46a;

}


/*====================================
    SECTION DIVIDER
====================================*/

.section-line{

    width:100%;
    max-width:760px;

    height:1px;

    background:#ccb57b;

    margin:10px auto 40px auto;

}


/*====================================
    GIFT SECTION
====================================*/

.gift-wrapper{

    text-align:center;

}

.gift-wrapper h3{

    font-size:36px;
    font-weight:300;
    color:#3f3d57;

    letter-spacing:1px;

    margin-bottom:40px;

}

.gift-image-box{

    width:360px;
    margin:0 auto 40px;

}

.gift-image-box img{

    width:100%;
    display:block;

}

.gift-wrapper p{

    max-width:900px;

    margin:18px auto;

    font-size:18px;
    color:#68748a;

    line-height:1.9;

}

.gift-wrapper strong{

    font-weight:700;

}


/*====================================
    CHARITY NOTE
====================================*/

.charity-note{

    padding-top:10px;

}

.charity-note p{

    font-size:17px;
    line-height:1.9;

    color:#5d6470;

    font-weight:500;

}

.charity-note strong{

    font-weight:700;

}

.charity-note a{

    color:#c5a75d;
    font-weight:600;

    word-break:break-word;

}

.charity-note a:hover{

    text-decoration:underline;

}


/*====================================
    SPACING
====================================*/

.therapy-video-item,
.bundle-offer-area,
.gift-wrapper,
.charity-note{

    width:100%;

}

/*====================================
    RESPONSIVE CSS
====================================*/

/***************
  Large Tablet
****************/

@media (max-width:1199px){

    .relax-container{
        max-width:960px;
    }

    .therapy-video-grid{
        gap:30px;
    }

    .relax-heading-block h2{
        font-size:36px;
    }

    .bundle-buy-button{
        min-width:460px;
    }

}


/***************
    Tablet
****************/

@media (max-width:991px){

    .relax-showcase-area{
        padding:50px 20px 70px;
    }

    .therapy-video-grid{

        grid-template-columns:repeat(2,1fr);
        gap:35px;

    }

    .therapy-video-item:last-child{

        grid-column:1 / -1;
        max-width:500px;
        margin:0 auto;

    }

    .relax-heading-block h2{
        font-size:30px;
    }

    .relax-heading-block h3,
    .bundle-offer-area h3,
    .gift-wrapper h3{
        font-size:30px;
    }

    .relax-heading-block p,
    .bundle-offer-area p,
    .gift-wrapper p,
    .charity-note p{
        font-size:16px;
    }

    .bundle-buy-button{

        min-width:100%;
        max-width:550px;

    }

    .gift-image-box{
        width:320px;
    }

}


/***************
    Mobile
****************/

@media (max-width:767px){

    .relax-showcase-area{

        padding:40px 15px 60px;

    }

    .therapy-video-grid{

        grid-template-columns:1fr;
        gap:40px;

    }

    .therapy-video-item:last-child{

        grid-column:auto;
        max-width:100%;

    }

    .relax-heading-block{

        margin-bottom:40px;

    }

    .relax-heading-block h2{

        font-size:28px;

    }

    .relax-heading-block h3,
    .bundle-offer-area h3,
    .gift-wrapper h3{

        font-size:28px;

    }

    .relax-heading-block p,
    .bundle-offer-area p,
    .gift-wrapper p,
    .charity-note p{

        font-size:15px;
        line-height:1.8;

    }

    .therapy-buy-button{

        width:100%;
        max-width:280px;

        min-width:unset;

        height:45px;

        font-size:16px;

    }

    .bundle-buy-button{
        width:100%;
        min-width:unset;
        padding:16px 20px;
        height:auto;
        font-size:16px;
    }

    .gift-image-box{

        width:260px;

    }

    .section-line{

        margin:10px auto 35px auto;

    }

}


/***************
   Small Mobile
****************/

@media (max-width:480px){

    .relax-heading-block h2{

        font-size:26px;
        letter-spacing:1px;

    }

    .relax-heading-block h3,
    .bundle-offer-area h3,
    .gift-wrapper h3{

        font-size:24px;

    }

    .therapy-buy-button{

        font-size:16px;
        padding:0 15px;

    }

    .bundle-buy-button{

        font-size:16px;
        padding:15px;

    }

    .gift-image-box{

        width:220px;

    }

    .relax-divider{

        width:70px;

    }

}