/*
Theme Name: LS
Author: LS
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blank-wp-theme
Tags: custom-logo, custom-menu, featured-images, translation-ready
*/

/* Add your site CSS here, or enqueue separate files from functions.php. */

.choices__list--dropdown, .choices__list[aria-expanded]{
    width: max-content !important; 
}
.product-price del {
    display: none;
}
.product-price ins {
    text-decoration: auto;
}
/* Woo review stars, correct left-to-right visual fill without JS */
.woocommerce p.stars {
  margin: 0;
}

.woocommerce p.stars span {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

/* Star links */
.woocommerce p.stars a {
  position: relative;
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  text-indent: -999em;
  overflow: hidden;
  text-decoration: none;
  font-size: 18px;
}

/* Empty star by default */
.woocommerce p.stars a::before {
  content: "\f21f";
  font-family: cartzilla-icons !important;
  position: absolute;
  inset: 0;
  text-indent: 0;
  line-height: 1.1em;
  color: #d3ced2;
}

/* Hover state:
   first fill all, then empty the ones after hovered star */
.woocommerce p.stars:hover a::before {
  content: "\f21d";
  color: #f0c040;
}

.woocommerce p.stars a:hover ~ a::before {
  content: "\f21f";
  color: #d3ced2;
}

/* Selected state:
   first fill all, then empty the ones after active star */
.woocommerce p.stars.selected a::before {
  content: "\f21d";
  color: #f0c040;
}

.woocommerce p.stars.selected a.active ~ a::before {
  content: "\f21f";
  color: #d3ced2;
}

.woocommerce-product-gallery__wrapper,
.woocommerce-product-gallery__image,
.woocommerce-product-gallery__image > a{
    height: 100%;
}

.js-product-like.is-liked .ci-heart::before {
  content: "\f19d"
}

aside.entry-summary .added_to_cart {
    display: none !important;
}

.wc-block-components-checkout-place-order-button {
    min-width: 220px;
    min-height: 50px !important;
    font-size: 16px !important;
}














/* =============================================
   WooCommerce My Account — Custom Styles
   Primary: #000 | Background: #fff
   ============================================= */

/* Layout wrapper */
.woocommerce-account .woocommerce {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* ── Navigation sidebar ── */
.woocommerce-MyAccount-navigation {
  min-width: 200px;
  width: 220px;
  flex-shrink: 0;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.woocommerce-MyAccount-navigation-link a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  color: #444;
  font-weight: 400;
  transition: background 0.15s, color 0.15s;
}

/* Dot indicator */
.woocommerce-MyAccount-navigation-link a::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccc;
  flex-shrink: 0;
  transition: background 0.15s;
}

/* Hover state */
.woocommerce-MyAccount-navigation-link a:hover {
  background: #f5f5f5;
  color: #000;
}

.woocommerce-MyAccount-navigation-link a:hover::before {
  background: #000;
}

/* Active / current page */
.woocommerce-MyAccount-navigation-link.is-active a {
  background: #000;
  color: #fff;
  font-weight: 500;
}

.woocommerce-MyAccount-navigation-link.is-active a::before {
  background: #fff;
}

/* Log out — separated, muted */
.woocommerce-MyAccount-navigation-link--customer-logout {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #dbdbdb;
}

.woocommerce-MyAccount-navigation-link--customer-logout a {
  color: #999;
  font-size: 13px;
}

.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
  color: #cc0000;
  background: #fff8f8;
}

.woocommerce-MyAccount-navigation-link--customer-logout a::before {
  display: none;
}

/* ── Content area ── */
.woocommerce-MyAccount-content {
  flex: 1;
  min-width: 0;
  width: 100%;
}

/* Headings inside content */
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin: 0 0 16px;
}

/* Intro text */
.woocommerce-MyAccount-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ── Orders table ── */
.woocommerce-orders-table,
.woocommerce-table--order-details {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.woocommerce-orders-table th,
.woocommerce-table--order-details th {
  text-align: left;
  font-weight: 500;
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 12px;
  border-bottom: 1px solid #dbdbdb;
}

.woocommerce-orders-table td,
.woocommerce-table--order-details td {
  padding: 12px 12px;
  border-bottom: 1px solid #dbdbdb;
  color: #333;
  vertical-align: middle;
}


/* ── Order status badges ── */
.woocommerce-order-status,
mark.order-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  background: #f0f0f0;
  color: #444;
}

