/* understrap-child-main: compiled fallback styles (menu/header + typography)
   Note: this file is enqueued as `css/child-theme.min.css`. */

/* Typography fundamentals */
body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: #55575B;
  background-color: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: #1A1C20;
  text-transform: none;
}

h1, h2, h3 { font-size: 34px; }
p { font-size: 17px; color: #55575B; }

@media (max-width: 768px) {
  h1, h2, h3 { font-size: 23px; }
}

.navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
}

/* Global radius (5%) */
.nav-item,
.action-btn,
.social-links a,
.user-dropdown {
  border-radius: 0 !important;
}
.btn-acc { border-radius: 0 !important; }

/* --- Header desktop --- */
.header-sticky {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: #ffffff;
  height: 80px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.top-main-nav {
  width: 1240px;
  max-width: 95%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
}

.top-main-nav nav { justify-self: center; }

.logo-text {
  font-size: 26px;
  font-weight: 800;
  color: #1A1C20;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0;
  line-height: 1;
}

.logo-text span { color: #2FA4A9; }

.logo-text img,
.custom-logo-link img {
  height: 42px;
  width: auto;
  max-width: 240px;
  display: block;
}

@media (max-width: 1024px) {
  .logo-text img,
  .custom-logo-link img {
    height: 32px;
    max-width: 200px;
  }
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 5px;
  margin: 0;
  padding: 0;
}

.nav-item {
  color: #1A1C20;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 0 18px;
  height: 46px;
  display: flex;
  align-items: center;
  transition: 0.2s;
}

.nav-item:hover,
.nav-item.active {
  color: #fff !important;
  background: #2FA4A9 !important;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.social-links {
  display: flex;
  gap: 5px;
  padding-right: 10px;
  border-right: 1px solid #ddd;
  height: 30px;
  align-items: center;
}

.social-links a {
  color: #2FA4A9;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
}

.social-links a:hover { background: #f0fbfc; }

.action-btn {
  color: #1A1C20 !important;
  width: 48px;
  height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
  border-radius: 0 !important;
  box-sizing: border-box;
  line-height: 1;
}

.action-btn:hover { background: #eee; color: #2FA4A9 !important; }
.action-btn:hover i { color: #2FA4A9 !important; }
.user-menu-wrapper:hover .action-btn { background: #ededed; color: #2FA4A9 !important; }
.user-menu-wrapper:hover .action-btn i { color: #2FA4A9 !important; }
.menu-item-wrapper:hover .action-btn { background: #ededed; color: #2FA4A9 !important; }
.menu-item-wrapper:hover .action-btn i { color: #2FA4A9 !important; }
.action-btn::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
  background: #eee;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.action-btn:hover::after { opacity: 1; }
.menu-item-wrapper:hover .action-btn::after { opacity: 1; }
.user-menu-wrapper:hover .action-btn::after { opacity: 1; }

/* --- User dropdown desktop --- */
.user-menu-wrapper {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
}

.user-dropdown {
  position: absolute;
  top: 61px;
  right: 0;
  width: 240px;
  background: #ededed;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border: 0;
  padding: 16px 14px 18px 14px;
  display: none;
  z-index: 2100;
  border-radius: 0 !important;
}

.user-menu-wrapper:hover .user-dropdown { display: block; }
.user-dropdown .dropdown-link { display:block;padding:14px 18px;color:#1A1C20;font-weight:700;text-decoration:none; }
.user-dropdown .dropdown-link:hover { background:#e2e2e2; color:#2FA4A9; }
.user-dropdown .dropdown-link.logout,
.user-dropdown .dropdown-link--logout { color:#cc0000; border-top:1px solid #d1d1d1; padding-top:14px; margin-top:6px; }

.btn-acc {
  display: block;
  margin: 5px 15px 10px 15px;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none !important;
  border-radius: 0 !important;
}

.btn-login { background: #D27A1F; color: #fff !important; }
.btn-register { background: #1A1C20; color: #fff !important; }

.dropdown-link {
  display: block;
  padding: 10px 20px;
  color: #1A1C20;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.dropdown-link:hover { background: #f8f8f8; color: #2FA4A9; }

/* --- Mobile header --- */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #ffffff;
  z-index: 2005;
  border-bottom: 1px solid #eee;
  padding: 0 12px;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  box-sizing: border-box;
}

.mobile-header .mobile-cart-btn { margin-left: auto; }

.mobile-auth-bar {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 2004;
  display: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.mobile-auth-bar.active { display: block; }

.mobile-auth-logged-out {
  display: flex;
  width: 100%;
  gap: 16px;
  padding: 2px;
  box-sizing: border-box;
}

.mobile-auth-logged-in {
  width: 100%;
  text-align: center;
  padding: 15px;
}

.mobile-auth-link {
  text-decoration: none;
  color: #2FA4A9;
  font-weight: 700;
}
.mobile-auth-bar .btn-acc {
  flex: 1;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
}
.contact-section-final,.contact-section-final *{font-family:"Open Sans",sans-serif!important;box-sizing:border-box}
.contact-section-final{padding:10px 0;background-color:#fff}
.contact-container-flex{width:1240px;max-width:95%;margin:0 auto;display:flex;align-items:stretch;gap:60px;flex-wrap:wrap}
.contact-details-side{flex:1;min-width:320px}
.contact-details-side h2{font-size:28px;font-weight:800;color:#1a1c20;margin:0 0 20px 0;text-transform:lowercase}
.contact-details-side h2::first-letter{text-transform:uppercase}
.contact-main-desc{color:#888;font-size:14px;line-height:1.6;margin-bottom:30px}
.data-group-box{margin-bottom:20px;padding-bottom:10px;border-bottom:1px solid #f5f5f5}
.data-label-small{font-size:11px;font-weight:700;color:#bbb;text-transform:uppercase;margin-bottom:5px;display:block}
.data-value-text{font-size:14px;font-weight:600;color:#111;margin:0;text-decoration:none}
.contact-form-side{flex:1;min-width:350px;background:#f5f5f5;padding:45px;border:1px solid #ebebeb;box-shadow:0 15px 40px rgba(0,0,0,.08);display:flex;flex-direction:column}
.form-full-layout{display:flex;flex-direction:column;gap:15px;height:100%}
.ui-input{width:100%;padding:10px 15px!important;border:1px solid #e0e0e0!important;background:#fff;font-size:14px;border-radius:0!important;outline:none;transition:border-color .3s;box-shadow:inset 0 2px 4px rgba(0,0,0,.05)}
.ui-input:focus{border-color:#000!important}
textarea.ui-input{flex-grow:1;min-height:150px;resize:none}
.checkbox-container{display:flex;gap:10px;align-items:flex-start;font-size:13px;color:#555;line-height:1.5}
.checkbox-container input{accent-color:#D27A1F;width:16px;height:16px;margin-top:2px}
.checkbox-container a{color:#000;font-weight:700;text-decoration:underline}
.btn-ui-submit{background:#D27A1F;color:#fff;border:1px solid #D27A1F;padding:10px 40px!important;font-size:14px;font-weight:700;cursor:pointer;border-radius:0;align-self:flex-start;transition:.3s;text-transform:lowercase;margin-top:10px}
.btn-ui-submit::first-letter{text-transform:uppercase}
.btn-ui-submit:hover{background:transparent;color:#000;border-color:#000}
@media (max-width:900px){.contact-container-flex{flex-direction:column}.btn-ui-submit{width:100%}.contact-form-side{padding:30px 20px}}
.op-form-messages{margin-bottom:10px}
.op-form-messages .ok{color:#2FA4A9;font-weight:700}
.op-form-messages .err{color:#cc0000;font-weight:700}
.account-section,.account-section *{font-family:"Open Sans",sans-serif!important;box-sizing:border-box}
.account-section{padding:10px 0;background:#fff}
.account-container{width:1240px;max-width:95%;margin:0 auto;display:flex;flex-direction:column;gap:30px}
.account-welcome-text{font-size:14px;color:#555;line-height:1.6}
.account-main-card{background:#f5f5f5;padding:60px 45px;border:1px solid #ebebeb;box-shadow:0 15px 40px rgba(0,0,0,.08);display:flex;flex-direction:column;align-items:center;text-align:center;min-height:320px;justify-content:center;border-radius:0}
.status-icon-box{margin-bottom:25px}
.status-icon-box svg{width:60px;height:60px;fill:none;stroke:#000;stroke-width:1.5}
.status-title{font-size:20px;font-weight:800;color:#1a1c20;margin:0 0 15px 0;text-transform:none}
.status-desc{color:#888;font-size:14px;max-width:500px;line-height:1.6;margin-bottom:35px}
.btn-account-action{background:#D27A1F;color:#fff;border:1px solid #D27A1F;padding:10px 40px!important;font-size:14px;font-weight:700;cursor:pointer;border-radius:0;transition:.3s;text-transform:lowercase;text-decoration:none;display:inline-block}
.btn-account-action::first-letter{text-transform:uppercase}
.btn-account-action:hover{background:transparent;color:#000;border-color:#000}
.account-links{display:flex;gap:18px;flex-wrap:wrap;font-weight:700}
.account-links a{text-decoration:none;color:#1a1c20;font-size:14px}
.account-links a:hover{color:#2FA4A9}
.account-data-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:20px}
.account-tile{background:#f5f5f5;border:1px solid #ebebeb;box-shadow:0 8px 24px rgba(0,0,0,.06);padding:18px;border-radius:0}
.account-tile h3{margin:0 0 10px 0;font-size:16px;font-weight:800;color:#1a1c20;text-transform:none}
.account-tile p,.account-tile li{font-size:14px;color:#555;margin:0 0 6px 0}
.account-tile ul{margin:0;padding-left:18px}
.cart-section,.cart-section *{font-family:"Open Sans",sans-serif!important;box-sizing:border-box}
.cart-section{padding:10px 0;background-color:#fff}
.cart-container{width:1240px;max-width:95%;margin:0 auto}
.cart-main-card{background:#f5f5f5;padding:60px 45px;border:1px solid #ebebeb;box-shadow:0 15px 40px rgba(0,0,0,.08);display:flex;flex-direction:column;align-items:center;text-align:center;min-height:400px;justify-content:center}
.cart-empty-icon{margin-bottom:25px;opacity:.8}
.cart-empty-icon svg{width:70px;height:70px;fill:none;stroke:#000;stroke-width:1.2}
.cart-title{font-size:24px;font-weight:800;color:#1a1c20;margin:0 0 15px 0;text-transform:none}
.cart-desc{color:#888;font-size:14px;max-width:450px;line-height:1.6;margin-bottom:35px}
.btn-cart-back{background:#D27A1F;color:#fff;border:1px solid #D27A1F;padding:12px 45px!important;font-size:14px;font-weight:700;cursor:pointer;border-radius:0!important;transition:.3s;text-transform:lowercase;text-decoration:none;display:inline-block}
.btn-cart-back::first-letter{text-transform:uppercase}
.btn-cart-back:hover{background:transparent;color:#000;border-color:#000}
@media (max-width:768px){.cart-main-card{padding:40px 20px}}
.account-page-main,.account-page-main *{font-family:"Open Sans",sans-serif!important;box-sizing:border-box}
.account-page-main{padding:10px 0 80px;background-color:#fff}
.container-1240{width:1240px;max-width:95%;margin:0 auto}
.account-status-hero{background:#f5f5f5;padding:80px 40px;border:1px solid #ebebeb;box-shadow:0 15px 45px rgba(0,0,0,.06);text-align:center;margin-bottom:50px;border-radius:0}
.account-status-hero svg{width:60px;height:60px;margin-bottom:25px}
.account-status-hero h2{font-size:24px;font-weight:800;color:#1a1c20;margin:0 0 15px 0;text-transform:none}
.account-status-hero p{font-size:14px;color:#666;margin-bottom:35px}
.account-sub-nav{display:flex;gap:40px;border-bottom:1px solid #e0e0e0;margin-bottom:50px;padding-bottom:12px}
.account-sub-nav a{text-decoration:none;color:#000;font-size:14px;font-weight:700;text-transform:none;position:relative}
.account-sub-nav a.active{color:#D27A1F}
.account-sub-nav a.active::after{content:"";position:absolute;bottom:-13px;left:0;width:100%;height:2px;background:#D27A1F}
.account-info-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px}
.card-small-grey{background:#f5f5f5;padding:30px;border:1px solid #ebebeb;min-height:140px;border-radius:0}
.card-small-grey h3{font-size:16px;font-weight:800;margin:0 0 12px 0;text-transform:none}
.card-small-grey p{font-size:14px;color:#888;margin:0}
.btn-orange-full{background:#D27A1F;color:#fff;border:1px solid #D27A1F;padding:12px 45px;font-size:14px;font-weight:700;cursor:pointer;display:inline-block;text-decoration:none;border-radius:0!important;transition:.3s ease;text-transform:none}
.btn-orange-full:hover{background:#000;border-color:#000;color:#fff}
@media (max-width:950px){.account-info-grid{grid-template-columns:1fr}.account-sub-nav{gap:20px;overflow-x:auto}}

/* Mobile menu hamburger */
#m-menu-container {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 3000;
  transition: 0.3s;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
}

body.menu-open #m-menu-container { left: 0; }

.m-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2999;
  display: none;
}

.m-link {
  display: block;
  padding: 18px 25px;
  color: #1A1C20;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #f5f5f5;
  font-size: 16px;
}

@media (max-width: 1100px) {
  .header-sticky { display: none; }
  .mobile-header { display: flex; }
  body { padding-top: 70px; }
}

/* Footer */
.custom-footer{
  background-color:#f4f4f4;
  color:#1A1C20;
  font-family:"Open Sans",sans-serif;
  padding:60px 0 30px;
  border-top:1px solid #e0e0e0;
  line-height:1.6;
  width:100%;
  box-sizing:border-box
}
.footer-container{width:1240px;max-width:90%;margin:0 auto}
.footer-wrapper{display:grid;grid-template-columns:1.5fr .8fr 1fr 1.2fr;gap:40px}
.footer-h{font-size:16px;font-weight:700;margin-bottom:25px;color:#000;display:block;text-transform:none}
.footer-h::after{content:"";display:block;width:25px;height:2px;background:#000;margin-top:8px}
.footer-brand .logo-text{font-size:24px;font-weight:800;text-decoration:none;color:#000;margin-bottom:15px;display:inline-block}
.footer-brand .logo-text span{color:#2FA4A9}
.footer-text{font-size:14px;color:#666;margin-bottom:25px;max-width:320px}
.footer-links{list-style:none;padding:0;margin:0}
.footer-links li{margin-bottom:12px}
.footer-links a{text-decoration:none;color:#555;font-weight:600;font-size:14px;transition:.3s ease;display:inline-block}
.footer-links a:hover{color:#2FA4A9;transform:translateX(4px)}
.footer-contact .contact-item{font-size:14px;color:#555;display:flex;align-items:center;gap:12px;margin-bottom:15px;text-decoration:none;transition:.2s}
.footer-contact a.contact-item:hover{color:#2FA4A9}
.footer-contact i{color:#000;width:18px}
.footer-social{display:flex;gap:10px}
.footer-social a{width:38px;height:38px;background:#fff;border:1px solid #ddd;display:flex;align-items:center;justify-content:center;color:#000;border-radius:5%;text-decoration:none;transition:.3s}
.footer-social a:hover{background:#2FA4A9;color:#fff;border-color:#2FA4A9}
.footer-bottom{margin-top:50px;padding-top:25px;border-top:1px solid #e0e0e0;display:flex;justify-content:space-between;align-items:center;font-size:12px;color:#888}
.footer-bottom a{color:#888;text-decoration:none;font-weight:600}
.footer-bottom a:hover{color:#2FA4A9}
@media(max-width:1024px){.footer-wrapper{grid-template-columns:1fr 1fr;gap:40px 20px}}
@media(max-width:600px){
  .footer-wrapper{grid-template-columns:1fr;text-align:center;gap:35px}
  .footer-h::after{margin:8px auto 0}
  .footer-contact .contact-item{justify-content:center}
  .footer-social{justify-content:center}
  .footer-text{margin:15px auto 25px}
  .footer-bottom{flex-direction:column;gap:15px;text-align:center}
}

/* Hero slider */
.op-slider-container{
  max-width:1240px;
  margin:0 auto;
  position:relative;
  overflow:hidden;
  background:#f4f4f4;
  padding:0;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.op-slider{display:flex;transition:transform 1.2s cubic-bezier(.4,0,.2,1);height:500px;will-change:transform}
.op-slide{min-width:100%;position:relative}
.op-slide img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  aspect-ratio:16/9;
}
.op-caption{
  position:absolute;
  bottom:40px;
  left:40px;
  background:rgba(26,28,32,.9);
  color:#fff;
  padding:30px;
  max-width:450px;
  border-left:5px solid #D27A1F;
  z-index:5;
}
.op-caption h2{
  font-size:34px;
  font-weight:800;
  margin:0 0 10px 0;
  text-transform:none;
  color:#fff;
}
.op-caption p{font-size:17px;margin:0;opacity:.9;color:#fff}
.op-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:60px;
  background:rgba(0,0,0,.1);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  color:#fff;
  z-index:10;
  border:none;
  font-size:30px;
  padding:0;
  transition:background-color .2s ease,color .2s ease;
}
.op-arrow:hover{background:#2FA4A9;color:#fff}
.op-prev{left:0}
.op-next{right:0}
@media (max-width:1100px){
  .op-slider{height:350px}
  .op-arrow{display:none}
  .op-caption{
    left:0;
    right:0;
    bottom:0;
    max-width:none;
    padding:16px;
  }
  .op-caption h2{font-size:23px}
}

/* Benefits */
.op-benefits-section{
  width:100%;
  background-color:#fff;
  font-family:"Open Sans",sans-serif;
  padding:10px 0;
}
.op-benefits-wrapper{
  max-width:1240px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:0 20px;
  box-sizing:border-box;
}
.op-benefit-item{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:10px;
}
.op-benefit-item i{
  font-size:32px;
  color:#000;
  margin-bottom:12px;
}
.op-benefit-item h3{
  font-size:16px;
  font-weight:700;
  color:#1A1C20;
  margin:0 0 5px 0;
  text-transform:none;
}
.op-benefit-item p{
  font-size:13px;
  color:#666;
  margin:0;
  line-height:1.4;
}
@media (max-width:768px){
  .op-benefits-wrapper{
    flex-direction:column;
    gap:30px;
    padding:10px 20px;
  }
}

/* About centered */
.op-about-centered{
  width:100%;
  background-color:#fff;
  font-family:"Open Sans",sans-serif;
  padding:10px 0;
  display:flex;
  justify-content:center;
  text-align:center;
}
.op-about-inner{max-width:900px;padding:10px 20px;box-sizing:border-box}
.op-about-h2{
  font-size:34px;
  font-weight:800;
  color:#1A1C20;
  margin-bottom:30px;
  line-height:1.2;
  text-transform:none;
}
.op-about-p{
  font-size:17px;
  color:#444;
  line-height:1.8;
  margin-bottom:25px;
  text-align:center;
}
.op-about-actions{
  display:flex;
  gap:15px;
  justify-content:center;
  margin-top:35px;
}
.op-btn{
  padding:14px 28px;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  border-radius:0!important;
  transition:.3s ease;
  font-family:"Open Sans",sans-serif;
  display:inline-block;
  border:2px solid;
}
.op-btn-dark{background-color:#1A1C20;color:#fff;border-color:#1A1C20}
.op-btn-dark:hover{background-color:#333;border-color:#333}
.op-btn-orange{background-color:transparent;color:#D27A1F;border-color:#D27A1F}
.op-btn-orange:hover{background-color:#D27A1F!important;color:#fff!important}
@media (max-width:600px){
  .op-about-h2{font-size:23px}
  .op-about-actions{flex-direction:column;gap:10px}
  .op-btn{width:100%;box-sizing:border-box}
}

/* Shop news slider */
.op-news-container{
  max-width:1240px;
  margin:0 auto;
  padding:10px 0 30px;
  font-family:"Open Sans",sans-serif;
  position:relative;
}
.op-news-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin:0 15px 25px 15px;
}
.op-news-title{
  font-size:34px;
  font-weight:800;
  color:#1A1C20;
  margin:0;
  text-transform:none;
}
.op-view-all{
  font-size:14px;
  color:#888;
  text-decoration:underline;
  font-weight:600;
  cursor:pointer;
}
.op-view-all:hover{color:#2FA4A9}
.op-product-slider-section{position:relative;width:100%}
.op-product-carousel-viewport{overflow-x:hidden;overflow-y:visible;width:100%;padding:16px 0}
.op-product-carousel{display:flex;transition:transform .5s ease-out;width:100%;will-change:transform}
.op-product-card{flex:0 0 25%;box-sizing:border-box;padding:12px}
.op-product-card-inner{
  position:relative;
  background:#f5f5f5;
  border-radius:0;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:12px;
  height:100%;
}
.op-product-img-wrapper{
  width:100%;
  aspect-ratio:1/1;
  border-radius:0;
  overflow:hidden;
  background:#fff;
}
.op-product-img-wrapper img{width:100%;height:100%;object-fit:cover;display:block}
.op-product-status{font-size:12px;color:#2FA4A9;margin:0}
.op-product-info{display:flex;flex-direction:column;gap:6px;flex:1}
.op-product-name{
  font-size:15px;
  font-weight:800;
  color:#1A1C20;
  margin:0;
  line-height:1.25;
  text-transform:none;
}
.op-product-meta{display:block;font-size:12px;color:#555;margin:0}
.op-product-attrs{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:4px;font-size:12px;color:#555}
.op-price-row{display:flex;justify-content:space-between;align-items:center;margin-top:auto}
.op-price-current{font-size:18px;font-weight:800;color:#1A1C20}
.op-price-old{font-size:12px;color:#888;text-decoration:line-through;margin-left:8px}
.op-add-to-cart{
  background:transparent;
  width:48px;
  height:48px;
  border:2px solid #D27A1F;
  color:#D27A1F;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.2s;
  border-radius:5%;
}
.op-add-to-cart i{font-size:18px;line-height:1}
.op-add-to-cart:hover{background:#D27A1F;color:#fff}
.op-slider-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:40px;
  height:64px;
  background:#ededed;
  color:#1A1C20;
  border:none;
  cursor:pointer;
  z-index:100;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background-color .2s ease,color .2s ease;
  opacity:.6;
}
.op-slider-arrow:hover{background:#cfcfcf;color:#1A1C20;opacity:1}
.op-arrow-prev{left:0}
.op-arrow-next{right:0}
.op-mobile-link-container{display:none}
@media (max-width:1024px){.op-product-card{flex:0 0 33.333%}}
@media (max-width:768px){
  .op-product-card{flex:0 0 100%}
  .op-news-header .op-view-all{display:none}
  .op-mobile-link-container{display:block;padding:15px 0 0 15px}
  .op-slider-arrow{width:30px;height:60px}
  .op-arrow-prev{left:5px}
  .op-arrow-next{right:5px}
}
  .op-news-title{font-size:23px}
}
.op-back-top{
  position:fixed;
  right:60px;
  bottom:60px;
  width:50px;
  height:50px;
  background:#1A1C20;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:0;
  box-shadow:0 10px 24px rgba(0,0,0,.15);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:opacity .2s ease,transform .2s ease,background-color .2s ease;
  z-index:1500;
}
.op-back-top.is-visible{
  opacity:.8;
  visibility:visible;
  transform:translateY(0);
}
.op-back-top:hover{background:#2FA4A9;opacity:1}
@media (max-width:991px){.op-back-top{display:none}}
