/* eCellar Signup Form Styles */
/* .eceller-signup-form {
    max-width: 500px;
    margin: 40px auto;
    padding: 32px 28px 24px 28px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-family: 'Inter', Arial, sans-serif;
}
.eceller-signup-form input[type="text"],
.eceller-signup-form input[type="email"],
.eceller-signup-form input[type="password"],
.eceller-signup-form input[type="date"],
.eceller-signup-form input[type="number"] {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #d5c58b;
    border-radius: 6px;
    font-size: 16px;
    background: #faf9f6;
    transition: border-color 0.2s;
}
.eceller-signup-form input[type="text"]:focus,
.eceller-signup-form input[type="email"]:focus,
.eceller-signup-form input[type="password"]:focus,
.eceller-signup-form input[type="date"]:focus,
.eceller-signup-form input[type="number"]:focus {
    border-color: #0d3024;
    outline: none;
}
.eceller-signup-form label {
    display: flex;
    align-items: center;
    font-size: 15px;
    gap: 8px;
    margin-bottom: 0;
}
.eceller-signup-form button[type="submit"] {
    background: #0d3024;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 14px 0;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s;
}
.eceller-signup-form button[type="submit"]:hover {
    background: #d5c58b;
    color: #0d3024;
}
.success-message, .error-message {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 500;
}
.success-message {
    background: #e6f9ed;
    color: #1a7f37;
    border: 1px solid #b6e2c7;
}
.error-message {
    background: #fff0f0;
    color: #b30000;
    border: 1px solid #f5bcbc;
}
 */
#eceller-card-entry-form {
    /* background: #fff; */
    /* padding: 28px 32px; */
    /* border-radius: 8px; */
    /* box-shadow: 0 0 10px #ddd; */
    /* max-width: 800px; */
    /* margin: 0 auto; */
    margin-top: 40px;
}

.eceller-settings-wrap {
    max-width: 900px;
    margin: 30px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 32px 40px 40px 40px;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
}

.eceller-settings-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #0073aa;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.eceller-settings-title .dashicons {
    font-size: 1.2em;
    color: #0073aa;
}

.eceller-settings-desc {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 28px;
}

.eceller-settings-cards {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.eceller-settings-card {
    background: #f7fafd;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 115, 170, 0.07);
    padding: 18px 22px;
    flex: 1 1 220px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
}

.eceller-settings-card-title {
    font-size: 1.15em;
    font-weight: 600;
    margin-top: 8px;
    color: #0073aa;
}

.eceller-settings-card-desc {
    font-size: 0.98em;
    color: #555;
    margin-top: 4px;
}

.eceller-settings-card .dashicons {
    font-size: 1.5em;
    color: #0073aa;
    margin-bottom: 2px;
}

.eceller-settings-form {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 24px 28px;
    margin-bottom: 32px;
    box-shadow: 0 2px 8px rgba(0, 115, 170, 0.05);
}

.eceller-settings-form label {
    font-weight: 500;
    color: #0073aa;
    margin-bottom: 6px;
    display: block;
}

.eceller-settings-form input[type='text'] {
    width: 100%;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #cfd8dc;
    font-size: 1em;
    margin-bottom: 16px;
}

.eceller-settings-form .submit {
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 24px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(0, 115, 170, 0.08);
    transition: background 0.2s;
}

.eceller-settings-form .submit:hover {
    background: #005a8c;
}

.eceller-api-table {
    margin-top: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 115, 170, 0.05);
    overflow: hidden;
}

.eceller-api-table th {
    background: #0073aa;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
    padding: 10px 8px;
}

.eceller-api-table td {
    font-size: 0.98em;
    padding: 8px 8px;
    background: #f7fafd;
    border-bottom: 1px solid #e3eaf1;
}

.eceller-api-table tr:nth-child(even) td {
    background: #f1f6fa;
}

