/**

 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */
/* Container: Flexbox */
/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor child theme
 */

/* =========================
   ROOT COLOR VARIABLES
========================= */
:root {
  --primary-color: #1f1f4a;
  --secondary-color: #e6b800;
  --accent-color: #f5c400;
  --light-bg: #F4F0EC;
  --white: #ffffff;
  --text-muted: #777;
}

/* =========================
   PAY CARD SECTION
========================= */

.elementor .pay-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.elementor .pay-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  flex: 1 1 200px;
  max-width: 220px;
}

.elementor .pay-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.pay-card-title {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.pay-card-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.pay-card-desc {
  font-size: 14px;
  color: var(--primary-color);
  line-height: 1.6;
  margin-bottom: 25px;
}

.pay-card-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-weight: 600;
  padding: 10px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.pay-card-btn:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

@media (max-width: 767px) {
  .elementor .pay-card {
    flex: 1 1 100%;
  }
}

/* =========================
   NATAL CHART SECTION
========================= */

.natal-chart-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
}

.natal-chart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
}

.natal-left {
  flex: 1 1 400px;
  text-align: center;
}

.natal-left img {
  max-width: 100%;
  border-radius: 50%;
}

.natal-right {
  flex: 1 1 500px;
}

.natal-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.natal-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.natal-features li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--primary-color);
}

.natal-features li .natal-tick {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.natal-meta {
  display: flex;
  gap: 20px;
  background: var(--light-bg);
  padding: 12px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-weight: bold;
  max-width: 300px;
  white-space: nowrap;
}

.natal-meta span {
  color: var(--primary-color);
}

.natal-btn {
  display: inline-block;
  background: var(--accent-color);
  padding: 14px 28px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.natal-btn:hover {
  background: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
  .natal-chart {
    flex-direction: column;
    text-align: center;
  }

  .natal-left,
  .natal-right {
    flex: 1 1 100%;
  }

  .natal-meta {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* =========================
   BOOKS STORE SECTION
========================= */

.books-store-wrapper {
  /* padding: 40px 0; */
}
/* =========================
   HEADER
========================= */
.books-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 10px;
}

.books-header h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-color);
}

.books-header a {
  font-size: 14px;
  color: var(--primary-color);
  text-decoration: none;
}

/* =========================
   GRID
========================= */
.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Tablet */
@media (max-width: 1024px) {
  .books-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .books-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* =========================
   BOOK ITEM
========================= */
.book-item {
  text-align: left;
}

/* =========================
   IMAGE
========================= */
.book-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  /* margin: 0 auto; */
  display: block;
  object-fit: contain;
}

/* =========================
   TEXT
========================= */
.book-title {
  font-size: 16px;
  font-weight: 700;
  margin: 10px 0 5px;
  color: var(--primary-color);
}

.book-author {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
}

/* =========================
   FOOTER
========================= */
.book-footer {
  display: flex;
  justify-content: space-between;
  align-items: justify;
  margin-top: 10px;
  max-width: 290px;
  flex-wrap: wrap;
  gap: 10px;
}

.book-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
}

.book-buy-btn {
  background: var(--accent-color);
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  color: var(--primary-color);
  line-height: 1;
  white-space: nowrap;
}


.wpf_form_wrapper_1622 {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px !important;
    border-radius: 12px;
    color: #fff;
    background: transparent !important; 
}
/* Wrapper */
.lessons-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    background: #2C2A63;
}

/* Table */
.lessons-table {
    width: 100%;
    background: #2C2A63;
    color: #ffffff;
    text-align: center;
    font-family: inherit;
}
.lessons-table tbody td {
    padding: 22px;
    font-size: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    background: #2C2A63;
}
.lessons-table tbody td:last-child {
    border-right: none !important;
}
table td, table th {
  border: none !important;
    line-height: 1.5;
    padding: 15px;
    vertical-align: middle !important;
}
.lessons-table tbody td {
    border-right: 1px solid rgba(255,255,255,0.15);
}

/* remove last column border */
.lessons-table tbody td:last-child {
    border-right: none !important;
}

/* Header */
.lessons-table thead th {
    background: #FFD700;
    color: #000;
    padding: 16px;
    font-weight: 700;
    font-size: 16px;
}

/* Body cells */
.lessons-table tbody td {
    padding: 22px;
    font-size: 15px;
    /* border-right: 1px solid rgba(255,255,255,0.15); */
    background: #2C2A63;
}

