
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

 .back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}
/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.border-secondary {
    transition: 0.5s;
}

.btn.border-secondary:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

/*** Topbar Start ***/
.fixed-top {
    transition: 0.5s;
    background: var(--bs-white);
    border: 0;
}

.topbar {
    padding: 20px;
    border-radius: 230px 100px;
}

.topbar .top-info {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link a {
    letter-spacing: 1px;
}

.topbar .top-link a small:hover {
    color: var(--bs-secondary) !important;
    transition: 0.5s;
}

.topbar .top-link a small:hover i {
    color: #000000 !important;
}
/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    transition: .5s;
}

.navbar {
    height: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: #000000;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: #000000;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .8);
}
/*** Navbar End ***/

/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(248, 223, 173, 0.1), rgba(248, 223, 173, 0.1)), url(../img/banner.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.carousel-item {
    position: relative;
}

.carousel-item a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    background: linear-gradient(rgba(255, 181, 36, 0.7), rgba(255, 181, 36, 0.7));
}

.carousel-control-next,
.carousel-control-prev {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    border: 1px solid var(--bs-white);
    background: #000000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-next {
    margin-right: 20px;
}

.carousel-control-prev {
    margin-left: 20px;
}

.page-header {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/other_banner.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .hero-header,
    .page-header {
        margin-top: 152px !important;
    }
}

@media (max-width: 992px) {
    .hero-header,
    .page-header {
        margin-top: 97px !important;
    }
}
/*** Hero Header end ***/


/*** featurs Start ***/
.featurs .featurs-item .featurs-icon {
    position: relative;
    width: 120px;
    height: 120px;
}

.featurs .featurs-item .featurs-icon::after {
    content: "";
    width: 35px;
    height: 35px;
    background: var(--bs-secondary);
    position: absolute;
    bottom: -10px;
    transform: translate(-50%);
    transform: rotate(45deg);
    background: var(--bs-secondary);
    
}
/*** featurs End ***/


/*** service Start ***/
.service .service-item .service-content {
    position: relative;
    width: 250px; 
    height: 130px; 
    top: -50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
}

/*** service End ***/


/*** Fruits Start ***/
.fruite .tab-class .nav-item a.active {
    background: var(--bs-secondary) !important;
}

.fruite .tab-class .nav-item a.active span {
    color: var(--bs-white) !important; 
}

.fruite .fruite-categorie .fruite-name {
    line-height: 40px;
}

.fruite .fruite-categorie .fruite-name a {
    transition: 0.5s;
}

.fruite .fruite-categorie .fruite-name a:hover {
    color: var(--bs-secondary);
}

.fruite .fruite-item {
    height: 100%;
    transition: 0.5s;
}
.fruite .fruite-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.fruite .fruite-item .fruite-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
}

.fruite .fruite-item .fruite-img img {
    transition: 0.5s;
}

.fruite .fruite-item .fruite-img img:hover {
    transform: scale(1.3);
}
/*** Fruits End ***/


/*** vesitable Start ***/
.vesitable .vesitable-item {
    height: 100%;
    transition: 0.5s;
}

.vesitable .vesitable-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.vesitable .vesitable-item .vesitable-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
}

.vesitable .vesitable-item .vesitable-img img {
    transition: 0.5s;
}

.vesitable .vesitable-item .vesitable-img img:hover {
    transform: scale(1.2);
}

.vesitable .owl-stage {
    margin: 50px 0;
    position: relative;
}

.vesitable .owl-nav .owl-prev {
    position: absolute;
    top: -8px;
    right: 0;
    color: #000000;
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;

}