.eceller-copy-btn {
    background: #e3eaf1;
    color: #0073aa;
    border: none;
    border-radius: 4px;
    padding: 2px 10px;
    font-size: 0.95em;
    margin-left: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.eceller-copy-btn.copied {
    background: #0073aa;
    color: #fff;
}

.eceller-copied-msg {
    display: none;
    margin-left: 8px;
    color: #0073aa;
    font-size: 0.95em;
}

.eceller-copy-btn.copied+.eceller-copied-msg {
    display: inline;
}

@media (max-width: 700px) {
    .eceller-settings-wrap {
        padding: 16px 6px;
    }

    .eceller-settings-cards {
        flex-direction: column;
        gap: 12px;
    }

    .eceller-settings-form {
        padding: 12px 6px;
    }
}
.wine-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.wine-grid .input-pair {
  flex: 1 1 calc(50% - 10px);
  min-width: 250px;
}


.newsleter-sec input {
    margin-bottom: 10px !important;
}

.newsleter-sec select {
    margin-bottom: 10px !important;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.event-card {
    border: 1px solid #ccc;
    padding: 16px;
    background: #fff;
}

.event-card img {
    width: 100%;
    height: auto;
    display: block;
}

.event-date {
    color: #b07d5e;
    margin-top: 10px;
    font-size: 14px;
}

.event-title {
    font-size: 18px;
    margin: 10px 0 5px;
}

.event-description {
    font-size: 15px;
    color: #444;
}

.checkout-wrapper button#apply-discount {
    position: unset;
    text-decoration: underline;
}

.checkout-wrapper a {
    font-size: 16px;
}
.our_event p {
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 30px !important;
    margin-bottom: 35px !important;
}
.eceller-signup-mailinglist-form {
    max-width: 1200px;
    margin: 30px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', sans-serif;
}
.eceller-signup-mailinglist-form label {
    color: #000 !important;
    font-size: 22px !important;
    font-family: 'Lato';
}

.custom-loader div {
    border-top: 6px solid #0d3024 !important;

}
.our_event p {
    text-align: center;
}
#ecellar-product-loader div {
    color: #0d3024 !important;
}

.eceller-signup-mailinglist-form h3 {
    color: #333;
    padding-bottom: 15px;
    font-family: 'Arsenal', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 25px;
}

.eceller-signup-mailinglist-form input[type="text"],
.eceller-signup-mailinglist-form input[type="email"],
.eceller-signup-mailinglist-form input[type="password"],
.eceller-signup-mailinglist-form input[type="tel"],
.eceller-signup-mailinglist-form input[type="date"],
.eceller-signup-mailinglist-form select {
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 0px;
    border: 2px solid #DBDDE3 !important;
    border-radius: 6px;
    font-size: 15px;
    background-color: #fafafa;
    transition: border 0.3s;
}

.eceller-signup-mailinglist-form input:focus,
.eceller-signup-mailinglist-form select:focus {
    border-color: #00704a;
    outline: none;
    background-color: #fff;
}

.eceller-signup-mailinglist-form label {
    display: block;
    font-size: 14px;
    margin: 10px 0;
    color: #555;
}

.eceller-signup-mailinglist-form button[type="submit"] {
    background-color: #172F25;
    color: #D5C58B;
    padding: 14px 50px;
    font-weight: 500;
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    border-bottom: unset !important;
    cursor: pointer;
}

.eceller-signup-mailinglist-form button[type="submit"]:hover {
    background-color: #124a2a;
    box-shadow: 0 2px 0 #082113;
}

/* Error message placeholder styling */
.eceller-error-msg {
    font-size: 12px;
    color: red;
    margin-bottom: 10px;
    display: block;
}

/* Layout Grid */
.eceller-signup-mailinglist-form {}

.eceller-signup-mailinglist-form h3,
.eceller-signup-mailinglist-form label,
.eceller-signup-mailinglist-form button {
    grid-column: span 2;
}




.eceller-signup-mailinglist-form button[type="submit"]:hover {
    background: #D5C58B;
    color: #fff;
    border-bottom: unset !important;
}

button#update_billing_address {
    background: #0D3024 !important;
    color: #fff !important;
    border: none;
    border-radius: unset !important;
    padding: 15px 20px !important;
}

.product-quantity-cart .product_qty {
    border: unset;

}

.product-quantity-cart input.quantity {
    height: 50px;
    border: 1px solid #000;
    padding-left: 20px;
    max-width: 65px;
}

div#eceller-login-error {
    max-width: 800px !important;
    margin: 0 auto !important;
}

.product-quantity-cart {
    display: flex;
    align-items: center;
    gap: 20px;
}

button#update_billing_address:hover {
    background: #d5c58b !important;
    color: #fff;
}

.eceller-signup-form {

    max-width: 800px !important;

}

#eceller-card-entry-form button {
    background: #172f25 !important;
    border-radius: unset !important;
    font-weight: 600;
    font-size: 18px !important;
}

#eceller-card-entry-form button:hover {
    background: #d5c58b !important;
    color: #fff !important;
}

button#root-eceller-payment-form {
    font-size: 18px !important;
    font-weight: 500;
}

.forgot_password {
    font-size: 18px;
}