.woocommerce-orders-table thead {
    background: #f1f1f1;
}

mark.order-status.status-completed { background: #e6f4ea; color: #1a7a33; }
mark.order-status.status-processing { background: #e8f0fe; color: #1a5bb5; }
mark.order-status.status-on-hold    { background: #fff4e0; color: #9a6700; }
mark.order-status.status-cancelled  { background: #fce8e8; color: #c0392b; }

/* ── Buttons ── */
.woocommerce-MyAccount-content .button,
.woocommerce-MyAccount-content a.button,
.woocommerce-MyAccount-content button[type="submit"] {
  display: inline-block;
  padding: 8px 15px;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  width: auto;
}

.woocommerce-MyAccount-content .button:hover,
.woocommerce-MyAccount-content a.button:hover,
.woocommerce-MyAccount-content button[type="submit"]:hover {
  background: #fff;
  color: #000;
}

/* ── Form fields ── */
.woocommerce-MyAccount-content input[type="text"],
.woocommerce-MyAccount-content input[type="email"],
.woocommerce-MyAccount-content input[type="password"],
.woocommerce-MyAccount-content select,
.woocommerce-MyAccount-content textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  color: #000;
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}

.woocommerce-MyAccount-content input:focus,
.woocommerce-MyAccount-content select:focus,
.woocommerce-MyAccount-content textarea:focus {
  border-color: #000;
}

.woocommerce-MyAccount-content label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
}

.woocommerce-MyAccount-content .form-row {
  margin-bottom: 16px;
}

/* ── Address boxes ── */
.woocommerce-Address {
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 12px;
}

.woocommerce-Address-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #dbdbdb;
}

.woocommerce-Address-title h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

/* ── Notices ── */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 20px;
  border-left: 3px solid #000;
  background: #f8f8f8;
  color: #333;
}

.woocommerce-error {
  border-left-color: #cc0000;
  background: #fff8f8;
  color: #cc0000;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .woocommerce-account .woocommerce {
    flex-direction: column;
    gap: 24px;
  }

  .woocommerce-MyAccount-navigation {
    width: 100%;
  }

  .woocommerce-MyAccount-navigation ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }

  .woocommerce-MyAccount-navigation-link a {
    padding: 8px 12px;
    font-size: 13px;
  }

  .woocommerce-MyAccount-navigation-link--customer-logout {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }
}

.woocommerce-MyAccount-content .col-1,
.woocommerce-MyAccount-content .col-2
 {
  width: 100%;
}

.woocommerce-customer-details {
  margin-top: 15px;
}

/* ── Downloads Table ── */
.woocommerce-order-downloads { margin: 0; }

.woocommerce-table--order-downloads {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.woocommerce-table--order-downloads thead tr {
  border-bottom: 1px solid #e9e9e9;
}

.woocommerce-table--order-downloads thead th {
  text-align: left;
  padding: 0 12px 12px;
  font-size: 11px;
  font-weight: 500;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.woocommerce-table--order-downloads thead th.download-file {
  text-align: right;
}

.woocommerce-table--order-downloads tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.12s;
}

.woocommerce-table--order-downloads tbody tr:last-child {
  border-bottom: none;
}

.woocommerce-table--order-downloads tbody tr:hover {
  background: #fafafa;
}

.woocommerce-table--order-downloads tbody td {
  padding: 14px 12px;
  color: #333;
  vertical-align: middle;
}

.woocommerce-table--order-downloads td.download-product a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.woocommerce-table--order-downloads td.download-product a:hover {
  text-decoration: underline;
}

.woocommerce-table--order-downloads td.download-remaining {
  font-size: 18px;
  color: #000;
}

.woocommerce-table--order-downloads td.download-expires {
  font-size: 13px;
  color: #999;
}

.woocommerce-table--order-downloads td.download-file {
  text-align: right;
}

/* Download button */
.woocommerce-MyAccount-downloads-file {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #000;
  color: #fff !important;
  border: 1px solid #000;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none !important;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.woocommerce-MyAccount-downloads-file:hover {
  background: #fff;
  color: #000 !important;
}

/* Mobile — stack into cards */
@media (max-width: 640px) {
  .woocommerce-table--order-downloads thead { display: none; }

  .woocommerce-table--order-downloads tbody tr {
    display: block;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 12px;
  }

  .woocommerce-table--order-downloads tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border: none;
  }

  .woocommerce-table--order-downloads tbody td::before {
    content: attr(data-title);
    font-size: 11px;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .woocommerce-table--order-downloads td.download-file {
    text-align: left;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
  }

  .woocommerce-MyAccount-downloads-file {
    width: 100%;
    justify-content: center;
  }
}

/* ── Password input wrapper ── */
.password-input {
  position: relative;
  display: block;
}

/* Push text away from the eye icon */
.password-input input.woocommerce-Input--password {
  padding-right: 44px;
  box-sizing: border-box;
}

/* ── Eye button ── */
.password-input .show-password-input {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  transition: color 0.15s;
}

.password-input .show-password-input:hover {
  color: #000;
}

/* Eye open icon (default — password hidden) */
.password-input .show-password-input::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'/%3E%3Ccircle cx='12' cy='12' r='3'/%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='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* Eye off icon (when password is visible — WooCommerce adds this class) */
.password-input .show-password-input.display-password {
  color: #000;
}

.password-input .show-password-input.display-password::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='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24'/%3E%3Cline x1='1' y1='1' x2='23' y2='23'/%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='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24'/%3E%3Cline x1='1' y1='1' x2='23' y2='23'/%3E%3C/svg%3E");
}

