/* General My Account Page Styling */
.woocommerce-account {
    background: #f9f9f9;
    padding: 0;
    margin: 0;
}

/* Dashboard Links (Menu) */
.woocommerce-MyAccount-navigation {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-MyAccount-navigation ul li {
    flex: 1 1 20%;
    text-align: center;
    margin: 10px 0;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #000;
    background: #f4f4f4;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    background: #B5B896;
    color: #000;
}

/* Content Area */
.woocommerce-MyAccount-content {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Headings */
.woocommerce-MyAccount-content h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #000;
    border-bottom: 2px solid #007cba;
    display: inline-block;
    padding-bottom: 5px;
}

/* Forms */
form.woocommerce-form {
    margin-top: 20px;
}

form.woocommerce-form label {
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
    display: block;
}

form.woocommerce-form input,
form.woocommerce-form textarea,
form.woocommerce-form select  {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Buttons */
button.woocommerce-button {
    background: #007cba;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button.woocommerce-button:hover {
    background: #005a94;
}

/* Alerts (Messages) */
.woocommerce-message {
    border-left: 4px solid #007cba;
    background: #e5f5fc;
    color: #000;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.woocommerce-MyAccount-content h2 {
    font-size: 33px !important;
     margin-bottom: 10px !important;
     color: #000;
     border-bottom: none !important;
}
.my-products{
    font-size: 33px !important;
     margin-bottom: 0 !important;
     color: #000;
     border-bottom: none !important;
 }
 .products{
     display: flex;
     flex-wrap: wrap;
     margin: 20px 0 !important;
 }
 .product{
     cursor: pointer;
 }
 .product .inner{
     margin: 0 40px 0 0;
 }
 .product h3 {
     color: #000000;
     font-size: 16px;
     line-height: 22px;
 }
 .product .price {
     color: #294F2B !important;
     font-size: 18px !important;
     font-weight: 600 !important;
 }
 .product .image-wrap{
     border: 1px solid #F2EBE3;
     border-radius: 8px;
     margin-bottom: 10px;
     padding: 0;
     position: relative;
 }
 .product .content{
     padding: 0 10px;
 }
 .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
     width: 33%;
     margin: 20px 0;
 }
 
 .woocommerce ul.products li.product a img {
     margin: 0 !important;
 }

 #primary input{
    padding: 10px;
}
#primary .button{
    margin-top: 15px;
}
.note{
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    margin: 20px 0;
    padding: 0 20px 20px;
    border-radius: 8px;
}
.note p{
    margin: 0;
}
.note .user{
    font-size: 14px;
    text-align: right;
    padding: 10px 0;
    color: #A9A9A9;
}