/* WooCommerce Modern Flat Design Styles */

/* ===========================
   SINGLE PRODUCT PAGE
   =========================== */

.modern-single-product {
    padding: 40px 0;
}

.product-layout {
    display: grid;
    grid-template-columns: 350px 1fr 380px;
    gap: 40px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Left Column - Gallery & Files */
.product-gallery-column {
    position: relative;
}

.woocommerce-product-gallery {
    margin-bottom: 30px;
}

.woocommerce-product-gallery__wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.woocommerce-product-gallery__image {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    background: #fafafa;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.woocommerce-product-gallery__image:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Product Files Section */
.product-files-section {
    background: var(--secondary-bg);
    border-radius: var(--border-radius-large);
    padding: 24px;
    margin-bottom: 20px;
}

.product-files-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 16px;
    color: var(--heading-color);
}

.file-formats {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.file-format-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-medium);
    text-decoration: none;
    transition: all 0.3s;
}

.file-format-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.file-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: var(--border-radius-small);
    font-weight: 700;
    font-size: 12px;
}

.file-label {
    font-size: 11px;
    color: var(--text-color);
    font-weight: 500;
}

.product-file-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: white;
    border-radius: var(--border-radius-small);
    font-size: 13px;
    color: var(--text-color);
}

.file-item .dashicons {
    color: var(--primary-color);
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* FAQ Section */
.product-faq-section {
    background: var(--secondary-bg);
    border-radius: var(--border-radius-large);
    padding: 24px;
}

.product-faq-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 16px;
    color: var(--heading-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--secondary-bg);
}

.faq-icon {
    font-size: 20px;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(90deg);
}

.faq-answer {
    display: none;
    padding: 0 16px 14px;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Middle Column - Product Info */
.product-info-column {
    padding: 0 20px;
}

.product-breadcrumb {
    margin-bottom: 20px;
}

.woocommerce-breadcrumb {
    font-size: 13px;
    color: #6b7280;
}

.woocommerce-breadcrumb a {
    color: var(--link-color);
    text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
    color: var(--link-hover-color);
}

.product-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--heading-color);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}

.star-rating {
    color: #fbbf24;
}

.rating-count {
    font-size: 14px;
    color: #6b7280;
}

/* Custom Product Options */
.custom-product-options {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.option-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #e5e7eb;
    color: #6b7280;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    cursor: help;
    transition: all 0.2s;
}

.option-info:hover {
    background: var(--primary-color);
    color: white;
}

.option-description {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    padding: 12px;
    background: #fef3c7;
    border-left: 3px solid #f59e0b;
    border-radius: var(--border-radius-small);
}

/* Option Buttons */
.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option-btn {
    padding: 12px 20px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-medium);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s;
}

.option-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.option-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Icon Buttons */
.option-buttons-icon {
    gap: 12px;
}

.option-btn-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    min-width: 100px;
}

.option-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: color 0.3s;
}

.option-btn-icon:hover .option-icon,
.option-btn-icon.active .option-icon {
    color: var(--primary-color);
}

.option-btn-icon.active .option-icon {
    color: white;
}

.option-text {
    font-size: 13px;
}

/* Select Dropdown */
.option-select {
    width: 100%;
    padding: 12px 16px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-medium);
    font-size: 14px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s;
}

.option-select:hover,
.option-select:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Quantity Options */
.quantity-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.quantity-option {
    padding: 20px 16px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-medium);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.quantity-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quantity-option.active {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    border-color: #06b6d4;
    color: white;
}

