/**
 * Print Rescue - Main Styles
 * 信頼感＋親しみやすさ：堅すぎず、軽すぎず
 *
 * @package Print_Rescue
 */

/* ============================
   CSS Variables
   ============================ */
:root {
    /* Colors */
    --pr-primary: #c45c3e;
    --pr-primary-hover: #a94d32;
    --pr-secondary: #6b8e7d;
    --pr-text: #333;
    --pr-text-light: #666;
    --pr-border: #ddd;
    --pr-bg: #faf8f6;
    --pr-bg-white: #fff;
    --pr-error: #d63638;
    --pr-success: #00a32a;

    /* Typography */
    --pr-font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
    --pr-font-serif: "Noto Serif JP", "Hiragino Mincho ProN", serif;

    /* Spacing */
    --pr-radius: 8px;
    --pr-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ============================
   Reset & Base
   ============================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--pr-font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--pr-text);
    background-color: var(--pr-bg);
}

a {
    color: var(--pr-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--pr-primary-hover);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================
   Layout
   ============================ */
.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.site-main {
    background: var(--pr-bg-white);
    border-radius: var(--pr-radius);
    padding: 40px;
    box-shadow: var(--pr-shadow);
}

/* ============================
   Header
   ============================ */
.site-header {
    background: var(--pr-bg-white);
    box-shadow: var(--pr-shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-branding a {
    font-size: 24px;
    font-weight: bold;
    color: var(--pr-primary);
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
}

.main-navigation a {
    color: var(--pr-text);
    font-weight: 500;
    padding: 8px 0;
    display: block;
}

.main-navigation a:hover {
    color: var(--pr-primary);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-tel {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--pr-text);
    font-weight: bold;
}

.header-btn {
    background: var(--pr-primary);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: var(--pr-radius);
    font-weight: bold;
    transition: background 0.3s ease;
}

.header-btn:hover {
    background: var(--pr-primary-hover);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--pr-text);
    position: relative;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--pr-text);
}

.menu-toggle-icon::before {
    top: -8px;
}

.menu-toggle-icon::after {
    bottom: -8px;
}

/* ============================
   Footer
   ============================ */
.site-footer {
    background: var(--pr-text);
    color: #fff;
    margin-top: auto;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.footer-info {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo a {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.footer-company {
    font-size: 14px;
    line-height: 1.8;
}

.footer-company p {
    margin: 0;
}

.footer-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-navigation a {
    color: #ccc;
    font-size: 14px;
}

.footer-navigation a:hover {
    color: #fff;
}

.footer-copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #555;
    text-align: center;
    font-size: 12px;
    color: #999;
}

.footer-copyright p {
    margin: 0;
}

/* ============================
   Entry Content
   ============================ */
.entry-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--pr-primary);
}

.entry-title {
    margin: 0;
    font-size: 28px;
    font-family: var(--pr-font-serif);
}

.entry-content h2 {
    font-size: 22px;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--pr-border);
}

.entry-content h3 {
    font-size: 18px;
    margin: 30px 0 15px;
}

.entry-content p {
    margin: 0 0 1.5em;
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        display: none;
        width: 100%;
        order: 3;
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }

    .main-navigation li {
        border-bottom: 1px solid var(--pr-border);
    }

    .main-navigation a {
        padding: 12px 0;
    }

    .header-contact {
        display: none;
    }

    .site-main {
        padding: 20px;
    }

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

    .footer-info {
        flex-direction: column;
        gap: 20px;
    }

    .footer-navigation ul {
        flex-direction: column;
        gap: 10px;
    }
}

/* ============================================================
   商品一覧
   ============================================================ */

.pr-product-list {
    display: grid;
    grid-template-columns: repeat(var(--columns, 3), 1fr);
    gap: 24px;
    margin: 32px 0;
}

.pr-product-item {
    display: block;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.2s;
}

.pr-product-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.pr-product-item__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f5f5f5;
}

