* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    font-family: 'Lexend', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

header,
footer {
    background: #111;
    color: #000;
    padding: 15px;
}



/*  img slider */


@media (max-width: 1023px) {
    .woocommerce-product-gallery__wrapper {
        display: flex;
        gap: 1rem;
    }

    .woocommerce-product-gallery__image {
        min-width: 95%;
        width: 100%;
        scroll-snap-align: center;
        flex-shrink: 0;
    }
}

/* Hide horizontal scrollbar (mobile gallery) */
@media (max-width: 1023px) {
    .hide-scrollbar {
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE 10+ */
    }

    .hide-scrollbar::-webkit-scrollbar {
        display: none;
        /* Chrome / Safari */
    }
}


/* checkout css */

/* ===============================
   WOOCOMMERCE BLOCK CHECKOUT UI
   =============================== */


.wp-block-woocommerce-checkout-order-summary-block {
    padding: 6px;
    border: 0px solid #fff;
}

/* Hide country field in block checkout */
.wc-blocks-components-select {
    display: none !important;
}


/* thank you order page  ---------------*/


.woocommerce-order {
    padding: 0px !important;
}

.woocommerce-thankyou-order-received {
    font-size: 20px;
    font-weight: 600;
    color: #166534;
    background: #ecfdf5;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    margin-top: 12px;
}


.woocommerce-order-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
    padding: 0;
}

.woocommerce-order-overview li {
    list-style: none;
    background: #f9fafb;
    border-radius: 12px;
    font-size: 14px;
}

.woocommerce-order-overview strong {
    display: block;
    font-size: 16px;
    margin-top: 4px;
}

.woocommerce-order-details__title,
.woocommerce-column__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.woocommerce-table--order-details {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
}

.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
    padding: 14px 12px;
    border-bottom: 1px solid #e5e7eb;
}

.woocommerce-table--order-details thead th {
    background: #f3f4f6;
    font-weight: 600;
    text-align: left;
}

.woocommerce-table--order-details tfoot th {
    text-align: left;
    font-weight: 600;
}

.woocommerce-table--order-details tfoot td {
    font-weight: 600;
}

.woocommerce-columns--addresses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.woocommerce-column--billing-address,
.woocommerce-column--shipping-address {
    background: #f9fafb;
    border-radius: 14px;
}

.woocommerce-column address {
    font-style: normal;
    line-height: 1.6;
    font-size: 14px;
}

.woocommerce-customer-details--phone,
.woocommerce-customer-details--email {
    margin-top: 10px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .woocommerce-order {
        padding: 20px;
    }

    .woocommerce-columns--addresses {
        grid-template-columns: 1fr;
    }
}


/* my order page css ---------- */

/* ===== Layout ===== */
.woocommerce {
    display: grid;

}