/* Remove last column border */
.lessons-table tbody td:last-child {
    border-right: none;
}

/* Bottom-left radius */
.lessons-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 14px;
}

/* Bottom-right radius */
.lessons-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 14px;
}

/* Button */
.lesson-buy-btn {
    display: inline-block;
    background: #FFD700;
    color: #000;
    padding: 10px 22px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.2s ease;
}

.lesson-buy-btn:hover {
    background: #ffcc00;
    color: #000;
}


/* ===============================
   WooCommerce Login & Account Design
================================ */

/* ===== Login & Lost Password Forms Container ===== */
body.woocommerce-account .woocommerce-form-login,
body.woocommerce-account .woocommerce-ResetPassword {
    max-width: 520px;
    width: 100%;
    background: #2C2A63;
    padding: 20px;
    border-radius: 14px;
    color: #ffffff;
    margin: 40px auto;
    box-sizing: border-box;
}

/* ===== Form Headings ===== */
body.woocommerce-account h2 {
    color: #FFD700;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
}

/* ===== Labels ===== */
body.woocommerce-account label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

/* ===== Form Rows ===== */
/* body.woocommerce-account .form-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
    box-sizing: border-box;
} */

/* ===== Inputs ===== */
body.woocommerce-account input.input-text {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: none;
    outline: none;
    margin-top: 4px;
    box-sizing: border-box;
}

/* ===== Remember Me ===== */
body.woocommerce-account .woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

body.woocommerce-account .woocommerce-form-login__rememberme input {
    margin-right: 6px;
}

body.woocommerce-account .woocommerce-form-login__rememberme span {
    color: #ffffff;
}

/* ===== Buttons ===== */
body.woocommerce-account .button,
body.woocommerce-account .woocommerce-form-login__submit,
body.woocommerce-account .woocommerce-ResetPassword .woocommerce-Button {
    width: 100%;
    background: #FFD700;
    color: #000;
    padding: 12px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
    display: inline-block;
}

body.woocommerce-account .button:hover,
body.woocommerce-account .woocommerce-form-login__submit:hover,
body.woocommerce-account .woocommerce-ResetPassword .woocommerce-Button:hover {
    background: #ffcc00;
    color: #000;
}

/* ===== Lost Password Link ===== */
/* body.woocommerce-account .woocommerce-LostPassword {
    width: 100%;
    text-align: center;
    margin-top: 15px;
} */

body.woocommerce-account .woocommerce-LostPassword a {
    color: #FFD700;
    text-decoration: none;
    font-size: 14px;
}

body.woocommerce-account .woocommerce-LostPassword a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ===== Notices Styling (optional, not hidden) ===== */
body.woocommerce-account .woocommerce-notices-wrapper {
    margin-bottom: 15px;
    color: #ffcc00;
}
/* ===============================
   WooCommerce Edit Address Page
   =============================== */
.select2-container .select2-selection--single .select2-selection__arrow{
  top: 28 !important;
}
fieldset{
border: none !important;
}
.woocommerce-info .wc-forward {
    display: block;
    margin-top: 12px;
    width: fit-content;
}


/* Page container */
body.woocommerce-account .woocommerce-MyAccount-content form {
    max-width: 760px;
    background: #2C2A63;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    margin: 10px auto;
    color: #ffffff;
}

/* Page Heading */
body.woocommerce-account .woocommerce-MyAccount-content form h2 {
    color: #FFD700;
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Field wrapper */
body.woocommerce-account .woocommerce-address-fields__field-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Full-width fields */
body.woocommerce-account .form-row-wide {
    grid-column: 1 / -1;
}

/* Labels */
body.woocommerce-account .woocommerce-address-fields label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

/* Required star */
body.woocommerce-account .woocommerce-address-fields .required {
    color: #FFD700;
}

/* Inputs & Selects */
body.woocommerce-account .woocommerce-address-fields input.input-text,
body.woocommerce-account .woocommerce-address-fields select,
body.woocommerce-account .woocommerce-address-fields .select2-selection {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: none;
    background: #ffffff;
    color: #17020B;
    font-size: 15px;
    box-sizing: border-box;
}

/* Select2 fixes */
body.woocommerce-account .select2-container--default .select2-selection--single {
    height: 46px;
    display: flex;
    align-items: center;
}

body.woocommerce-account .select2-selection__arrow {
    top: 50%;
    transform: translateY(-50%);
}

/* Input focus */
body.woocommerce-account .woocommerce-address-fields input:focus,
body.woocommerce-account .woocommerce-address-fields select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.6);
}

