/**
 * Affiliate Coupon Pro - Premium Frontend Styles
 * 가독성 최적화 버전 + 모달 팝업
 */

/* ========================================
   색상 시스템 (Color Palette)
======================================== */
:root {
    /* Primary Colors */
    --acp-primary: #10b981;
    --acp-primary-dark: #059669;
    --acp-primary-light: #34d399;
    
    /* Accent Colors */
    --acp-accent: #ff6b35;
    --acp-accent-light: #ff8555;
    
    /* Secondary Colors */
    --acp-secondary: #3b82f6;
    --acp-secondary-dark: #2563eb;
    
    /* Neutral Colors */
    --acp-white: #ffffff;
    --acp-gray-50: #f9fafb;
    --acp-gray-100: #f3f4f6;
    --acp-gray-200: #e5e7eb;
    --acp-gray-300: #d1d5db;
    --acp-gray-600: #4b5563;
    --acp-gray-700: #374151;
    --acp-gray-900: #111827;
    
    /* Semantic Colors */
    --acp-success: #10b981;
    --acp-warning: #f59e0b;
    --acp-error: #ef4444;
    
    /* Shadows */
    --acp-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --acp-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --acp-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --acp-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ========================================
   쿠폰 래퍼
======================================== */
.acp-coupons-wrapper {
    display: block;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 20px;
    margin: 20px 0;
    padding: 4px;
}

@media (min-width: 1200px) {
    .acp-coupons-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
        gap: 24px;
    }
}

/* ========================================
   쿠폰 카드
======================================== */
.acp-coupon-card {
    display: flex;
    flex-direction: row;
    background: var(--acp-white);
    border: 1px solid var(--acp-gray-200);
    border-radius: 12px;
    overflow: visible;
    box-shadow: var(--acp-shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-bottom: 13px;
}

.acp-coupon-card:hover {
    box-shadow: var(--acp-shadow-xl);
    transform: translateY(-2px);
}

/* ========================================
   할인율 섹션
======================================== */
.acp-brand-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    background: var(--acp-white);
    min-width: 200px;
    max-width: 200px;
    text-align: center;
    border-right: 1px solid var(--acp-gray-200);
}

.acp-brand-logo {
    max-width: 60px;
    max-height: 60px;
    margin-bottom: 8px;
    object-fit: contain;
}

.acp-brand-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--acp-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.acp-discount-text {
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    color: var(--acp-accent);
    margin: 8px 0;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.2);
    word-break: keep-all;
    overflow-wrap: break-word;
    max-width: 100%;
    transition: font-size 0.3s ease; /* 👈 이 줄 추가 */
}

/* 글자 수에 따른 크기 조절 */
.acp-discount-text.size-xlarge {
    font-size: 48px; /* 1-3글자: 가장 크게 */
}

.acp-discount-text.size-large {
    font-size: 44px; /* 4-6글자: 크게 (기본값) */
}

.acp-discount-text.size-medium {
    font-size: 36px; /* 7-10글자: 중간 */
}

.acp-discount-text.size-small {
    font-size: 28px; /* 11글자 이상: 작게 */
}