.vesitable .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.vesitable .owl-nav .owl-next {
    position: absolute;
    top: -8px;
    right: 88px;
    color: #000000;
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.vesitable .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** vesitable End ***/


/*** Banner Section Start ***/
.banner .banner-btn:hover {
    background: #000000;
}
/*** Banner Section End ***/


/*** Facts Start ***/
.counter {
    height: 100%;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.counter i {
    font-size: 60px;
    margin-bottom: 25px;
}

.counter h4 {
    color: #000000;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.counter h1 {
    margin-bottom: 0;
}
/*** Facts End ***/


/*** Single Page Start ***/
.pagination {
    display: inline-block;
}
  
.pagination a {
    color: var(--bs-dark);
    padding: 10px 16px;
    text-decoration: none;
    transition: 0.5s;
    border: 1px solid var(--bs-secondary);
    margin: 0 4px;
}
  
.pagination a.active {
    background-color: #000000;
    color: var(--bs-light);
    border: 1px solid var(--bs-secondary);
}
  
.pagination a:hover:not(.active) {background-color: #000000}

.nav.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--bs-secondary) !important;
}
/*** Single Page End ***/


/*** Footer Start ***/
.footer .footer-item .btn-link {
    line-height: 35px;
    color: rgba(255, 255, 255, .5);
    transition: 0.5s;
}

.footer .footer-item .btn-link:hover {
    color: var(--bs-secondary) !important;
}

.footer .footer-item p.mb-4 {
    line-height: 35px;
}
/*** Footer End ***/
.menu-item{
	list-style-type:none;
}
.woocommerce form .form-row .input-text, .woocommerce-page form .form-row .input-text, .input-text{
	display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #747d88;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 10px;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.woocommerce-button{
	  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: #94cd2d;
  border: 1px solid rgba(0,0,0,0);
  padding: .375rem .75rem;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  font-size: 1rem;
  border-radius: 10px;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.quantity input, .woocommerce-cart-form #coupon_code{
	margin-bottom:10px !important;
}
/* ============================
   WooCommerce Checkout Fixes
   Select boxes & Checkboxes
   ============================ */

/* Fix select/dropdown borders */
.woocommerce-checkout select,
.woocommerce-page select,
#billing_country,
#billing_state,
#shipping_country,
#shipping_state,
.select2-container .select2-selection--single {
    border: 1px solid #999 !important;
    border-radius: 3px !important;
    background-color: #fff !important;
    padding: 8px 10px !important;
    height: auto !important;
    -webkit-appearance: menulist !important;
    -moz-appearance: menulist !important;
    appearance: menulist !important;
    box-shadow: none !important;
}

/* Select2 dropdown (used for country/state fields) */
.select2-container--default .select2-selection--single {
    border: 1px solid #999 !important;
    border-radius: 3px !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: normal !important;
    padding-left: 10px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px !important;
}

/* Fix checkbox visibility (create-account, shipping-to-different-address, terms) */
.woocommerce-checkout input[type="checkbox"],
.woocommerce-form__input-checkbox,
#createaccount,
#ship-to-different-address-checkbox,
#terms {
    -webkit-appearance: checkbox !important;
    -moz-appearance: checkbox !important;
    appearance: checkbox !important;
    width: 16px !important;
    height: 16px !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    display: inline-block !important;
    border: 1px solid #767676 !important;
    background-color: #fff !important;
    margin-right: 8px !important;
    vertical-align: middle !important;
}

/* In case theme hides input via clip/position tricks */
.woocommerce form .form-row .input-checkbox .input-radio{
    position: relative !important;
    clip: auto !important;
    left: auto !important;
}

/* Label alignment fix */
.woocommerce-form__label-for-checkbox {
    display: flex !important;
    align-items: center !important;
}
.fruite-price-filter .price_slider_wrapper,
.fruite-price-filter .price_slider {
    display: block !important;
    height: auto !important;
    overflow: visible !important;
    position: relative !important;
    visibility: visible !important;
}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1, .woocommerce-shipping-fields, #order_review, .woocommerce-additional-fields{
	background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 35px rgba(0,0,0,.08);
  position: sticky;
  top: 20px;
}
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}
.mcfw-menu{
	padding-top:10px !important;
}
/* =====================================================================
   WooCommerce "My Account" — CSS-only redesign
   Paste into Appearance → Customize → Additional CSS, or your child
   theme's style.css. No template overrides / HTML changes required —
   every selector below targets WooCommerce's default markup:

     nav.woocommerce-MyAccount-navigation
       ul
         li.woocommerce-MyAccount-navigation-link--dashboard
         li.woocommerce-MyAccount-navigation-link--orders
         li.woocommerce-MyAccount-navigation-link--downloads
         li.woocommerce-MyAccount-navigation-link--edit-address
         li.woocommerce-MyAccount-navigation-link--edit-account
         li.woocommerce-MyAccount-navigation-link--customer-logout
     div.woocommerce-MyAccount-content
       p (greeting: "Hello X (not X? Log out)")
       p (description, 3 inline links in fixed order)

   If your theme uses different endpoint slugs, the nth-of-type
   selectors on the description links still work — they target
   position, not the href.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --ink:#0F2438;
  --ink-soft:#4B5B6B;
  --paper:#F4F6F4;
  --card:#FFFFFF;
  --line:#E1E5E1;
  --teal:#0E7C74;
  --teal-deep:#0A5F59;
  --teal-tint:#E4F2F0;
  --coral:#E1583F;
  --coral-tint:#FCEBE7;
  --radius:14px;
  --shadow:0 1px 2px rgba(15,36,56,.04), 0 8px 24px -12px rgba(15,36,56,.12);
}

/* ---------- Page title ---------- */
/* Adjust this selector to match your theme's title class if needed
   (e.g. .entry-title, .page-title, h1.woocommerce-page-title) */