.all-Categories h3 {
    color: #000;
    margin-bottom: 20px;
    position: relative;
    text-align: left;
    font-family: 'Arsenal', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 30px;
}

.all-Categories {
  width: 100%;
  background: #fafbfc;
  border: 1px solid #eee;
  padding: 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  /* width: 100% !important; */
}



#categoryList {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100% !important;
}

#categoryList li {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-family: 'Arsenal', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  line-height: 35px;
  padding: 10px 30px !important;
  font-size: 18px;
}

#categoryList li:hover,
#categoryList li.active {
  background-color: #172F25;
  color: #fff;
  border-color: #172F25;
}


.all-Categories {
    width: 100% !important;
    background: transparent !important;
    padding-left: 0 !important;
    padding-bottom: 0 !important;
}

form#eceller-resetpassword-form {
    max-width: 600px;
    margin: 30px auto;
    padding: 50px;
    box-shadow: 0 0px 10px #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 10px;
}

#eceller-resetpassword-form input {
    padding: 12px 20px !important;
    border: 2px solid #DBDDE3 !important;
    border-radius: 6px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #00000099;
    height: 55px;
    transition: 0.3s ease-in-out;
    width: 100%;
    margin-bottom: 15px;
}

.reset_btn button {
    background-color: #172F25;
    color: #D5C58B;
    padding: 14px 30px;
    font-weight: 500;
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: 0.3s ease;
    text-transform: uppercase;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    text-align: center;
    justify-content: center;
    display: flex;
    max-width: 300px !important;
}

.reset_btn {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

button#eceller-reset-cancel-btn {
    background: #f3f3f3;
    box-shadow: unset;
    color: #172F25;
}

button#eceller-reset-cancel-btn:hover {
    background: #D5C58B;
    color: #fff;
}


.reset_btn button:hover {
    background: #D5C58B;
    color: #fff;
}

.error-message {
    max-width: 800px;
    margin: 0 auto;
}

form#eceller-forgotpassword-form {
    max-width: 800px;
    margin: 30px auto;
    padding: 50px;
    box-shadow: 0 0px 10px #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 10px;
}

.eceller-forgotpassword-form input[type="email"] {
    padding: 12px 20px !important;
    border: 2px solid #DBDDE3 !important;
    border-radius: 6px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #00000099;
    height: 55px;
    transition: 0.3s ease-in-out;
    width: 100%;
}

.eceller-forgotpassword-form button {
    background-color: #172F25;
    color: #D5C58B;
    padding: 14px 70px;
    font-weight: 500;
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: 0.3s ease;
    text-transform: uppercase;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    max-width: 200px;
    text-align: center;
    justify-content: center;
    display: flex;
}

.forgot_btn {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.eceller-forgotpassword-form button:hover {
    background-color: #D5C58B;
    color: #fff;
}

.eceller-forgotpassword-form button#eceller-forgot-cancel-btn {
    background: #f3f3f3;
    box-shadow: unset;
    color: #172F25;
}

.eceller-forgotpassword-form button#eceller-forgot-cancel-btn:hover {
    background-color: #D5C58B;
    color: #fff;
}

.forgot_password a {
    color: #D5C58B;
    font-family: 'Inter';
}

div#address_section {
    display: block !important;
}

div#address_section,
div#eceller-club-shipping-addresses {
    display: flex;
    gap: 15px;
    height: 500px !important;
    overflow-x: auto;
}

#eceller-edit-profile-section {
    max-width: 800px !important;
    margin: 30px auto !important;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#eceller-edit-profile-section h2,
#eceller-edit-profile-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #222;
}

#eceller-edit-profile-section hr {
    margin: 30px 0;
    border-color: #ddd;
}

#eceller-edit-profile-section input[type="text"],
#eceller-edit-profile-section input[type="email"],
#eceller-edit-profile-section input[type="tel"],
#eceller-edit-profile-section input[type="date"],
#eceller-edit-profile-section input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
    background: #fff;
}

#eceller-edit-profile-section input:focus {
    border-color: #0073aa;
    outline: none;
}

.eceller-card-form {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: unset !important;
}

#eceller-edit-profile-section label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
}

#eceller-edit-profile-section button[type="submit"],
#eceller-edit-profile-section button[type="button"] {
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    margin-right: 10px;
    transition: background-color 0.2s ease;
}

#eceller-edit-profile-section input[type="text"],
#eceller-edit-profile-section input[type="email"],
#eceller-edit-profile-section input[type="tel"],
#eceller-edit-profile-section input[type="date"],
#eceller-edit-profile-section input[type="password"] {
    width: 100%;
    padding: 8px 12px;
    margin: 8px 0 14px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 18px !important;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