.acp-coupon-type {
    display: inline-block;
    background: var(--acp-accent);
    color: var(--acp-white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   상세 정보 섹션
======================================== */
.acp-details-section {
    flex: 1;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    background: var(--acp-white);
}

.acp-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--acp-gray-900);
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.acp-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.acp-expiry-info {
    font-size: 13px;
    color: var(--acp-gray-700);
    font-weight: 500;
    padding: 4px 10px;
    background: var(--acp-gray-100);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.acp-expiry-info::before {
    content: '⏰';
    font-size: 12px;
}

.acp-expiry-info.expiring-soon {
    background: #fee2e2;
    color: var(--acp-error);
    font-weight: 600;
}

.acp-expiry-info.expiring-soon::before {
    content: '⚠️';
}

.acp-usage-count {
    font-size: 12px;
    color: var(--acp-gray-600);
    padding: 4px 10px;
    background: var(--acp-gray-100);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.acp-usage-count::before {
    content: '👥';
    font-size: 11px;
}

.acp-min-purchase {
    font-size: 13px;
    color: var(--acp-primary);
    font-weight: 600;
    margin: 0 0 14px 0;
    padding: 8px 12px;
    background: #ecfdf5;
    border-radius: 6px;
    border-left: 3px solid var(--acp-primary);
}

.acp-min-purchase::before {
    content: '💳 ';
}

/* ========================================
   버튼
======================================== */
.acp-code-wrapper {
    position: relative;
    margin-top: auto;
}

.acp-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    background: var(--acp-primary);
    color: var(--acp-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    position: relative;
    height: 59.5px;
}

.acp-button::before {
    content: '➜';
    margin-right: 6px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.acp-button:hover {
    background: var(--acp-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

.acp-button:hover::before {
    transform: translateX(4px);
}

.acp-button-text {
    flex: 1;
    text-align: left;
}

.acp-code-preview {
    position: relative;
    background: var(--acp-white);
    color: var(--acp-gray-900);
    padding: 6px 14px;
    border: 2px dashed var(--acp-primary);
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-left: 10px;
    white-space: nowrap;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ========================================
   세부사항 토글
======================================== */
.acp-details-toggle {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--acp-gray-200);
}

.acp-toggle-button {
    background: transparent;
    border: none;
    color: var(--acp-secondary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.acp-toggle-button::before {
    content: '▼';
    font-size: 10px;
    transition: transform 0.3s ease;
}

.acp-toggle-button.active::before {
    transform: rotate(180deg);
}

.acp-toggle-button:hover {
    color: var(--acp-secondary-dark);
}

.acp-details-content {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--acp-gray-700);
    padding: 12px;
    background: var(--acp-gray-50);
    border-radius: 6px;
    border-left: 3px solid var(--acp-secondary);
}

.acp-goto-wrapper {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--acp-gray-300);
}

.acp-goto-button {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    background: var(--acp-white);
    color: var(--acp-secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--acp-secondary);
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
}

.acp-goto-button:hover {
    background: var(--acp-secondary);
    color: var(--acp-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* ========================================
   모달 팝업 스타일 (개선된 디자인)
======================================== */
.acp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.acp-modal.acp-modal-active {
    opacity: 1;
    visibility: visible;
}

.acp-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.acp-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--acp-white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
    from {
        transform: translate(-50%, -45%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.acp-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: var(--acp-gray-600);
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
    z-index: 10;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acp-modal-close:hover {
    color: var(--acp-gray-900);
}

/* 브랜드 로고 (작게 수정) */
.acp-modal-brand {
    text-align: center;
    padding: 24px 24px 12px;
}

.acp-modal-brand-logo {
    max-width: 80px;
    max-height: 35px;
    object-fit: contain;
}

/* 헤더 */
.acp-modal-header {
    text-align: center;
    padding: 0 24px 24px;
}

.acp-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--acp-gray-900);
    margin: 0 0 16px 0;
    line-height: 1.4;
}

/* 정보 카드 (시간/사용자) */
.acp-modal-info-cards {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.acp-modal-info-card {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--acp-gray-50);
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid var(--acp-gray-200);
}

.acp-modal-info-icon {
    font-size: 16px;
    line-height: 1;
}

.acp-modal-info-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--acp-gray-700);
}

/* 본문 */
.acp-modal-body {
    padding: 20px 24px;
}

/* 최소 구매 금액 (그라데이션) */
.acp-modal-min-purchase {
    background: linear-gradient(135deg, #e6f7f0 0%, #d4f1e8 100%);
    border-radius: 10px;
    padding: 14px 18px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #00875a;
    margin-bottom: 20px;
    border: 2px solid #b3e5d4;
    box-shadow: 0 2px 8px rgba(0, 199, 60, 0.1);
}

/* 쿠폰 코드 섹션 */
.acp-modal-code-section {
    margin-bottom: 20px;
}

.acp-modal-code-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--acp-white);
    border: 2px dashed #00c73c;
    border-radius: 8px;
    padding: 16px;
}

.acp-modal-code-text {
    flex: 1;
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--acp-gray-900);
    font-family: 'Courier New', monospace;
    word-break: break-all;
}

.acp-modal-copy-btn {
    background: var(--acp-white);
    border: 1px solid var(--acp-gray-300);
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--acp-gray-700);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.acp-modal-copy-btn:hover {
    background: var(--acp-gray-100);
    border-color: var(--acp-gray-400);
}

.acp-modal-copy-btn.copied {
    background: #00c73c;
    border-color: #00c73c;
    color: var(--acp-white);
}

.acp-modal-code-hint {
    text-align: center;
    font-size: 13px;
    color: var(--acp-gray-600);
    margin: 8px 0 0 0;
}

/* 세부사항 */
.acp-modal-details {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 16px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--acp-gray-700);
}

.acp-modal-details > strong {
    color: var(--acp-gray-900);
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
}

.acp-modal-details-content {
    font-size: 14px;
    line-height: 1.7;
}

.acp-modal-details-content p {
    margin: 0 0 12px 0;
}

.acp-modal-details-content p:last-child {
    margin-bottom: 0;
}

.acp-modal-details-content ul,
.acp-modal-details-content ol {
    margin: 0 0 12px 0;
    padding-left: 20px;
}

.acp-modal-details-content li {
    margin-bottom: 6px;
}

.acp-modal-details-content strong {
    color: var(--acp-gray-900);
    font-weight: 600;
}

.acp-modal-details-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 10px 0;
}

.acp-modal-details-content a {
    color: var(--acp-secondary);
    text-decoration: underline;
}

.acp-modal-details-content a:hover {
    color: var(--acp-secondary-dark);
}

.acp-modal-details-content h1,
.acp-modal-details-content h2,
.acp-modal-details-content h3,
.acp-modal-details-content h4,
.acp-modal-details-content h5,
.acp-modal-details-content h6 {
    color: var(--acp-gray-900);
    margin: 16px 0 8px 0;
    font-weight: 600;
}

.acp-modal-details-content h1:first-child,
.acp-modal-details-content h2:first-child,
.acp-modal-details-content h3:first-child {
    margin-top: 0;
}

/* 푸터 */
.acp-modal-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--acp-gray-200);
}