.quantity-number {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.quantity-label {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.quantity-price {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.quantity-tax {
    font-size: 11px;
    opacity: 0.7;
}

.bulk-pricing-toggle {
    margin-top: 16px;
    text-align: center;
}

.toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: var(--secondary-bg);
    border: none;
    border-radius: var(--border-radius-medium);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-btn:hover {
    background: #e5e7eb;
}

.toggle-switch {
    width: 40px;
    height: 22px;
    background: #cbd5e1;
    border-radius: 11px;
    position: relative;
    transition: background 0.3s;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
}

.toggle-btn.active .toggle-switch {
    background: var(--primary-color);
}

.toggle-btn.active .toggle-switch::after {
    transform: translateX(18px);
}

/* Right Column - Sidebar */
.product-sidebar-column {
    position: relative;
}

.product-sidebar-sticky {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-box {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-large);
    padding: 24px;
}

.price-label {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 4px;
}

.price-note {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.price-amount .woocommerce-Price-amount {
    color: var(--heading-color);
}

.add-to-cart-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius-medium);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.shipping-info {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 16px;
    padding: 12px;
    background: #ecfdf5;
    border-radius: var(--border-radius-small);
    font-size: 13px;
    color: #065f46;
}

.shipping-info .dashicons {
    color: #10b981;
    flex-shrink: 0;
}

.product-meta-box {
    background: var(--secondary-bg);
    border-radius: var(--border-radius-large);
    padding: 20px;
}

.meta-item {
    display: flex;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 13px;
}

.meta-item:last-child {
    border-bottom: none;
}

.meta-label {
    font-weight: 600;
    color: var(--heading-color);
}

.meta-value {
    color: var(--text-color);
}

.meta-value a {
    color: var(--link-color);
    text-decoration: none;
}

.meta-value a:hover {
    color: var(--link-hover-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-layout {
        grid-template-columns: 300px 1fr 340px;
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-sidebar-sticky {
        position: static;
    }
    
    .price-box {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 24px;
    }
    
    .option-buttons {
        flex-direction: column;
    }
    
    .option-btn {
        width: 100%;
    }
    
    .quantity-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .file-formats {
        flex-direction: column;
    }
}


/* ===========================
   SHOP / ARCHIVE PAGE
   =========================== */

.woocommerce-products-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.woocommerce-products-header__title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--heading-color);
}

.woocommerce-result-count {
    font-size: 14px;
    color: #6b7280;
}

.woocommerce-ordering {
    margin-bottom: 30px;
}

.woocommerce-ordering select {
    padding: 10px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-medium);
    font-size: 14px;
    background: white;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.woocommerce ul.products li.product img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px;
    font-weight: 600;
    margin: 16px 20px 8px;
    color: var(--heading-color);
}

.woocommerce ul.products li.product .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 20px 16px;
}

.woocommerce ul.products li.product .button {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
    text-align: center;
}

/* ===========================
   CART PAGE
   =========================== */

.woocommerce-cart {
    padding: 40px 0;
}

.woocommerce-cart-form {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-large);
    padding: 30px;
    margin-bottom: 30px;
}

.woocommerce-cart-form__contents {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.woocommerce-cart-form__contents thead {
    background: var(--secondary-bg);
}

.woocommerce-cart-form__contents th {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    color: var(--heading-color);
    border-bottom: 2px solid var(--border-color);
}

.woocommerce-cart-form__contents td {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.woocommerce-cart-form__contents .product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius-medium);
}

.woocommerce-cart-form__contents .product-name a {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
    text-decoration: none;
}

.woocommerce-cart-form__contents .product-name a:hover {
    color: var(--primary-color);
}

.woocommerce-cart-form__contents .product-price,
.woocommerce-cart-form__contents .product-subtotal {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
}

.woocommerce-cart-form__contents .quantity input {
    width: 80px;
    padding: 8px 12px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-small);
    text-align: center;
    font-size: 14px;
}

.woocommerce-cart-form__contents .product-remove a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.woocommerce-cart-form__contents .product-remove a:hover {
    background: #dc2626;
    color: white;
}

.cart-collaterals {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
}

.cart_totals {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-large);
    padding: 30px;
}

.cart_totals h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px;
    color: var(--heading-color);
}

.cart_totals table {
    width: 100%;
    margin-bottom: 20px;
}

.cart_totals th,
.cart_totals td {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart_totals th {
    font-weight: 600;
    text-align: left;
    color: var(--heading-color);
}

.cart_totals .order-total th,
.cart_totals .order-total td {
    font-size: 20px;
    font-weight: 700;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.wc-proceed-to-checkout .checkout-button {
    width: 100%;
    padding: 16px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius-medium);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.3s;
}

.wc-proceed-to-checkout .checkout-button:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

/* ===========================
   CHECKOUT PAGE
   =========================== */

.woocommerce-checkout {
    padding: 40px 0;
}

.woocommerce-checkout .col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.woocommerce-billing-fields,
.woocommerce-shipping-fields {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-large);
    padding: 30px;
}

.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px;
    color: var(--heading-color);
}

.woocommerce-checkout .form-row {
    margin-bottom: 20px;
}

.woocommerce-checkout label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--heading-color);
}

.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-medium);
    font-size: 14px;
    transition: all 0.3s;
}

.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

#order_review_heading {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px;
    color: var(--heading-color);
}

#order_review {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-large);
    padding: 30px;
}

.woocommerce-checkout-review-order-table {
    width: 100%;
    margin-bottom: 20px;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.woocommerce-checkout-payment {
    background: var(--secondary-bg);
    border-radius: var(--border-radius-medium);
    padding: 20px;
    margin-top: 20px;
}

.woocommerce-checkout-payment ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-checkout-payment .wc_payment_method {
    margin-bottom: 12px;
}

.woocommerce-checkout-payment label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-medium);
    cursor: pointer;
    transition: all 0.3s;
}

