/* ========================================
   HYAKUE SHOP - Modern Japanese Luxury Design
   Concepts: 和モダン, 温かみ, 高級感, 信頼
   Colors:
     - Base: Off-white (Washi) #f9f9f7
     - Text: Sumi #333333
     - Accent: Kincha (Gold Tea) #c9a959
     - Accent Dark: #a68b3d
     - Secondary: Fukamidori (Deep Green) #2c3e50
======================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@400;600&display=swap');

/* ========================================
   CSS Variables (Design Tokens)
======================================== */
:root {
    /* Colors - Aligned with Salon Main Site */
    --color-bg: #faf8f5;
    --color-bg-white: #ffffff;
    --color-text: #3d3833;
    --color-text-light: #6b635a;
    --color-primary: #6b8e6b;
    /* Aligned: Salon Green */
    --color-accent: #d4a574;
    /* Aligned: Salon Orange/Beige */
    --color-accent-light: #e8c9a8;
    --color-accent-dark: #c4915e;
    --color-border: #ebd6c0;
    --color-error: #bf4d4d;
    --color-success: #4dbf7d;

    /* Gray Scale */
    --color-gray-50: #fcfcfb;
    --color-gray-100: #f7f6f2;
    --color-gray-200: #e9e7e1;
    --color-gray-300: #d5d1c5;
    --color-gray-500: #9c9581;
    --color-gray-800: #3d3833;

    /* Typography - Aligned with Salon */
    --font-serif: 'Zen Maru Gothic', sans-serif;
    --font-sans: 'Noto Sans JP', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 4rem;

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(92, 74, 58, 0.06);
    --shadow-md: 0 4px 20px rgba(92, 74, 58, 0.1);
    --shadow-lg: 0 10px 40px rgba(92, 74, 58, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;
    --transition: 0.3s ease;
}

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

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-feature-settings: "palt";
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 600;
}

/* ========================================
   Layout Utilities
======================================== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.main-content {
    min-height: calc(100vh - 80px - 300px);
    padding-bottom: var(--space-xl);
}

/* ========================================
   Header
======================================== */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 8px rgba(92, 74, 58, 0.06);
    transition: transform 0.3s ease;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.header__logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

.header__logo-accent {
    font-size: 0.8em;
    background: var(--color-primary);
    color: #fff;
    padding: 2px 8px;
    border-radius: 2px;
    margin-left: 8px;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.header__nav-link {
    font-size: 0.9rem;
    color: var(--color-text);
    position: relative;
    padding-bottom: 4px;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: var(--transition);
}

.header__nav-link:hover::after {
    width: 100%;
}

.header__cart {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--color-border);
    border-radius: 30px;
    font-size: 0.9rem;
    background: #fff;
    transition: var(--transition);
}

.header__cart:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.header__cart-count {
    background: var(--color-accent);
    color: #fff;
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .header__nav-link:not(:last-child) {
        display: none;
    }
}

/* ========================================
   Hero Section
======================================== */
.hero {
    padding: 8rem 0 6rem;
    text-align: center;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(201, 169, 89, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(44, 62, 80, 0.03) 0%, transparent 40%);
}

.hero__title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--color-primary);
    display: inline-block;
    position: relative;
}

.hero__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-accent);
    margin: 1.5rem auto 0;
}

.hero__subtitle {
    font-size: 1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.hero__title-accent {
    color: var(--color-accent);
}

/* ========================================
   Category Filter
======================================== */
.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.category-filter__btn {
    padding: 10px 24px;
    border: 1px solid var(--color-border);
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--color-text-light);
    background: #fff;
    transition: var(--transition);
}

.category-filter__btn:hover,
.category-filter__btn.active {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #fff;
}

/* ========================================
   Product Grid & Card
======================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.product-card {
    background: #fff;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 169, 89, 0.2);
}

.product-card__image {
    aspect-ratio: 1;
    overflow: hidden;
    background: #f4f4f4;
    position: relative;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 12px;
    font-size: 0.75rem;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
}

.product-card__body {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card__title {
    font-size: 1rem;
    font-family: var(--font-serif);
    margin-bottom: var(--space-sm);
    line-height: 1.5;
    flex-grow: 1;
}

.product-card__price {
    margin-top: auto;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.product-card__price-regular {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    font-family: var(--font-serif);
}

.product-card__btn {
    margin-top: var(--space-md);
    width: 100%;
    padding: 12px;
    background: var(--color-accent);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card__btn:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   Components
======================================== */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--color-primary);
    color: #fff;
    padding: 16px 24px;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: #f0f0eb;
    padding: 4rem 0 2rem;
    color: var(--color-text);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
    padding: 0 var(--space-md);
}