#eceller-edit-profile-section button[type="submit"] {
    background-color: #0D3024;
    color: #fff;
    border-radius: unset;
    font-size: 18px;
    font-weight: 500;
}

button#eceller-cancel-billing-form {

    border: none;
    border-radius: unset;
    padding: 15px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-right: 10px;
    margin-top: 8px;
    transition: background 0.2s;
}

button#root-eceller-payment-form {
    background-color: #eee;
    color: #333;
    border: unset;
    padding: 15px 30px;
    cursor: pointer;
}

button#root-eceller-payment-form:hover {
    background: #D5C58B;
    color: #fff;
}

button#eceller-cancel-billing-form:hover {
    background: #D5C58B;
    color: #fff;
}

button#root-eceller-form {
    border: none;
    border-radius: unset !important;
    padding: 15px 20px !important;
    margin-top: 10px;
}

button#root-eceller-form:hover {
    background: #D5C58B;
    color: #fff;
}

button#save_shipping_address:hover {
    background: #D5C58B !important;
    color: #fff;
}

button#save_shipping_address {
    background: #0D3024 !important;
    color: #fff !important;
    border: none;
    border-radius: unset !important;
    padding: 15px 20px !important;
}

button#save_billing_address:hover {
    background: #D5C58B;
    color: #fff;
}

#save_billing_address {
    background: #0D3024 !important;
    color: #fff !important;
    border: none;
    border-radius: unset !important;
    padding: 15px 20px !important;
    font-size: 16px;
    cursor: pointer;
    margin-right: 10px;
    margin-top: 8px;
    transition: background 0.2s;
}

#eceller-edit-profile-section button[type="submit"]:hover {
    background-color: #D5C58B;
}

#eceller-edit-profile-section button[type="button"] {
    background-color: #eee;
    color: #333;
    border-radius: unset;
}

div#address_section,
div#eceller-club-shipping-addresses {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    height: unset !important;
}

#eceller-edit-profile-section button[type="button"]:hover {
    background-color: #D5C58B;
}

#eceller-edit-profile-message,
#eceller-change-username-message,
#eceller-change-password-message {
    font-size: 0.95rem;
    margin-top: 12px;
    color: #0073aa;
}

#eceller-card-entry-form label {
    display: block;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: #333;
}

#eceller-card-entry-form input[type="text"] {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

#eceller-card-entry-form input[type="text"]:focus {
    border-color: #0073aa;
    outline: none;
}

#eceller-card-entry-form .eceller-card-row {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}

#eceller-card-entry-form .eceller-card-row>div {
    display: flex;
    flex-direction: column;
}

#card-type {
    display: inline-block;
    min-width: 40px;
    height: 32px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

ul.eceller-account-options li {
    list-style: none;
    border: 1px solid #000;
    padding: 10px;
    border-radius: 5px;
}

.et_pb_section {
    position: relative;
    background-color: #EFEFEB !important;
    background-position: 50%;
    background-size: 100%;
    background-size: cover;
}



.et_pb_module.et_pb_menu {
    background: transparent;
}

ul.eceller-account-options {
    padding: 0 !important;
    margin: 0 !important;
}

.slider-thumb.active {
    border-color: #0073aa !important;
    box-shadow: 0 0 0 2px #0073aa;
}

button.checkout-btn {
    background-color: #172F25 !important;
    width: 100%;
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #D5C58B;
    border: 1px solid #D5C58B;
    height: 60px;
    padding: 10px;
    cursor: pointer;
    transition: 0.3s;
}

button.checkout-btn:hover {
    color: #172F25 !important;
    border-color: #172F25 !important;
    background-color: transparent !important;
    border: 1px solid #172F25 !important;
}

#eceller-card-entry-form button[type="submit"] {
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.et-search-form,
blockquote {
    border: unset !important;
    margin: 0 !important;
    padding: 0 !important;
    font-style: normal;
}

.breadcrumb a {
    color: #000;
}

.product-desc {
    font-size: 16px;
    margin-bottom: 10px;
    font-style: italic;
}

.breadcrumb span {
/*     color: #D93939; */
	color: #D5C58B;
}

#eceller-card-entry-form button[type="submit"]:hover {
    background-color: #005e8c;
}

.eceller-card-error,
.eceller-card-success {
    font-size: 0.95rem;
    margin-top: 14px;
}