.pr-product-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pr-product-item__noimage {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

.pr-product-item__noimage .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
}

.pr-product-item__info {
    padding: 16px;
}

.pr-product-item__title {
    margin: 0 0 8px;
    font-size: 1.125rem;
    font-weight: 600;
}

.pr-product-item__price {
    margin: 0;
    color: #e53935;
    font-weight: 600;
}

/* ============================================================
   商品詳細
   ============================================================ */

.pr-product-detail {
    max-width: 800px;
    margin: 0 auto;
}

.pr-product-detail__title {
    font-size: 1.75rem;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid #333;
}

.pr-product-detail__section {
    margin-bottom: 40px;
}

.pr-product-detail__section h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 4px solid var(--pr-primary);
}

/* テンプレート一覧 */
.pr-template-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.pr-template-item {
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
}

.pr-template-item__image img {
    width: 100%;
    height: auto;
    display: block;
}

.pr-template-item__info {
    padding: 12px;
}

.pr-template-item__name {
    margin: 0 0 8px;
    font-weight: 600;
}

.pr-template-item__download {
    display: inline-block;
    padding: 6px 12px;
    background: var(--pr-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.875rem;
}

.pr-template-item__download:hover {
    background: var(--pr-primary-hover);
}

/* 文字色・紙の種類一覧 */
.pr-color-list,
.pr-paper-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.pr-color-item,
.pr-paper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.pr-color-item img,
.pr-paper-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.pr-color-item__name,
.pr-paper-item__name {
    font-size: 0.875rem;
    font-weight: 500;
}

/* 価格表 */
.pr-price-table {
    width: 100%;
    max-width: 400px;
    border-collapse: collapse;
}

.pr-price-table th,
.pr-price-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.pr-price-table th {
    background: #f5f5f5;
    font-weight: 600;
}

.pr-price-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #e53935;
}

/* アクションボタン */
.pr-product-detail__action {
    margin-top: 40px;
    text-align: center;
}

.pr-btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.pr-btn--primary {
    background: var(--pr-primary);
    color: #fff;
}

.pr-btn--primary:hover {
    background: var(--pr-primary-hover);
}

.pr-btn--large {
    padding: 16px 48px;
    font-size: 1.125rem;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .pr-product-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .pr-product-detail__title {
        font-size: 1.5rem;
    }
    
    .pr-template-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .pr-product-list {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Product Pages (Front)
   ========================================================================== */

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.page-description {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Product List */
.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.product-card__icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-card__delivery {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.product-card__price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb__separator {
    margin: 0 0.5rem;
}

/* Product Detail */
.product-detail {
    max-width: 900px;
    margin: 0 auto;
}

.product-detail__header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.product-detail__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-detail__delivery {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f0f9ff;
    border-radius: 4px;
    color: var(--primary-color);
    font-weight: 500;
}

.product-detail__description {
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Product Section */
.product-section {
    margin-bottom: 3rem;
}

.product-section__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

/* Price Table */
.price-table-wrap {
    overflow-x: auto;
}

.price-table {
    width: 100%;
    max-width: 500px;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.price-table th {
    background: var(--bg-light);
    font-weight: 600;
}

.price-table__price {
    font-weight: 600;
    color: var(--primary-color);
}

/* グループ価格表 */
.price-table--grouped {
    max-width: 100%;
}

.price-table--grouped th,
.price-table--grouped td {
    text-align: center;
    white-space: nowrap;
}

.price-table--grouped th:first-child,
.price-table--grouped td:first-child {
    text-align: left;
}

/* Template Grid */
.template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.template-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
}

.template-card__image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-light);
}

.template-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.template-card__name {
    padding: 0.75rem;
    font-weight: 500;
    border-top: 1px solid var(--border-color);
}

.template-card__download {
    display: block;
    padding: 0.75rem;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    transition: background 0.3s ease;
}

.template-card__download:hover {
    background: var(--primary-dark);
}

/* Option Grid */
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
}

.option-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
}

.option-card__image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-light);
}