.footer__section-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.footer__section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--color-accent);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer__link {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.footer__link:hover {
    color: var(--color-accent);
    transform: translateX(4px);
}

.footer__copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #aaa;
    border-top: 1px solid #e5e5e0;
    padding-top: 2rem;
}

/* ========================================
   Page Specific: Product Detail
======================================== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    padding: var(--space-md) 0 var(--space-xl);
}

.breadcrumb {
    padding: var(--space-lg) 0;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

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

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

.breadcrumb__sep {
    margin: 0 10px;
    color: var(--color-border);
}

.breadcrumb__current {
    color: var(--color-gray-500);
}

@media (max-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

.product-detail__image {
    background: #fff;
    padding: var(--space-sm);
    border: 1px solid var(--color-border);
}

.product-detail__title {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    line-height: 1.4;
    color: var(--color-primary);
}

.product-detail__price-value {
    font-size: 1.8rem;
    color: var(--color-accent-dark);
    font-family: var(--font-serif);
    font-weight: 600;
}

.product-detail__quantity-control {
    border: 1px solid var(--color-border);
    display: flex;
    width: fit-content;
}

.product-detail__quantity-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.product-detail__quantity-btn:hover {
    background: #eee;
}

.product-detail__quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    font-size: 1rem;
}

.product-detail__add-btn {
    width: 100%;
    padding: 16px;
    background: var(--color-primary);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: var(--space-lg);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.product-detail__add-btn:hover {
    background: #5a7a5a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.product-detail__category {
    font-size: 0.8rem;
    color: var(--color-accent-dark);
    display: block;
    margin-bottom: var(--space-xs);
    letter-spacing: 0.1em;
}

.product-detail__price-box {
    background: var(--color-gray-100);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-lg);
}

.product-detail__price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.product-detail__price-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.product-detail__quantity {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.product-detail__quantity-label {
    font-size: 0.9rem;
    font-weight: 600;
}

.product-detail__description {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.product-detail__description-title {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.product-detail__description-text {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ========================================
   Page Specific: Cart & Checkout
======================================== */
/* ========================================
   Common Page Elements
======================================== */
.page-title {
    text-align: center;
    margin-bottom: var(--space-xl);
    font-size: 2rem;
    color: var(--color-primary);
}

/* Step Indicator */
.order-steps {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin: var(--space-lg) 0 var(--space-xl);
    padding: 0 var(--space-md);
}

.order-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    flex: 1;
    max-width: 120px;
}

.order-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15px;
    left: calc(50% + 25px);
    width: calc(100% - 10px);
    height: 1px;
    background: var(--color-border);
}

.order-step__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
    z-index: 1;
}

.order-step.active .order-step__num {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.order-step__text {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.order-step.active .order-step__text {
    color: var(--color-primary);
    font-weight: 600;
}

/* ========================================
   Page Specific: Cart
======================================== */
.cart-empty {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    background: var(--color-bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.cart-empty__icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    color: var(--color-accent-light);
}

.cart-empty__title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.cart-empty__text {
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.cart-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--space-xl);
    align-items: flex-start;
}

.cart-item-card {
    display: flex;
    gap: var(--space-md);
    background: var(--color-bg-white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    margin-bottom: var(--space-sm);
    transition: var(--transition);
}

.cart-item-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-sm);
}

.cart-item-card__image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid #eee;
}

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

.cart-item-card__body {
    flex-grow: 1;
}

.cart-item-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}

.cart-item-card__title {
    font-size: 1rem;
    font-family: var(--font-serif);
    line-height: 1.4;
}

.cart-item-card__remove {
    font-size: 1.25rem;
    color: var(--color-text-light);
    padding: 4px;
    margin-top: -6px;
}

.cart-item-card__remove:hover {
    color: var(--color-error);
}