.eceller-card-error {
    color: #b30000;
}

.eceller-card-success {
    color: #007a33;
}


div#eceller-payment-form-modal {
    background: #fff;
    padding: 28px 32px;
    border-radius: 8px;
    box-shadow: 0 0 10px #ddd;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
}


.address_section {
    margin-bottom: 40px;
}

.eceller-address-box {
    border: 2px solid #0073aa;
    background: #f6fbff;
    margin-bottom: 16px;
    padding: 16px;
    border-radius: 8px;
}

.eceller-address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.eceller-address-header strong {
    font-size: 1.1em;
    color: #222;
}

.edit-shipping-address,
.delete-address {
    background: #fff;
    border: 1px solid #0073aa;
    border-radius: 4px;
    padding: 4px 10px;
    margin-left: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #0073aa;
    transition: background 0.2s;
}

.edit-shipping-address:hover,
.delete-address:hover {
    background: #e6f4ff;
}

.eceller-address-body {
    font-size: 0.96em;
    color: #333;
    line-height: 1.6;
}

.add_address_section {
    background: #fff;
    padding: 24px 32px;
    border-radius: 8px;
}

.add_address_section h3 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #222;
}

#eceller-customer-shipping-form input[type="text"],
#eceller-customer-shipping-form input[type="date"],
#eceller-customer-shipping-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

#eceller-customer-shipping-form input:focus,
#eceller-customer-shipping-form select:focus {
    border-color: #0073aa;
    outline: none;
}

#eceller-customer-shipping-form label {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 0.95rem;
    color: #333;
    margin-top: 10px;
}

#eceller-customer-shipping-form button {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    margin-right: 10px;
    transition: background-color 0.2s;
}

#save_shipping_address {
    background-color: #0073aa;
    color: #fff;
}

#save_shipping_address:hover {
    background-color: #005e8c;
}

#eceller-cancel-shipping-form,
#root-eceller-form {
    background-color: #eee;
    color: #333;
}

#eceller-cancel-shipping-form:hover,
#root-eceller-form:hover {
    background-color: #ddd;
}

#eceller-shipping-form-message {
    color: #0073aa;
    font-size: 0.95rem;
    margin-top: 12px;
}

#eceller-join-club-modal {
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #f9f9f9;
    max-width: 800px;
    margin: 0 auto;
}

#eceller-join-club-form {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#eceller-join-club-form h2 {
    margin-top: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

#eceller-join-club-form p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.5;
}

#eceller-join-club-modal fieldset {
    border: none;
    margin-bottom: 25px;
    padding: 0;
}

#eceller-join-club-modal legend {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #333;
}

#eceller-join-club-modal input[type="text"],
#eceller-join-club-modal select,
#eceller-join-club-modal textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

#eceller-join-club-modal input[type="text"]:focus,
#eceller-join-club-modal select:focus,
#eceller-join-club-modal textarea:focus {
    border-color: #007aff;
    outline: none;
}

#eceller-join-club-modal textarea {
    resize: vertical;
    min-height: 80px;
}

.club-shipping-select,
.club-payment-select,
.club-billing-select {
    margin-top: 8px;
}

#eceller-join-club-modal label {
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
    font-size: 20px;
    color: #000;
}

#eceller-join-club-form input[type="checkbox"] {
    margin-right: 6px;
}

#eceller-join-club-form button[type="submit"],
#eceller-join-club-form button[type="button"] {
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    margin-right: 10px;
    transition: background-color 0.2s ease;
}

#eceller-join-club-form button[type="submit"] {
    background-color: #172F25;
    color: #fff;
    border-radius: unset;
    padding: 15px 50px;
}

#eceller-join-club-form button[type="submit"]:hover {
    background-color: #D5C58B;
    color: #fff;
}

#eceller-join-club-form button[type="button"] {
    background-color: #eee;
    color: #333;
    border-radius: unset;
    padding: 15px 50px;
}

#eceller-join-club-form button[type="button"]:hover {
    background-color: #D5C58B;
    color: #fff;
}

#eceller-add-shipping-link,
#eceller-add-payment-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.95rem;
    color: #007aff;
    text-decoration: none;
}

#eceller-add-shipping-link:hover,
#eceller-add-payment-link:hover {
    text-decoration: underline;
}

#eceller-club-tiers-list br {
    display: none;
}


#eceller-join-club-form br {
    display: none;
}

#eceller-greeting {
    font-size: 1.4em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

#eceller-email {
    font-size: 1em;
    margin-bottom: 0;
    color: #555;
    padding: 0;
}