/* ===== Sidebar Navigation ===== */
.woocommerce-MyAccount-navigation {
    border-right: 1px solid #e5e7eb;
    padding-right: 1.5rem;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-MyAccount-navigation li {
    margin-bottom: 0.25rem;
}

.woocommerce-MyAccount-navigation a {
    display: block;
    margin-top: 16px;
    padding: 0.75rem;
    text-decoration: none;
    color: #374151;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

.woocommerce-MyAccount-navigation a:hover {
    background: #f3f4f6;
    color: #111827;
}

/* Active link */
.woocommerce-MyAccount-navigation .is-active a {
    background: #111827;
    color: #ffffff;
    font-weight: 500;
}

/* Logout subtle */
.woocommerce-MyAccount-navigation-link--customer-logout a {
    color: #6b7280;
}

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

/* ===== Content Area ===== */
/* ===== Orders Table Container ===== */
.woocommerce-MyAccount-content {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
}

/* ===== Table Base ===== */
.woocommerce-orders-table {
    width: 100%;
    min-width: 760px;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    font-size: 0.95rem;
}

/* ===== Header ===== */
.woocommerce-orders-table thead th {
    text-align: left;
    padding: 0.9rem 1rem;
    background: #f9fafb;
    color: #374151;
    font-weight: 600;
    border-bottom: 1px solid #e5e7eb;
    white-space: nowrap;
}

/* ===== Rows ===== */
.woocommerce-orders-table tbody tr {
    transition: background 0.2s ease;
}

.woocommerce-orders-table tbody tr:hover {
    background: #f9fafb;
}

/* ===== Cells ===== */
.woocommerce-orders-table td,
.woocommerce-orders-table th {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
    color: #374151;
}

/* Order number link */
.woocommerce-orders-table__cell-order-number a {
    color: #111827;
    font-weight: 500;
    text-decoration: none;
}

.woocommerce-orders-table__cell-order-number a:hover {
    text-decoration: underline;
}

/* ===== Status ===== */
.woocommerce-orders-table__cell-order-status {
    font-weight: 500;
    color: #2563eb;
    /* processing */
}

/* ===== Total ===== */
.woocommerce-orders-table__cell-order-total {
    font-weight: 600;
    color: #111827;
}

/* ===== Action Button ===== */
.woocommerce-orders-table__cell-order-actions .button {
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
    border-radius: 6px;
    background: #111827;
    color: #ffffff;
    border: none;
    transition: background 0.2s ease;
}

.woocommerce-orders-table__cell-order-actions .button:hover {
    background: #000000;
}

/* ===== Scrollbar (subtle) ===== */
.woocommerce-MyAccount-content::-webkit-scrollbar {
    height: 6px;
}

.woocommerce-MyAccount-content::-webkit-scrollbar-track {
    background: #f3f4f6;
}

.woocommerce-MyAccount-content::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .woocommerce-orders-table {
        font-size: 0.9rem;
    }

    .woocommerce-orders-table td,
    .woocommerce-orders-table th {
        padding: 0.75rem;
    }
}

/* ===== Notices ===== */
.woocommerce-notices-wrapper {
    margin-bottom: 1.5rem;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .woocommerce {
        grid-template-columns: 1fr;
    }

    .woocommerce-MyAccount-navigation {
        border-right: none;
        padding-right: 0;
        margin-bottom: 1.5rem;
    }
}


/* ===== Form Wrapper ===== */
.woocommerce-MyAccount-content {
    max-width: 720px;
}

/* ===== Form Layout ===== */
.woocommerce-EditAccountForm {
    background: #ffffff;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

/* ===== Form Rows ===== */
.woocommerce-form-row {
    margin-bottom: 1.25rem;
}

.form-row-first,
.form-row-last {
    width: 48%;
}

.form-row-first {
    float: left;
}

.form-row-last {
    float: right;
}

.form-row-wide {
    width: 100%;
}

/* Clearfix */
.clear {
    clear: both;
}

/* ===== Labels ===== */
.woocommerce-EditAccountForm label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.4rem;
}

.woocommerce-EditAccountForm .required {
    color: #dc2626;
}

/* ===== Inputs ===== */
.woocommerce-EditAccountForm input[type="text"],
.woocommerce-EditAccountForm input[type="email"],
.woocommerce-EditAccountForm input[type="password"] {
    width: 100%;
    padding: 0.65rem 0.75rem;
    font-size: 0.95rem;
    color: #111827;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce-EditAccountForm input::placeholder {
    color: #9ca3af;
}

/* Focus */
.woocommerce-EditAccountForm input:focus {
    outline: none;
    border-color: #111827;
    box-shadow: 0 0 0 2px rgba(17, 24, 39, 0.1);
}

/* ===== Helper Text ===== */
#account_display_name_description {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.8rem;
    color: #6b7280;
}

/* ===== Fieldset ===== */
.woocommerce-EditAccountForm fieldset {
    margin-top: 2rem;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.woocommerce-EditAccountForm legend {
    padding: 0 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
}

/* ===== Password Toggle ===== */
.password-input {
    position: relative;
}

.show-password-input {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.6;
}

.show-password-input:hover {
    opacity: 1;
}

/* ===== Submit Button ===== */
.woocommerce-EditAccountForm .woocommerce-Button {
    margin-top: 1.5rem;
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    background: #111827;
    color: #ffffff;
    border: none;
    transition: background 0.2s ease;
}

.woocommerce-EditAccountForm .woocommerce-Button:hover {
    background: #000000;
}

/* ===== Mobile ===== */
@media (max-width: 640px) {

    .form-row-first,
    .form-row-last {
        width: 100%;
        float: none;
    }

    .woocommerce-EditAccountForm {
        padding: 1.5rem;
    }
}


/* ===== Intro Text ===== */
.woocommerce-MyAccount-content>p {
    margin-bottom: 1.5rem;
    color: #6b7280;
    font-size: 0.95rem;
}

/* ===== Address Grid ===== */
.woocommerce-Addresses {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* ===== Address Card ===== */
.woocommerce-Address {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce-Address:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* ===== Card Header ===== */
.woocommerce-Address-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    background: white;
}

.woocommerce-Address-title h2 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

/* Edit Link */
.woocommerce-Address .edit {
    font-size: 0.85rem;
    font-weight: 500;
    color: #2563eb;
    text-decoration: none;
}

.woocommerce-Address .edit:hover {
    text-decoration: underline;
}

/* ===== Address Text ===== */
.woocommerce-Address address {
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #374151;
}

/* ===== Empty Address ===== */
.woocommerce-Address address:empty::before {
    content: "No address set";
    color: #9ca3af;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .woocommerce-Addresses {
        grid-template-columns: 1fr;
    }
}

/* css */

/* Article wrapper --------------------------------------------------- */

/* Post Title */
.blog-post .post-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

/* Post Meta */
.blog-post .post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* Post Content */
.blog-post .post-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
}