.acp-modal-btn-goto {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: #00c73c;
    color: var(--acp-white);
    box-shadow: 0 4px 12px rgba(0, 199, 60, 0.25);
}

.acp-modal-btn-goto:hover {
    background: #00a832;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 199, 60, 0.35);
}

/* 태블릿 */
@media (min-width: 768px) {
    .acp-modal-content {
        width: 80%;
        max-width: 550px;
    }
}

/* PC */
@media (min-width: 1024px) {
    .acp-modal-content {
        width: 550px;
    }
}

/* 모바일 최적화 */
@media (max-width: 640px) {
    .acp-modal-content {
        width: 90%;
        max-height: 95vh;
    }
    
    .acp-modal-brand {
        padding: 20px 16px 10px;
    }
    
    .acp-modal-brand-logo {
        max-width: 70px;
        max-height: 30px;
    }
    
    .acp-modal-header {
        padding: 0 16px 20px;
    }
    
    .acp-modal-title {
        font-size: 16px;
    }
    
    .acp-modal-info-cards {
        gap: 8px;
    }
    
    .acp-modal-info-card {
        padding: 6px 12px;
    }
    
    .acp-modal-info-icon {
        font-size: 14px;
    }
    
    .acp-modal-info-text {
        font-size: 12px;
    }
    
    .acp-modal-body {
        padding: 16px;
    }
    
    .acp-modal-footer {
        padding: 16px;
    }
    
    .acp-modal-code-text {
        font-size: 18px;
    }
    
    .acp-modal-code-box {
        flex-direction: column;
        gap: 12px;
    }
    
    .acp-modal-copy-btn {
        width: 100%;
    }
}

/* ========================================
   브랜드 목록 위젯
======================================== */
.acp-brand-list-widget {
    background: var(--acp-white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--acp-shadow-md);
    margin-bottom: 24px;
}

.acp-brand-list-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--acp-gray-900);
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--acp-primary);
}

.acp-brand-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.acp-brand-item {
    margin: 0;
    padding: 0;
}

.acp-brand-item + .acp-brand-item {
    border-top: 1px solid var(--acp-gray-200);
}

.acp-brand-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.acp-brand-link:hover {
    background: var(--acp-gray-50);
    padding-left: 12px;
}

.acp-brand-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.acp-brand-logo-small {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
    background: var(--acp-gray-100);
    padding: 6px;
    flex-shrink: 0;
}

.acp-brand-logo-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--acp-primary), var(--acp-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--acp-white);
    flex-shrink: 0;
}

.acp-brand-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1;
}

.acp-brand-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--acp-gray-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.acp-brand-label {
    font-size: 12px;
    color: var(--acp-gray-600);
}