.myaccount_section p {
    color: #666;
    font-size: 1em;
    margin-bottom: 10px;
}

.eceller-account-options {
    list-style: none;
    padding-left: 0;
}

.eceller-account-options li {
    margin-bottom: 12px;
}

.eceller-account-options li a {
    text-decoration: none;
    color: #0D3024;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
    border-radius: 5px;
    font-size: 18px;
}

.eceller-account-options li a:hover {
    color: #003d80;
    background-color: #f0f8ff;
}

#eceller-logout-btn {
    color: #b30000;
    font-weight: 600;
    transition: color 0.3s ease, background 0.3s ease;
    padding: 6px 10px;
    border-radius: 5px;
}

#eceller-logout-btn:hover {
    background-color: #ffe5e5;
    color: #990000;
}

.slick-slide img {
    display: block;
    box-shadow: unset !important;
}

.myaccount_section {
    box-shadow: 0 0 10px #ddd;
    padding: 50px;
    background-color: #fff;
}

div#eceller-greeting {
    color: #000;
}

.eceller-address-box {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.eceller-address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.eceller-address-header button.delete-address {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #c00;
}

.eceller-address-body div {
    margin: 4px 0;
}

body {
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    background: #f7f9fc;
    margin: 0;
    padding: 0;
}

.breadcrumb {

    font-size: 20px;
    color: #000;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    background: #fff;

    padding: 40px 0px;
    margin: 32px auto;
}

div#address_section,
div#eceller-club-shipping-addresses {
    display: flex;
    gap: 15px;
    width: 50%;
}

button#update_shipping_address {
    background: #172F25 !important;
    color: #D5C58B;
    border-radius: unset !important;
    padding: 15px 20px !important;
}

button#update_shipping_address:hover {
    background: #D5C58B !important;
    color: #fff !important;
}

div#address_section,
div#eceller-club-shipping-addresses {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    height: 500px;
}

div#address_section,
div#eceller-club-shipping-addresses {
    display: flex;
    /* gap: 15px; */
    flex-wrap: wrap;
}

.eceller-address-body {
    font-size: 18px !important;
    font-family: 'Inter';
}

.product-image {
    background: #f3f6fa;
    border-radius: 12px;
    padding: 12px;
    width: 45%;
}

.product-slider img {
    width: 100%;
    height: 675px;
    object-fit: contain;
    background: #F5F5F5 !important;
}

.product-details {
    width: 48%;
}

.product-details h1 {
    font-size: 30px;
    font-family: 'Arsenal',Helvetica,Arial,Lucida,sans-serif;
    color: #000;
    font-weight: bold;
}

.product-desc {
    font-size: 16px;
    margin-bottom: 10px;
}

.product-price {
    font-size: 24px;
/*     color: #D93939; */
	color: #D5C58B;
    margin-bottom: 10px;
    font-family: 'Inter';
    font-weight: bold;
}


.quantity-cart input {
    width: 60px;
    padding: 6px;
    font-size: 16px;
    border: unset;
}

.et-search-form,
blockquote {
    border: unset !important;
    margin: 0 !important;
    padding: 0 !important;
}

.product_qty {
    border: 1px solid #000;
}


.quantity-cart input {
    height: 45px;

}

.add-to-cart {
    border: none;
    white-space: unset !important;
    cursor: pointer;
    max-width: 100%;
    padding: 18px 80px;
    border-radius: unset;
    background: #172F25;
    color: #D5C58B;
    font-size: 20px;
    font-family: 'lato';
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;

}

.add-to-cart:hover {
    background-color: #D5C58B;
    color: #fff;
}

.product-info {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
}

.product-info td {
    padding: 6px 10px;
    font-size: 14px;
}

.product-content {
    background-color: #f3f3ed;
    padding: 30px;
    margin: 0 auto;
    max-width: 100%;
}

.product-content section {
    margin-bottom: 20px;
}

.product-content h2 {
    margin-bottom: 10px;
    font-size: 30px;
    font-family: 'Playfair Display';
    color: #000;
    font-weight: 500;
}

.product-content p {
    font-style: italic;
    font-size: 20px;
    color: #353632;
}


.related-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 3 equal columns */
  gap: 20px; /* space between items */
}

/* Mobile: 768px se chhoti screen ke liye 1 column */
@media (max-width: 768px) {
  .related-products {
    grid-template-columns: 1fr; /* Single column on mobile */
  }
}


.product-card {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px 10px 75px 0px;
}