/* Buttons row */
body.woocommerce-account .woocommerce-address-fields p:last-child {
    margin-top: 30px;
}

/* Save Address Button */
body.woocommerce-account button[name="save_address"] {
    width: 100%;
    background: #FFD700;
    color: #000;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.woocommerce-account button[name="save_address"]:hover {
    background: #ffcc00;
    transform: translateY(-2px);
}

/* Notices */
body.woocommerce-account .woocommerce-notices-wrapper {
    color: #FFD700;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    body.woocommerce-account .woocommerce-address-fields__field-wrapper {
        grid-template-columns: 1fr;
    }

    body.woocommerce-account .woocommerce-MyAccount-content form {
        padding: 25px;
    }
}
/* ======================================
   WooCommerce Edit Address – Full Width
   ====================================== */

/* Force single column layout */
body.woocommerce-account .woocommerce-address-fields__field-wrapper {
    display: block !important;
}

/* Each field takes full width */
body.woocommerce-account .woocommerce-address-fields .form-row {
    width: 100% !important;
    float: none !important;
    margin-right: 0 !important;
}

/* Remove first/last column behavior */
body.woocommerce-account .woocommerce-address-fields .form-row-first,
body.woocommerce-account .woocommerce-address-fields .form-row-last {
    width: 100% !important;
    float: none !important;
}

/* Inputs & selects full width */
body.woocommerce-account .woocommerce-address-fields input.input-text,
body.woocommerce-account .woocommerce-address-fields select,
body.woocommerce-account .woocommerce-address-fields .select2-container {
    width: 100% !important;
}

/* Select2 height consistency */
body.woocommerce-account .select2-container--default .select2-selection--single {
    height: 46px;
    display: flex;
    align-items: center;
}

/* Spacing between fields */
body.woocommerce-account .woocommerce-address-fields .form-row {
    margin-bottom: 18px;
}

/* ===== My Account Sidebar ===== */
/* =====================================
   MY ACCOUNT – TWO COLUMN LAYOUT
===================================== */
body.woocommerce-account .woocommerce {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

/* =====================================
   LEFT SIDEBAR (SOFT PANEL)
===================================== */
body.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 240px;
    padding: 18px;
    border-radius: 14px;
    background: #fafafa; /* SOFT, not heavy */
    border: 1px solid #e6e6e6;
}

/* Menu list */
body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin-bottom: 6px;
}

/* Links */
body.woocommerce-account .woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
    color: #333;
    transition: background 0.2s ease, color 0.2s ease;
}

/* Hover */
body.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
    background: #f0f0f0;
}

/* Active */
body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
    background: #ededff;
    color: #3b3bdc;
    font-weight: 600;
}

/* =====================================
   RIGHT CONTENT (SOFT PANEL)
===================================== */
body.woocommerce-account .woocommerce-MyAccount-content {
    flex: 1;
    padding: 28px 32px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
}

/* Text */
body.woocommerce-account .woocommerce-MyAccount-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

/* Links */
body.woocommerce-account .woocommerce-MyAccount-content a {
  margin-top: 10px !important;
    color: #17020B;
    font-weight: 500;
    text-decoration: none;
}

body.woocommerce-account .woocommerce-MyAccount-content a:hover {
    text-decoration: underline;
}

/* Headings */
body.woocommerce-account .woocommerce-MyAccount-content h2 {
    margin-top: 0;
    font-weight: 600;
    color: #111;
}

/* ===== Container Table Styling ===== */
.woocommerce-orders-table {
    width: 100%;
    border-collapse: collapse;
    background: #DFDFE8; /* light grey background */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    font-family: 'Arial', sans-serif;
}

/* ===== Table Header ===== */
.woocommerce-orders-table thead {
    background: #FFD700; 
    color: #2C2A63;
    font-weight: 600;
    text-transform: uppercase;
}

.woocommerce-orders-table th {
    padding: 20px 20px !important;
    font-size: 14px;
    text-align: left;
}

/* ===== Table Body ===== */
.woocommerce-orders-table tbody tr {
    background: #fff;
    border-bottom: 1px solid #DFDFE8;
    transition: all 0.3s ease;
}

.woocommerce-orders-table tbody tr:hover {
    background: #FFD70010; /* subtle gold hover */
}