body.woocommerce-account h1{
  font-family:'Fraunces',serif;
  font-weight:600;
  letter-spacing:-0.01em;
  color:var(--ink);
}

/* ---------- Page background ---------- */
body.woocommerce-account{
  background:var(--paper);
}
body.woocommerce-account .woocommerce{
  font-family:'Inter',sans-serif;
  color:var(--ink);
}

/* clearfix — nav is floated, this keeps layout tidy without touching markup */
body.woocommerce-account::after{
  content:"";
  display:table;
  clear:both;
}

/* =====================================================================
   SIDEBAR NAVIGATION
   ===================================================================== */

.woocommerce-MyAccount-navigation{
  float:left;
  width:230px;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:10px;
  position:sticky;
  top:24px;
}

.woocommerce-MyAccount-navigation ul{
  list-style:none;
  margin:0;
  padding:0;
}

.woocommerce-MyAccount-navigation-link{
  position:relative;
}

.woocommerce-MyAccount-navigation-link a{
  display:flex;
  align-items:center;
  gap:12px;
  padding:11px 12px;
  margin:2px 0;
  border-radius:9px;
  color:var(--ink-soft);
  text-decoration:none;
  font-size:14px;
  font-weight:500;
  transition:background .15s ease, color .15s ease;
}
.woocommerce-MyAccount-navigation-link a:hover{
  background:var(--paper);
  color:var(--ink);
}
.woocommerce-MyAccount-navigation-link a:focus-visible{
  outline:2px solid var(--teal);
  outline-offset:-2px;
}

/* icon per nav item — CSS mask so it recolors automatically via currentColor */
.woocommerce-MyAccount-navigation-link a::before{
  content:"";
  width:16px;
  height:16px;
  flex-shrink:0;
  background-color:currentColor;
  -webkit-mask-size:contain;
  mask-size:contain;
  -webkit-mask-repeat:no-repeat;
  mask-repeat:no-repeat;
  -webkit-mask-position:center;
  mask-position:center;
}
.woocommerce-MyAccount-navigation-link--dashboard a::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='3' width='7' height='7'/%3E%3Crect x='14' y='3' width='7' height='7'/%3E%3Crect x='3' y='14' width='7' height='7'/%3E%3Crect x='14' y='14' width='7' height='7'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='3' width='7' height='7'/%3E%3Crect x='14' y='3' width='7' height='7'/%3E%3Crect x='3' y='14' width='7' height='7'/%3E%3Crect x='14' y='14' width='7' height='7'/%3E%3C/svg%3E");
}
.woocommerce-MyAccount-navigation-link--orders a::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M3 7h18M6 7V5a2 2 0 012-2h8a2 2 0 012 2v2m-13 0l1 12a2 2 0 002 2h8a2 2 0 002-2l1-12'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M3 7h18M6 7V5a2 2 0 012-2h8a2 2 0 012 2v2m-13 0l1 12a2 2 0 002 2h8a2 2 0 002-2l1-12'/%3E%3C/svg%3E");
}
.woocommerce-MyAccount-navigation-link--downloads a::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 3v12m0 0l-4-4m4 4l4-4M4 19h16'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 3v12m0 0l-4-4m4 4l4-4M4 19h16'/%3E%3C/svg%3E");
}
.woocommerce-MyAccount-navigation-link--edit-address a::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 21s-7-5.2-9.3-9.4C1.1 8.6 2.7 5 6.2 5c1.9 0 3.2 1 3.8 2.1C10.6 6 11.9 5 13.8 5c3.5 0 5.1 3.6 3.5 6.6C19 15.8 12 21 12 21z'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 21s-7-5.2-9.3-9.4C1.1 8.6 2.7 5 6.2 5c1.9 0 3.2 1 3.8 2.1C10.6 6 11.9 5 13.8 5c3.5 0 5.1 3.6 3.5 6.6C19 15.8 12 21 12 21z'/%3E%3C/svg%3E");
}
.woocommerce-MyAccount-navigation-link--edit-account a::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 21c0-4 3.6-6.5 8-6.5S20 17 20 21'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 21c0-4 3.6-6.5 8-6.5S20 17 20 21'/%3E%3C/svg%3E");
}
.woocommerce-MyAccount-navigation-link--customer-logout a::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M9 21H5a2 2 0 01-2-2V5a2 2 0 012-2h4M16 17l5-5-5-5M21 12H9'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M9 21H5a2 2 0 01-2-2V5a2 2 0 012-2h4M16 17l5-5-5-5M21 12H9'/%3E%3C/svg%3E");
}