.related-products img {
    height: 300px !important;
    object-fit: contain;
    text-align: center;
    display: flex;
    justify-content: center;
}

.related-products .product-card p {
    font-family: 'Playfair Display';
    color: #000;
    font-size: 20px;
    padding: 0 0px 15px 0;
}

.related-products strong {
    font-family: 'Inter';
    font-size: 18px;
}

.related-products button.add-to-cart-suggestion {
    background: #172F25;
    color: #D5C58B;
    font-family: 'Lato';
    font-size: 18px;
    font-weight: 600;
    padding: 15px 40px;
    margin-bottom: 20px !important;
}

.related-products button.add-to-cart-suggestion:hover {
    background: #D5C58B !important;
    color: #172F25;
}

.product_similar h3 {
    color: #000;
    font-size: 30px;
    font-family: 'Playfair Display';
    margin-bottom: 20px;
}

.product-card {
    position: relative;
}

.related-products button.add-to-cart-suggestion {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
    max-width: 200px;
    bottom: 0;
}

.product-card img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 14px;
    margin: 0;
}

.product-card button {
    margin-top: 8px;
    padding: 8px 14px;
    background-color: #006400;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}


#eceller-edit-profile-section {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    background: #f9f9f9;
}

#eceller-edit-profile-section h2 {
    font-size: 1.6em;
    margin-bottom: 18px;
    color: #0073aa;
    text-align: center;
}

#eceller-edit-profile-section form {
    margin-bottom: 18px;
}

#eceller-edit-profile-section input[type="text"],
#eceller-edit-profile-section input[type="email"],
#eceller-edit-profile-section input[type="tel"],
#eceller-edit-profile-section input[type="date"],
#eceller-edit-profile-section input[type="password"] {
    width: 100%;
    padding: 8px 12px;
    margin: 8px 0 14px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

#eceller-edit-profile-section input[type="text"]:focus,
#eceller-edit-profile-section input[type="email"]:focus,
#eceller-edit-profile-section input[type="tel"]:focus,
#eceller-edit-profile-section input[type="date"]:focus,
#eceller-edit-profile-section input[type="password"]:focus {
    border-color: #0073aa;
    outline: none;
}

#eceller-edit-profile-section label {
    font-size: 1em;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

#eceller-edit-profile-section input[type="checkbox"] {
    margin-right: 6px;
}

#eceller-edit-profile-section button,
#eceller-edit-profile-section input[type="submit"] {
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 20px;
    font-size: 1em;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s;
}

#eceller-edit-profile-section button:hover,
#eceller-edit-profile-section input[type="submit"]:hover {
    background: #005a8c;
}

#eceller-edit-profile-section hr {
    margin: 24px 0;
    border: none;
    border-top: 1px solid #e0e0e0;
}

#eceller-edit-profile-section .eceller-field-error {
    border: 2px solid #d00 !important;
    background: #fff0f0 !important;
}

#eceller-edit-profile-section .form-message {
    margin-top: 10px;
    font-size: 1em;
}

/* Shipping address box and modal styles */
.eceller-address-box {
    border: 2px solid #0073aa;
    background: #f6fbff;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 6px;
}

.eceller-address-header {
    margin-bottom: 8px;
}

.eceller-address-header strong {
    font-size: 1.1em;
}

.edit-shipping-address {
    margin-right: 8px;
    background: #fff;
    border: 1px solid #0073aa;
    border-radius: 4px;
    padding: 2px 8px;
    cursor: pointer;
}

.eceller-address-body {
    font-size: 0.98em;
}

#eceller-shipping-form-modal {
    max-width: 1000px;
    margin: 30px auto;
    padding: 24px;
    border: 1px solid #eee;
    background: #fafafa;
    border-radius: 8px;
}

#eceller-shipping-form-message {
    margin-top: 10px;
}

div#address_section,
div#eceller-club-shipping-addresses {
    display: flex;
    gap: 15px;
}

.eceller-address-box {
    /* max-width: 30%; */
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.eceller-address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.eceller-address-header button.delete-address {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #c00;
}

.eceller-address-body div {
    margin: 4px 0;
}

/* Billing address section layout */
#eceller-billing-address-section {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
    min-height: 400px;
}

/* Saved addresses list on left */
#eceller-billing-address-list {

    background: #f8fafc;
    border-radius: 8px;
    padding: 18px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    min-width: 320px;
    max-width: 50%;
}

/* Billing form on right */
#eceller-billing-form-modal {
    background: #fff !important;
    border-radius: 8px !important;
    padding: 24px 18px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07) !important;
    width: 50% !important;
    margin: 0 !important;
}