.acp-brand-arrow {
    font-size: 16px;
    color: var(--acp-gray-400);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.acp-brand-link:hover .acp-brand-arrow {
    color: var(--acp-primary);
    transform: translateX(4px);
}

.acp-no-brands {
    text-align: center;
    padding: 20px;
    color: var(--acp-gray-600);
    font-size: 14px;
}

/* ========================================
   쿠폰 없음 메시지
======================================== */
.acp-no-coupons {
    text-align: center;
    padding: 60px 20px;
    color: var(--acp-gray-600);
    font-size: 16px;
    background: var(--acp-gray-50);
    border-radius: 12px;
    border: 2px dashed var(--acp-gray-300);
}

/* ========================================
   반응형 디자인
======================================== */

/* 태블릿 */
@media (max-width: 768px) {
    .acp-coupons-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .acp-brand-list-widget {
        padding: 16px;
    }
    
    .acp-brand-list-title {
        font-size: 16px;
    }
    
    .acp-brand-logo-small,
    .acp-brand-logo-placeholder {
        width: 36px;
        height: 36px;
    }
    
    .acp-brand-name {
        font-size: 13px;
    }
    
    .acp-brand-label {
        font-size: 11px;
    }
}

/* 모바일 */
@media (max-width: 640px) {
    .acp-coupons-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 8px;
    }
    
    .acp-coupon-card {
        flex-direction: row;
        min-height: auto;
    }
    
    .acp-brand-section {
        min-width: 100px;
        max-width: 100px;
        padding: 16px 12px;
        flex-shrink: 0;
    }
    
    .acp-brand-logo {
        max-width: 50px;
        max-height: 50px;
    }
    
    .acp-discount-text {
        font-size: 20px;
        line-height: 1;
        word-break: break-all;
        hyphens: auto;
    }
    
    /* 모바일에서도 글자 수에 따른 크기 조절 */
    .acp-discount-text.size-xlarge {
        font-size: 24px;
    }
    
    .acp-discount-text.size-large {
        font-size: 20px;
    }
    
    .acp-discount-text.size-medium {
        font-size: 18px;
    }
    
    .acp-discount-text.size-small {
        font-size: 16px;
    }
    
    .acp-details-section {
        padding: 16px;
        flex: 1;
        min-width: 0;
    }
    
    .acp-title {
        font-size: 14px;
        margin-bottom: 10px;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
    
    .acp-button {
        flex-direction: row;
        gap: 8px;
        padding: 10px;
        align-items: center;
        height: 48.5px !important;
    }
    
    .acp-button::before {
        display: inline;
        font-size: 14px;
    }
    
    .acp-button-text {
        text-align: left;
        flex: 1;
        min-width: 0;
    }
    
    .acp-code-preview {
        margin-left: 8px;
        font-size: 11px;
        padding: 4px 8px;
        flex-shrink: 0;
    }
}

/* 초소형 모바일 */
@media (max-width: 380px) {
    .acp-brand-section {
        min-width: 85px;
        max-width: 85px;
        padding: 12px 8px;
    }
    
    .acp-discount-text {
        font-size: 18px;
        line-height: 1;
    }
    
    /* 초소형 모바일에서도 글자 수에 따른 크기 조절 */
    .acp-discount-text.size-xlarge {
        font-size: 22px;
    }
    
    .acp-discount-text.size-large {
        font-size: 18px;
    }
    
    .acp-discount-text.size-medium {
        font-size: 16px;
    }
    
    .acp-discount-text.size-small {
        font-size: 14px;
    }
    
    .acp-details-section {
        padding: 12px;
    }
    
    .acp-title {
        font-size: 13px;
    }
    
    .acp-button {
        padding: 8px;
        font-size: 12px;
        height: 41px !important;
    }
    
    .acp-code-preview {
        font-size: 10px;
        padding: 3px 6px;
        margin-left: 6px;
    }
    
    .acp-meta-info {
        flex-direction: column;
        gap: 6px;
    }
    
    .acp-expiry-info,
    .acp-usage-count {
        font-size: 11px;
        padding: 3px 8px;
    }
}

/* ========================================
   접근성 향상
======================================== */
.acp-button:focus-visible,
.acp-toggle-button:focus-visible,
.acp-modal-btn-goto:focus-visible,
.acp-modal-copy-btn:focus-visible {
    outline: 3px solid var(--acp-primary);
    outline-offset: 2px;
}

/* 애니메이션 감소 */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   프린트 스타일
======================================== */
@media print {
    .acp-button,
    .acp-toggle-button,
    .acp-modal {
        display: none;
    }
    
    .acp-details-content {
        display: block !important;
    }
    
    .acp-coupon-card {
        box-shadow: none;
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
}