/* ===== Table Cells ===== */
.woocommerce-orders-table td,
.woocommerce-orders-table th {
    padding: 15px 20px !important;
    font-size: 14px;
    color: #2C2A63; /* dark text */
}

/* Order Number */
.woocommerce-orders-table__cell-order-number a {
    color: #2C2A63;
    font-weight: 600;
    text-decoration: none;
}

.woocommerce-orders-table__cell-order-number a:hover {
    color: #FFD700;
}

/* Order Status */
.woocommerce-orders-table__cell-order-status {
    font-weight: 500;
    color: #00000058; /* semi-transparent black */
}

/* Order Total */
.woocommerce-orders-table__cell-order-total {
    font-weight: 600;
    color: #2C2A63;
}

/* Action Button */
.woocommerce-orders-table__cell-order-actions .button {
    background: #2C2A63 !important;
    color: #ffffff !important;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.woocommerce-order-details,
.woocommerce-order-details * {
    color: #2C2A63 !important;
}
.woocommerce-customer-details address,
.woocommerce-customer-details address p {
    color: #2C2A63 !important;
}


.woocommerce-orders-table__cell-order-actions .button:hover {
    background: #FFD700;
    color: #2C2A63;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Responsive Table */
@media screen and (max-width: 768px) {
    .woocommerce-orders-table thead {
        display: none;
    }
    .woocommerce-orders-table tbody td {
        display: block;
        width: 100%;
        text-align: right;
        padding-left: 50%;
        position: relative;
    }
    .woocommerce-orders-table tbody td::before {
        content: attr(data-title);
        position: absolute;
        left: 20px;
        font-weight: 600;
        color: #2C2A63;
    }
}

/* =====================================
   MOBILE
===================================== */
@media (max-width: 900px) {
    body.woocommerce-account .woocommerce {
        flex-direction: column;
    }

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

.woocommerce-MyAccount-content p {
    font-size: 16px;
    color: #00000058; 
}

.woocommerce-Addresses {
    display: flex;
    flex-direction: column; 
    gap: 25px;
    width: 100%;
}

.woocommerce-Addresses.addresses .col-1,
.woocommerce-Addresses.addresses .col-2 {
    float: none !important; 
    width: 100% !important; 
}

.woocommerce-Address {
    width: 100%;
    background: linear-gradient(135deg, #ffffff, #f4f4f8);
    padding: 30px 35px;
    border-radius: 18px; 
    box-shadow: 0 8px 20px rgba(44, 42, 99, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #DFDFE8;
    transition: all 0.4s ease;
    position: relative;
}

/* Hover effect */
.woocommerce-Address:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(44, 42, 99, 0.15), 0 6px 20px rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, #ffffff, #e6e6f0); /* slightly brighter on hover */
}

/* ===== Address Header ===== */
.woocommerce-Address-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.woocommerce-Address-title h2 {
    font-size: 22px;
    font-weight: 700;
    color: #2C2A63; /* deep purple heading */
    margin: 0;
}

.woocommerce-Address-title a.edit {
    font-size: 14px;
    font-weight: 600;
    color: #FFD700; /* gold edit link */
    text-decoration: none;
    transition: all 0.3s ease;
}

.woocommerce-Address-title a.edit:hover {
    color: #2C2A63;
}

/* ===== Address Text Styling ===== */
.woocommerce-Address address {
    font-style: normal;
    line-height: 1.8;
    color: #17020B;
    font-size: 16px;
    margin-top: 5px;
}


@media screen and (max-width: 768px) {
    .woocommerce-Addresses {
        flex-direction: column;
        gap: 20px;
    }
    .woocommerce-Address {
        width: 100%;
    }
}

.woocommerce-Address-title h2 {
    font-weight: 700;
    margin-bottom: 0px !important; 
    text-align: left; 
}

/* ================================
   GLOBAL CHECKOUT RESET
================================ */

/* =================================
   PAGE WRAPPER
================================= */
body.woocommerce-checkout
.wp-block-woocommerce-checkout {
    /* max-width: 1200px; */
    margin: 40px auto;
    padding: 0 20px;
}

/* =================================
   LAYOUT (CLEAN GRID)
================================= */
body.woocommerce-checkout
.wc-block-components-sidebar-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 450px;
    gap: 32px;
    align-items: start;
}

/* =================================
   LEFT – FORM CARD
================================= */
body.woocommerce-checkout
.wc-block-checkout__main {
    background: #ffffff;
    border-radius: 14px;
    min-width: 550px;
    border: 1px solid #2C2A63;
    padding: 32px;
    color: #000 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Section spacing */
.wc-block-components-checkout-step {
    margin-bottom: 36px;
}

/* Headings */
.wc-block-components-checkout-step__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #1a1a1a;
}

/* =================================
   INPUTS – CLEAN & MODERN
================================= */
.wc-block-components-text-input input,
.wc-blocks-components-select__select {
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
}

.wc-block-components-text-input label,
.wc-blocks-components-select__label {
    color: #444;
    font-weight: 500;
}

/* Focus */
.wc-block-components-text-input input:focus,
.wc-blocks-components-select__select:focus {
    border-color: #6b6bff;
    outline: none;
}

/* Errors */
.wc-block-components-validation-error {
    color: #d63638;
}

/* =================================
   CHECKBOXES / RADIOS
================================= */
.wc-block-components-checkbox__label,
.wc-block-components-radio-control__label {
    color: #333;
}

/* =================================
   PLACE ORDER BUTTON
================================= */
.wc-block-components-checkout-place-order-button {
    background: #1a1a1a;
    color: #2C2A63;
    border-radius: 10px;
    padding: 16px;
    font-weight: 600;
}

.wc-block-components-checkout-place-order-button:hover {
    background: #000000;
}

/* =================================
   RIGHT – ORDER SUMMARY CARD
================================= */
body.woocommerce-checkout
.wc-block-checkout__sidebar {
    background: #2C2A63;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    position: sticky;
    top: 30px;
    min-width: 400px;
}

/* Title */
.wc-block-components-checkout-order-summary__title-text {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

/* =================================
   ORDER ITEMS
================================= */
.wc-block-components-order-summary-item {
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.wc-block-components-product-name {
    font-size: 14px;
    color: #FFD700 !important;
}

/* Prices */
.wc-block-components-product-price__value,
.wc-block-components-totals-item__value {
    font-weight: 600;
    color: #ffffff !important;
}

/* Discount */
.wc-block-components-product-price__regular {
    color: #ffffff;
}

/* =================================
   TOTAL
================================= */
.wc-block-components-totals-footer-item {
    border-top: 2px solid #ddd;
    margin-top: 18px;
    padding-top: 14px;
}

/* =================================
   RETURN TO CART
================================= */
.wc-block-components-checkout-return-to-cart-button {
    color: #555;
}

/* =================================
   MOBILE
================================= */
@media (max-width: 1024px) {
    body.woocommerce-checkout
    .wc-block-components-sidebar-layout {
        grid-template-columns: 1fr;
    }

    body.woocommerce-checkout
    .wc-block-checkout__sidebar {
        position: static;
    }
}
/* ------------------ */
/* ===== Container ===== */
.woocommerce-order {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #f5f5f8;
    border-radius: 14px;
    color: #2C2A63 !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* ===== Success Notice ===== */
.woocommerce-notice--success {
    background: #4CAF50;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
}
/* WooCommerce order table footer th color */
.woocommerce-table tfoot th {
    color: #2C2A63;
    font-weight: 600; /* keeps it bold */
}

/* ===== Order Overview ===== */
.woocommerce-order-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 30px;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.woocommerce-order-overview li {
    flex: 1 1 45%;
    font-size: 16px;
}

.woocommerce-order-overview li strong {
    display: block;
    margin-top: 5px;
    font-weight: 600;
    color: #2C2A63;
}

/* ===== Order Details Table ===== */
.woocommerce-order-details__title {
    font-size: 20px;
    font-weight: 700;
    color: #2C2A63;
    margin-bottom: 20px;
}

.woocommerce-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.woocommerce-table th,
.woocommerce-table td {
    padding: 15px 20px;
    text-align: left;
}

.woocommerce-table th {
    background: #2C2A63;
    color: #fff;
    font-weight: 600;
}

.woocommerce-table tfoot th {
    background: transparent;
    font-weight: 600;
}

.woocommerce-table tfoot td {
    text-align: left;
}

/* ===== Product Links ===== */
.woocommerce-table__product-name a {
    color: #2C2A63;
    font-weight: 500;
    text-decoration: none;
}

.woocommerce-table__product-name a:hover {
   
    text-decoration: underline;
}


.request-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s ease;
}

.request-popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.request-popup-content {
    background: #fff;
    padding: 40px;
    width: 500px;
    max-width: 95%;
    border-radius: 8px;
    position: relative;
    z-index: 10000;
}