@media (max-width: 1024px) {
.related-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
}
/* Responsive for mobile */
@media (max-width: 900px) {
    #eceller-billing-address-section {
        flex-direction: column;
        gap: 18px;
    }

    #eceller-billing-address-list,
    #eceller-billing-form-modal {
        max-width: 100%;
        min-width: 0;
    }

}

/* Address box styling */
.eceller-address-box {
    margin-bottom: 18px;
    border: 1.5px solid #e0e7ef;
    background: #f6fbff;
    border-radius: 8px;
    padding: 14px 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.2s;
}

.eceller-address-box:hover {
    box-shadow: 0 4px 12px rgba(0, 123, 170, 0.10);
    border-color: #0073aa;
}

.billing_data {
    display: flex;
    /* flex-direction: column; */
    gap: 16px;
}

/* Edit button styling */
.edit-billing-address,
#update_billing_address {
    background: #fff;
    border: 1px solid #0073aa;
    color: #0073aa;
    border-radius: 4px;
    padding: 2px 10px;
    cursor: pointer;
    font-size: 15px;
    margin-left: 8px;
    transition: background 0.2s, color 0.2s;
}

.edit-billing-address:hover {
    background: #0073aa;
    color: #fff;
}

/* Billing form fields */
#eceller-billing-form input,
#eceller-billing-form select {
    width: 98%;
    margin-bottom: 10px;
    padding: 7px 8px;
    border-radius: 5px;
    border: 1px solid #d1d5db;
    font-size: 15px;
    background: #f9f9f9;
    transition: border-color 0.2s;
}

#eceller-billing-form input:focus,
#eceller-billing-form select:focus {
    border-color: #0073aa;
    outline: none;
}

/* Save/Update button */
#save_billing_address {
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 18px;
    font-size: 16px;
    cursor: pointer;
    margin-right: 10px;
    margin-top: 8px;
    transition: background 0.2s;
}

#save_billing_address:hover {
    background: #005b8c;
}

/* Cancel button */
#eceller-cancel-billing-form {
    background: #f3f3f3;
    color: #333;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    padding: 8px 18px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}

#eceller-cancel-billing-form:hover {
    background: #e0e7ef;
}

/* Success/Error message styling */
#eceller-billing-form-message {
    margin-top: 12px;
    font-size: 15px;
}

.eceller-card-form {

    margin: 0 auto;

    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    font-family: 'Segoe UI', Arial, sans-serif;
}

.eceller-card-form input {
    width: 100%;
    padding: 10px 12px;
    margin: 10px 0;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1em;
    transition: border-color 0.2s;
}

.eceller-card-form input:focus {
    border-color: #0073aa;
    outline: none;
}

.eceller-card-form label {
    font-weight: 500;
    margin-bottom: 4px;
    display: block;
}

.eceller-card-form .eceller-card-row {
    display: flex;
    gap: 12px;
}

.eceller-card-form .eceller-card-row input {
    flex: 1;
}

.eceller-card-form .eceller-card-type {
    font-size: 0.98em;
    color: #0073aa;
    margin-bottom: 8px;
}

.eceller-card-form .eceller-card-error {
    color: #d00;
    margin-top: 8px;
    font-size: 0.97em;
}

.eceller-card-form .eceller-card-success {
    color: #008a00;
    margin-top: 8px;
    font-size: 1em;
}

.eceller-card-form button {
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    font-size: 1em;
    cursor: pointer;
    margin-top: 12px;
    transition: background 0.2s;
}

.eceller-card-form button:hover {
    background: #005f8c;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.all-products {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}


@media screen and (max-width: 767px) {
.related-products {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
}
/* Responsive Layout */
@media screen and (max-width: 768px) {
    .eceller-signup-mailinglist-form {
        grid-template-columns: 1fr;
    }

    .eceller-signup-mailinglist-form h3,
    .eceller-signup-mailinglist-form label,
    .eceller-signup-mailinglist-form button {
        grid-column: span 1;
    }

}

@media (min-width: 980px) and (max-width: 1700px) {

.related-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
    .all-products .products-list {
        width: 33%;
    }

}




/* Custom Spinner */
@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}
.btn-check {
  display: inline-block;
  animation: bounce 0.5s ease forwards;
}

.add-to-cart-suggestion {
  position: relative;
  display: inline-flex; /* ya inline-block */
  align-items: center;
  gap: 6px; /* space between text and loader/tick */
}
.btn-loader, .btn-check {
  vertical-align: middle;
}