.cart-item-card__price {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.cart-item-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-card__quantity {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: 4px;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fcfcfc;
}

.quantity-btn:hover {
    background: #eee;
}

.quantity-value {
    width: 40px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.cart-item-card__subtotal {
    font-weight: 600;
    font-family: var(--font-serif);
    color: var(--color-primary);
}

.cart-continue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: var(--space-lg);
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.cart-continue:hover {
    color: var(--color-accent);
}

/* Cart Sidebar / Summary */
.cart-summary-box {
    background: var(--color-bg-white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    position: sticky;
    top: 100px;
}

.cart-summary-box__title {
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-bg);
}

.cart-summary-box__row {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
}

.free-shipping {
    color: var(--color-success);
    font-weight: 500;
}

.cart-summary-box__total {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-serif);
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

.btn-checkout {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--color-primary);
    color: #fff;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.btn-checkout:hover {
    background: #5a7a5a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cart-summary-note {
    margin-top: var(--space-md);
    font-size: 0.75rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .cart-grid {
        grid-template-columns: 1fr;
    }
}

.cart-summary,
.checkout-form {
    background: #fff;
    padding: var(--space-lg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}


/* ========================================
   Page Specific: Checkout
======================================== */
.checkout__section {
    background: var(--color-bg-white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.checkout__section-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-gray-100);
    color: var(--color-primary);
}

.checkout__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.checkout__field {
    margin-bottom: var(--space-md);
}

.checkout__label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.checkout__label--required::after {
    content: '必須';
    font-size: 0.7rem;
    background: var(--color-error);
    color: #fff;
    padding: 2px 6px;
    border-radius: 2px;
    margin-left: 8px;
    vertical-align: middle;
}

.checkout__input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-gray-50);
    font-size: 1rem;
    transition: var(--transition);
}

.checkout__input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(107, 142, 107, 0.1);
}

.checkout__input--textarea {
    min-height: 120px;
    resize: vertical;
}

.checkout__order-summary {
    background: var(--color-gray-100);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
}

.checkout__order-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed var(--color-border);
    font-size: 0.95rem;
}

.checkout__order-total {
    display: flex;
    justify-content: space-between;
    padding-top: var(--space-md);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-primary);
    font-family: var(--font-serif);
}

.checkout__submit-btn {
    display: block;
    width: 100%;
    padding: 20px;
    background: var(--color-primary);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    margin-top: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.checkout__submit-btn:hover {
    background: #5a7a5a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 600px) {
    .checkout__row {
        grid-template-columns: 1fr;
    }
}

/* Mobile Enhancements */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-sm);
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .product-card__title {
        font-size: 0.9rem;
    }

    .product-card__price-regular {
        font-size: 1rem;
    }

    .product-detail__add-btn {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        width: calc(100% - 40px);
        z-index: 100;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        background: var(--color-primary);
        color: #fff;
        border-radius: 30px;
    }

    .main-content {
        padding-bottom: 80px;
        /* Space for fixed button */
    }
}

/* ========================================
   Page Specific: Order Complete
======================================== */
.complete {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
}

.complete__icon {
    font-size: 4rem;
    color: var(--color-success);
    margin-bottom: var(--space-md);
}

.complete__title {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    color: var(--color-primary);
}

.complete__message {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.complete__box {
    background: var(--color-bg-white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    margin-bottom: var(--space-lg);
    text-align: left;
    box-shadow: var(--shadow-sm);
}

.complete__box-title {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-gray-100);
    color: var(--color-primary);
}

.complete__order-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent-dark);
    font-family: var(--font-serif);
    text-align: center;
    padding: var(--space-md);
    background: var(--color-gray-50);
    border-radius: var(--radius-sm);
}

.complete__bank-info {
    font-size: 0.95rem;
}

.complete__bank-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dotted var(--color-gray-200);
}

.complete__bank-label {
    color: var(--color-text-light);
}

.complete__bank-value {
    font-weight: 500;
}

.complete__note {
    margin-top: var(--space-md);
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.6;
    padding: var(--space-md);
    background: #fffcf5;
    border-left: 4px solid var(--color-accent);
}

.complete__home-btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--color-gray-800);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.complete__home-btn:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.complete__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-xl);
}

.complete__summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-gray-100);
    font-size: 0.95rem;
}

.complete__summary-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-primary);
    font-family: var(--font-serif);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}