/* active state */
.woocommerce-MyAccount-navigation-link.is-active a{
  background:var(--teal-tint);
  color:var(--teal-deep);
  font-weight:600;
}

/* logout gets its own color + a divider above it */
.woocommerce-MyAccount-navigation-link--customer-logout{
  margin-top:8px;
  padding-top:8px;
  border-top:1px solid var(--line);
}
.woocommerce-MyAccount-navigation-link--customer-logout a{
  color:var(--coral);
}
.woocommerce-MyAccount-navigation-link--customer-logout a:hover{
  background:var(--coral-tint);
  color:var(--coral);
}

/* =====================================================================
   CONTENT AREA
   ===================================================================== */

.woocommerce-MyAccount-content{
  margin-left:25px; /* nav width (230) + gap (28) */
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:26px 28px;
}

/* greeting line: "Hello admin (not admin? Log out)" */
.woocommerce-MyAccount-content > p:first-of-type{
  display:block;
  padding-bottom:16px;
  margin-bottom:18px;
  border-bottom:1px solid var(--line);
  font-size:14px;
  color:var(--ink-soft);
}
.woocommerce-MyAccount-content > p:first-of-type strong{
  color:var(--teal-deep);
  font-weight:600;
}
/* the "Log out" link inside the greeting line, styled as a small pill */
.woocommerce-MyAccount-content > p:first-of-type a{
  display:inline-block;
  color:var(--coral);
  font-weight:600;
  text-decoration:none;
  padding:2px 10px;
  border-radius:999px;
  background:var(--coral-tint);
}
.woocommerce-MyAccount-content > p:first-of-type a:hover{
  background:#f9d9d0;
}

/* description paragraph */
.woocommerce-MyAccount-content > p:nth-of-type(2){
  font-size:14.5px;
  line-height:1.7;
  color:var(--ink-soft);
  margin:0;
}

/* the three inline links (recent orders / addresses / account details),
   targeted purely by position — order never changes on WooCommerce's
   default template */
.woocommerce-MyAccount-content > p:nth-of-type(2) a{
  display:inline-flex;
  align-items:center;
  gap:5px;
  color:var(--teal-deep);
  background:var(--teal-tint);
  font-weight:600;
  text-decoration:none;
  padding:2px 9px 2px 7px;
  border-radius:7px;
  margin:0 1px;
}
.woocommerce-MyAccount-content > p:nth-of-type(2) a:hover{
  background:#d3ece9;
}
.woocommerce-MyAccount-content > p:nth-of-type(2) a::before{
  content:"";
  width:13px;
  height:13px;
  background-color:currentColor;
  -webkit-mask-size:contain;
  mask-size:contain;
  -webkit-mask-repeat:no-repeat;
  mask-repeat:no-repeat;
}
.woocommerce-MyAccount-content > p:nth-of-type(2) a:nth-of-type(1)::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M3 7h18M6 7V5a2 2 0 012-2h8a2 2 0 012 2v2m-13 0l1 12a2 2 0 002 2h8a2 2 0 002-2l1-12'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M3 7h18M6 7V5a2 2 0 012-2h8a2 2 0 012 2v2m-13 0l1 12a2 2 0 002 2h8a2 2 0 002-2l1-12'/%3E%3C/svg%3E");
}
.woocommerce-MyAccount-content > p:nth-of-type(2) a:nth-of-type(2)::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 21s-7-5.2-9.3-9.4C1.1 8.6 2.7 5 6.2 5c1.9 0 3.2 1 3.8 2.1C10.6 6 11.9 5 13.8 5c3.5 0 5.1 3.6 3.5 6.6C19 15.8 12 21 12 21z'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 21s-7-5.2-9.3-9.4C1.1 8.6 2.7 5 6.2 5c1.9 0 3.2 1 3.8 2.1C10.6 6 11.9 5 13.8 5c3.5 0 5.1 3.6 3.5 6.6C19 15.8 12 21 12 21z'/%3E%3C/svg%3E");
}
.woocommerce-MyAccount-content > p:nth-of-type(2) a:nth-of-type(3)::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 21c0-4 3.6-6.5 8-6.5S20 17 20 21'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 21c0-4 3.6-6.5 8-6.5S20 17 20 21'/%3E%3C/svg%3E");
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width:720px){
  .woocommerce-MyAccount-navigation{
    float:none;
    width:100%;
    position:static;
    margin-bottom:18px;
  }
  .woocommerce-MyAccount-content{
    margin-left:0;
  }
}

@media (prefers-reduced-motion: reduce){
  .woocommerce-MyAccount-navigation-link a,
  .woocommerce-MyAccount-content a{
    transition:none;
  }
}
.navbar-nav .active .nav-link{
 color: #ea1c25 !important; 
 font-weight: bold;
}