.option-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.option-card__name {
    padding: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Notes Section */
.product-section--notes {
    background: #fffbeb;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #fcd34d;
}

.product-section--notes .product-section__title {
    border-bottom-color: #f59e0b;
    color: #b45309;
}

.notes-content {
    line-height: 1.8;
}

.notes-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.notes-content li {
    margin-bottom: 0.5rem;
}

/* Product Action */
.product-detail__action {
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.5rem;
    }
    
    .product-detail__title {
        font-size: 1.5rem;
    }
    
    .template-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .option-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   Order Form
   ========================================================================== */

.order-form-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.order-form__title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

/* Order Section */
.order-section {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.order-section__title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.order-section__step {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
}

.order-section--confirm {
    background: var(--bg-light);
}

/* Order Field */
.order-field {
    margin-bottom: 1.5rem;
}

.order-field:last-child {
    margin-bottom: 0;
}

.order-field__label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.order-field__label .required {
    color: #dc2626;
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

.order-field__help {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Order Input */
.order-input,
.order-select,
.order-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.order-input:focus,
.order-select:focus,
.order-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.order-input--short {
    max-width: 200px;
}

.order-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Order Options (Radio/Checkbox cards) */
.order-options {
    display: grid;
    gap: 1rem;
}

.order-options--template {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.order-options--color,
.order-options--paper {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}

.order-option {
    cursor: pointer;
}

.order-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.order-option__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.order-option input:checked + .order-option__content {
    border-color: var(--primary-color);
    background: #f0f9ff;
}

.order-option input:focus + .order-option__content {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.order-option__image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    background: var(--bg-light);
}

.order-option--small .order-option__image {
    aspect-ratio: 1;
}

.order-option__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.order-option__name {
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}

/* Order Price Display */
.order-price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin-top: 1.5rem;
}

.order-price-display__label {
    font-weight: 600;
}

.order-price-display__value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Order Price Summary (内訳表示) */
.order-price-summary {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.order-price-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.order-price-summary__label {
    color: var(--text-light);
}

.order-price-summary__value {
    font-weight: 600;
}

.order-price-summary__value.is-free {
    color: #059669;
}

.order-price-summary__note {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0.5rem 0;
    text-align: right;
}

.order-price-summary__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--primary-color);
}

.order-price-summary__total .order-price-summary__label {
    font-weight: 600;
    color: var(--text-color);
}

.order-price-summary__total .order-price-summary__value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Order File Upload */
.order-file-upload {
    padding: 1.5rem;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    text-align: center;
    background: var(--bg-light);
}

.order-file-upload input[type="file"] {
    width: 100%;
}

/* Order Checkbox */
.order-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.order-checkbox input {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
}

.order-checkbox a {
    color: var(--primary-color);
}

/* Order Submit */
.order-form__submit {
    text-align: center;
    padding: 2rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .order-section {
        padding: 1.5rem;
    }
    
    .order-options--template {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .order-options--color,
    .order-options--paper {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .order-price-display {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .order-options--color,
    .order-options--paper {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   Order Confirm
   ========================================================================== */

.order-confirm-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.order-confirm__title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.order-confirm__lead {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.order-confirm__section {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.order-confirm__heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.order-confirm__list {
    display: grid;
    gap: 0.75rem;
}

.order-confirm__list dt {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.875rem;
}

.order-confirm__list dd {
    margin-left: 0;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
}

.order-confirm__price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.order-confirm__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 2rem 0;
}

/* ==========================================================================
   Order Complete
   ========================================================================== */

.order-complete-wrap {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 1.5rem;
}

.order-complete__icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.order-complete__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #059669;
}

.order-complete__message {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.order-complete__info {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.order-complete__info dt {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.order-complete__info dd {
    margin-left: 0;
    margin-bottom: 1rem;
}

.order-complete__info dd:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .order-confirm__actions {
        flex-direction: column;
    }
    
    .order-confirm__actions .btn {
        width: 100%;
    }
}