/* Categories */
.blog-post .post-categories {
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.blog-post .post-categories a {
    color: #2563eb;
    text-decoration: none;
    margin-left: 0.5rem;
}

.blog-post .post-categories a:hover {
    text-decoration: underline;
}

/* Comments Section */
.comments-section {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
}

/* Comments Header */
.comments-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

/* Comment List */
.commentlist {
    list-style: none;
    padding-left: 0;
    margin: 0 0 2rem 0;
}

.comment {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.comment-body {
    flex: 1;
}

/* Comment Author */
.comment-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.comment-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

/* Comment Meta */
.comment-meta {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.comment-meta a {
    color: #6b7280;
    text-decoration: none;
}

.comment-meta a:hover {
    text-decoration: underline;
}

/* Comment Text */
.comment p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #374151;
}

/* Reply Link */
.reply a.comment-reply-link {
    font-size: 0.75rem;
    color: #2563eb;
    text-decoration: none;
}

.reply a.comment-reply-link:hover {
    text-decoration: underline;
}

/* Comment Form */
.comment-respond {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
}

.comment-respond h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.comment-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.comment-form textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.875rem;
    resize: vertical;
}

.comment-form .form-submit input[type="submit"] {
    background-color: #111827;
    color: #fff;
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.comment-form .form-submit input[type="submit"]:hover {
    background-color: #2563eb;
}

/* Logged-in note */
.comment-form .logged-in-as {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.comment-form .required-note {
    color: #ef4444;
}

/* ---------------------------------- */

/* Headings */
.woocommerce h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Login card */
.woocommerce-form-login {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Form rows */
.woocommerce-form-row {
    margin-bottom: 16px;
}

/* Labels */
.woocommerce-form-row label {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

/* Inputs */
.woocommerce-Input {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.woocommerce-Input:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

/* Password toggle button */
.password-input {
    position: relative;
}

.show-password-input {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
}

/* Remember me + button row */
.woocommerce-form-login .form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

/* Checkbox */
.woocommerce-form__label-for-checkbox {
    font-size: 0.85rem;
}

/* Login button */
.woocommerce-form-login__submit {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}

.woocommerce-form-login__submit:hover {
    background: #111;
}

/* Lost password */
.woocommerce-LostPassword {
    margin-top: 14px;
    text-align: right;
}

.woocommerce-LostPassword a {
    font-size: 0.8rem;
    color: #6b7280;
}

.woocommerce-LostPassword a:hover {
    color: #000;
}

/* Notices */
.woocommerce-notices-wrapper {
    margin-bottom: 16px;
}


/* table */
/* 🔥 HARD RESET FOR GUTENBERG TABLE */
.wp-block-table,
.wp-block-table * {
    box-sizing: border-box;
}

/* Wrapper */
.wp-block-table {
    display: block;
    max-width: 64rem;
    margin: 2.5rem auto;
    overflow-x: auto;
    font-family: inherit;
}

/* Table */
.wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto !important;
    border: 1px solid #e5e7eb;
    white-space: nowrap;
}

/* Header */
.wp-block-table thead {
    background: #000;
}

.wp-block-table th {
    padding: 0.75rem 1rem;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

/* Body */
.wp-block-table td {
    padding: 0.75rem 1rem;
    font-size: 14px;
    color: #111827;
    border-bottom: 1px solid #e5e7eb;
}

/* Zebra rows */
.wp-block-table tbody tr:nth-child(even) {
    background: #f9fafb;
}

/* Alignment */
.wp-block-table th[data-align="right"],
.wp-block-table td[data-align="right"] {
    text-align: right;
}

/* Scrollbar */
.wp-block-table::-webkit-scrollbar {
    height: 6px;
}

.wp-block-table::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 6px;
}




/* article -------------------------------- */


/* Main article container */
article {
    background: #ffffff;
}

article .content-area {
    max-width: 720px;
    margin: 0 auto;
}

/* Title */
article h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

/* Paragraphs */
article p {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 16px;
}

/* Headings */
article h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 10px;
}

article h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 24px;
}

/* Links */
article a {
    color: #4f46e5;
    text-decoration: none;
}

article a:hover {
    text-decoration: underline;
}

/* Blockquote */
article blockquote {
    border-left: 4px solid #6366f1;
    background: #f9fafb;
    padding: 12px 16px;
    margin: 20px 0;
    font-style: italic;
}

/* Lists */
article ul {
    padding-left: 20px;
    margin-bottom: 16px;
    list-style: disc;
}

article ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

/* Images */
article img {
    border-radius: 8px;
    margin: 20px 0;
    max-width: 100%;
    height: auto;
}

/* Tables */
article table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

article table th,
article table td {
    border: 1px solid #e5e7eb;
    padding: 8px;
}

article table th {
    background: #f3f4f6;
}