.woocommerce-order-details .order-again {
  display: none !important;
}


.entry-title {
    font-size: 30px;
}







/* Thank You*/

/* =============================================
   WooCommerce Thank You Page — Custom Styles
   Primary: #000 | Background: #fff
   ============================================= */

/* Success notice */
.woocommerce-notice--success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f4f4f4;
  border-left: 3px solid #000;
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  margin-bottom: 28px;
}

.woocommerce-notice--success::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Order overview pills */
.woocommerce-thankyou-order-details.order_details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: #e5e5e5;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin-bottom: 36px;
}

.woocommerce-thankyou-order-details.order_details li {
  background: #fff;
  padding: 16px 20px;
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.woocommerce-thankyou-order-details.order_details li strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 4px;
}

/* Section headings */
.woocommerce-order-details__title,
.woocommerce-column__title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

/* Order details table */
.woocommerce-table--order-details {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 36px;
    background: #f5f5f5;
}

.woocommerce-table--order-details thead {
  background: #000;
}

.woocommerce-table--order-details thead th {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 12px 18px;
  text-align: left;
}

.woocommerce-table--order-details thead th:last-child {
  text-align: right;
}

.woocommerce-table--order-details tbody tr {
  border-bottom: 1px solid #f0f0f0;
}

.woocommerce-table--order-details tbody td {
  padding: 14px 18px;
  font-size: 14px;
  color: #111;
  vertical-align: middle;
}

.woocommerce-table--order-details tbody td:last-child {
  text-align: right;
  font-weight: 500;
}

.woocommerce-table--order-details tbody a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.woocommerce-table--order-details tbody a:hover {
  text-decoration: underline;
}

.product-quantity {
  color: #666;
  font-weight: 400;
  font-size: 13px;
}

/* Table footer rows */
.woocommerce-table--order-details tfoot tr {
  border-top: 1px solid #f0f0f0;
}

.woocommerce-table--order-details tfoot th {
  padding: 10px 18px;
  font-size: 13px;
  color: #666;
  font-weight: 400;
  text-align: left;
}

.woocommerce-table--order-details tfoot td {
  padding: 10px 18px;
  font-size: 13px;
  color: #111;
  text-align: right;
}

/* Total row emphasis */
.woocommerce-table--order-details tfoot tr:last-child th,
.woocommerce-table--order-details tfoot tr:last-child td {
  font-weight: 700;
  font-size: 15px;
  color: #000;
  border-top: 2px solid #000;
  padding-top: 14px;
}

/* Billing address box */
.woocommerce-customer-details {
  background: #f9f9f9;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 20px 24px;
}

.woocommerce-customer-details address {
  font-style: normal;
  font-size: 14px;
  color: #333;
  line-height: 1.8;
}

.woocommerce-customer-details--phone,
.woocommerce-customer-details--email {
  margin-top: 4px;
  font-size: 13px;
  color: #555;
}

.entry-title {
    font-size: 30px;
}