.woocommerce-checkout-payment label:hover {
    border-color: var(--primary-color);
}

.woocommerce-checkout-payment input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background: #eff6ff;
}

#place_order {
    width: 100%;
    padding: 16px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius-medium);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

#place_order:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

/* ===========================
   MY ACCOUNT PAGE
   =========================== */

.woocommerce-account {
    padding: 40px 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-large);
    padding: 20px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin-bottom: 8px;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
    display: block;
    padding: 12px 16px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: var(--border-radius-medium);
    transition: all 0.3s;
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
    background: var(--secondary-bg);
    color: var(--primary-color);
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
    background: var(--primary-color);
    color: white;
}

.woocommerce-account .woocommerce-MyAccount-content {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-large);
    padding: 30px;
}

.woocommerce-account .woocommerce-MyAccount-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px;
    color: var(--heading-color);
}

.woocommerce-orders-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.woocommerce-orders-table thead {
    background: var(--secondary-bg);
}

.woocommerce-orders-table th {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    color: var(--heading-color);
    border-bottom: 2px solid var(--border-color);
}

.woocommerce-orders-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
}

.woocommerce-orders-table .button {
    padding: 8px 16px;
    font-size: 13px;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
    .cart-collaterals {
        grid-template-columns: 1fr;
    }
    
    .woocommerce-checkout .col2-set {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .woocommerce-cart-form__contents .product-thumbnail img {
        width: 60px;
        height: 60px;
    }
    
    .woocommerce-cart-form__contents th,
    .woocommerce-cart-form__contents td {
        padding: 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
}
/* Print Product Styles */
.print-product-info .print-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ffb900, #ff8c00);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.print-product-info .print-icon {
    font-size: 14px;
}

.print-process-info {
    margin-top: 15px;
    padding: 15px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
}

.print-process-info .print-note {
    margin: 0;
    font-size: 13px;
    color: #856404;
    line-height: 1.5;
}

.print-process-info strong {
    color: #533f03;
}

/* Order Status Timeline Responsive */
@media (max-width: 768px) {
    .order-status-timeline {
        flex-direction: column;
        gap: 15px;
    }
    
    .status-step:not(:last-child)::after {
        display: none;
    }
    
    .status-step {
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
    }
    
    .status-icon {
        margin: 0;
    }
}

/* Admin Order Status Colors */
.widefat .column-order_status mark.print-review {
    background: #ffb900 !important;
    color: #fff !important;
}

.widefat .column-order_status mark.shipped {
    background: #00a32a !important;
    color: #fff !important;
}

/* Customer Order Status in Account */
.woocommerce-orders-table .order-status {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.woocommerce-orders-table .order-status.print-review {
    color: #ffb900;
}

.woocommerce-orders-table .order-status.shipped {
    color: #00a32a;
}

/* Print Files Section in Customer Account */
.customer-uploaded-files h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
}

.customer-uploaded-files .uploaded-file-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.customer-uploaded-files .uploaded-file-link:hover {
    text-decoration: underline;
}

.customer-uploaded-files .file-size {
    color: #666;
    font-size: 12px;
}/*
 File Upload Styles for Print Products */
.file-upload-group {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
}

.file-upload-area {
    margin-top: 15px;
}

.file-upload-dropzone {
    text-align: center;
    padding: 40px 20px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-dropzone:hover {
    border-color: var(--primary-color);
    background: #f8f9ff;
}

.file-upload-area.dragover .file-upload-dropzone {
    border-color: var(--primary-color);
    background: #f0f8ff;
}

.file-upload-area.success .file-upload-dropzone {
    border-color: #28a745;
    background: #f8fff8;
}

.file-upload-area.error .file-upload-dropzone {
    border-color: #dc3545;
    background: #fff8f8;
}

.file-upload-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.file-upload-text strong {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.file-upload-text span {
    color: #666;
    font-size: 14px;
}

.file-upload-formats {
    margin: 15px 0;
    font-size: 12px;
    color: #888;
}

.file-upload-browse-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
}

.file-upload-browse-btn:hover {
    background: var(--link-hover-color);
}

#uploaded-file-preview {
    padding: 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.uploaded-file-info {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.file-icon {
    font-size: 24px;
}

.file-details {
    flex: 1;
}

.file-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.file-size {
    font-size: 12px;
    color: #666;
}

.remove-file-btn {
    background: #dc3545;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-file-btn:hover {
    background: #c82333;
}

.file-upload-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 10px;
    padding: 10px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .file-upload-dropzone {
        padding: 30px 15px;
    }
    
    .file-upload-icon {
        font-size: 36px;
    }
    
    .file-upload-text strong {
        font-size: 14px;
    }
}