 
/*shop*/
.woocommerce .woocommerce-ordering {
    margin-bottom: 25px;
    text-align: right;
}

.woocommerce .woocommerce-ordering select {
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.woocommerce .woocommerce-ordering select:focus {
    border-color: #389090;
    outline: none;
}

.woocommerce .woocommerce-result-count {
    float: left;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.woocommerce ul.products li.product {
    background: #ffffff;
    border-radius: 12px;
    padding: 15px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.woocommerce ul.products li.product img {
    border-radius: 10px;
    margin-bottom: 12px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
}

.woocommerce ul.products li.product .price {
    color: #28a745;
    font-weight: 600;
    margin-bottom: 10px;
}

.woocommerce ul.products li.product .star-rating {
    color: #f4c150;
    font-size: 14px;
    margin-bottom: 8px;
}

.woocommerce ul.products li.product .button {
    background-color: #389090 !important;
    color: #ffffff !important;
    border-radius: 8px;
    padding: 10px;
    width: 100%;
    text-align: center;
    text-decoration: none !important;
    border: none;
    transition: 0.3s;
}

.woocommerce ul.products li.product .button:hover {
    background-color: #dea641 !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.woocommerce span.onsale {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff4d4d;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 50px;
}

.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.woocommerce nav.woocommerce-pagination ul li {
    list-style: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    padding: 10px 14px;
    background: #f2f2f2;
    border-radius: 6px;
    text-decoration: none;
    color: #000;
}

.woocommerce nav.woocommerce-pagination ul li .current {
    background: #389090;
    color: #fff;
}

 

@media (max-width: 768px) {
    .woocommerce .woocommerce-ordering {
        text-align: left;
        margin-top: 10px;
    }

    .woocommerce .woocommerce-result-count {
        float: none;
        display: block;
        margin-bottom: 10px;
    }
}

.woocommerce ul.products li.product .added_to_cart {
    display: block;
    margin-top: 10px;
    background-color: #389090 !important;
    color: #ffffff !important;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none !important;
    font-size: 14px;
    transition: 0.3s;
}

.woocommerce ul.products li.product .added_to_cart:hover {
    background-color: #dea641 !important;
    color: #ffffff !important;
    text-decoration: none !important;
}
/*cart*/

.wp-block-woocommerce-cart {
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 0 15px;
}

.wc-block-cart-items__row {
    display: grid;
    grid-template-columns: 100px 1fr 120px;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.wc-block-cart-item__image img {
    width: 90px;
    border-radius: 10px;
}

.wc-block-components-product-name {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
}

.wc-block-components-product-name:hover {
    color: #389090;
    text-decoration: none;
}

.wc-block-cart-item__prices {
    color: #28a745;
    font-weight: 600;
    margin-bottom: 10px;
}

.wc-block-components-product-metadata {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.wc-block-components-quantity-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}

.wc-block-components-quantity-selector__input {
    width: 60px;
    padding: 6px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
}

.wc-block-components-quantity-selector__button {
    background: #389090;
    color: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.wc-block-components-quantity-selector__button:hover {
    background: #dea641;
}

.wc-block-cart-item__remove-link {
    margin-top: 10px;
    display: inline-block;
    color: #ff4d4d;
    cursor: pointer;
}

.wc-block-cart-item__total {
    font-weight: 700;
    font-size: 16px;
    text-align: right;
}

.wc-block-cart__totals-block {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.wc-block-components-totals-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 15px;
}

.wc-block-cart__submit-button,
.wc-block-components-button,
button.wc-block-components-button {
    background-color: #389090 !important;
    color: #ffffff !important;
    border-radius: 8px;
    padding: 14px 20px;
    border: none !important;
    text-decoration: none !important;
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 15px;
    transition: 0.3s;
}

.wc-block-cart__submit-button:hover,
.wc-block-components-button:hover,
button.wc-block-components-button:hover {
    background-color: #dea641 !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.wc-block-cart__submit-button:focus,
.wc-block-components-button:focus,
button.wc-block-components-button:focus {
    outline: none;
    text-decoration: none !important;
}

 

@media (max-width: 768px) {
    .wc-block-cart-items__row {
        grid-template-columns: 80px 1fr;
        padding: 15px;
    }

    .wc-block-cart-item__total {
        grid-column: span 2;
        text-align: left;
        margin-top: 10px;
    }

    .wc-block-cart__submit-button {
        padding: 12px;
    }
}


/*checkout*/

.wp-block-woocommerce-checkout {
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 0 15px;
}

.wc-block-checkout__main {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.wc-block-checkout__sidebar {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.wc-block-components-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.wc-block-components-text-input input,
.wc-block-components-text-input textarea,
.wc-block-components-select select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}

.wc-block-components-text-input input:focus,
.wc-block-components-text-input textarea:focus,
.wc-block-components-select select:focus {
    border-color: #389090;
    outline: none;
}

.wc-block-components-checkbox {
    margin-bottom: 15px;
}

.wc-block-components-radio-control__option {
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
}

.wc-block-components-radio-control__option--checked {
    border-color: #389090;
    background: rgba(56,144,144,0.05);
}

.wc-block-checkout__totals-block {
    margin-top: 20px;
}

.wc-block-components-totals-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 15px;
}

.wc-block-components-button,
button.wc-block-components-button {
    background-color: #389090 !important;
    color: #ffffff !important;
    border-radius: 8px;
    padding: 14px 20px;
    border: none !important;
    text-decoration: none !important;
    width: 100%;
    text-align: center;
    transition: 0.3s;
}

.wc-block-components-button:hover,
button.wc-block-components-button:hover {
    background-color: #dea641 !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.wc-block-components-button:focus,
button.wc-block-components-button:focus {
    outline: none;
}

.wc-block-checkout__place-order-button {
    margin-top: 15px;
}

.wc-block-components-product-name {
    font-weight: 600;
    color: #222;
    text-decoration: none;
}

.wc-block-components-product-name:hover {
    color: #389090;
    text-decoration: none;
}

.wc-block-components-formatted-money-amount {
    color: #28a745;
    font-weight: 600;
}

 

@media (max-width: 768px) {
    .wp-block-woocommerce-checkout {
        margin-top: 30px;
    }

    .wc-block-checkout__main,
    .wc-block-checkout__sidebar {
        padding: 15px;
    }

    .wc-block-components-button {
        padding: 12px;
    }
}

/*account page*/

.woocommerce-account .woocommerce {
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 0 15px;
    display: flex;
    gap: 30px;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 250px;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    margin-bottom: 10px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: #222;
    text-decoration: none;
    transition: 0.3s;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    background: #389090;
    color: #fff;
    text-decoration: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    background: #389090;
    color: #fff;
}

.woocommerce-account .woocommerce-MyAccount-content {
    flex: 1;
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
}

.woocommerce-account .woocommerce-MyAccount-content p {
    font-size: 14px;
    color: #555;
}

.woocommerce-account table.shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.woocommerce-account table.shop_table th {
    background: #f7f7f7;
    padding: 12px;
    text-align: left;
}

.woocommerce-account table.shop_table td {
    padding: 12px;
    border-top: 1px solid #eee;
}

.woocommerce-account .button,
.woocommerce-account button,
.woocommerce-account input[type="submit"] {
    background-color: #389090 !important;
    color: #ffffff !important;
    border-radius: 8px;
    padding: 10px 16px;
    border: none !important;
    text-decoration: none !important;
    transition: 0.3s;
    cursor: pointer;
}

.woocommerce-account .button:hover,
.woocommerce-account button:hover,
.woocommerce-account input[type="submit"]:hover {
    background-color: #dea641 !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.woocommerce-account input[type="text"],
.woocommerce-account input[type="email"],
.woocommerce-account input[type="password"],
.woocommerce-account textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
}

.woocommerce-account input:focus,
.woocommerce-account textarea:focus {
    border-color: #389090;
    outline: none;
}
 

@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation {
        width: 100%;
    }

    .woocommerce-account .woocommerce-MyAccount-content {
        padding: 15px;
    }
}