/* 이벤트 페이지 전용 스타일 - 접두사: fresh-event */
.fresh-event-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.fresh-event-page {
    font-family: "Pretendard", sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    min-height: 100vh;
}
.fresh-event-container {
    max-width: 1140px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
}
.fresh-event-hero {
    background: linear-gradient(45deg, #0d2bc7, #2c8dd2);
    color: white;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}
.fresh-event-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: fresh-event-float 20s linear infinite;
}
@keyframes fresh-event-float {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
.fresh-event-hero-content {
    position: relative;
    z-index: 2;
}
.fresh-event-hero h1 {
    font-size: 24px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.fresh-event-hero-subtitle {
    font-size: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}
.fresh-event-badge {
    background: rgba(255,255,255,0.9);
    color: #0c2ec6;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    margin: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.fresh-event-deadline-banner {
    background: red;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 1.2em;
    font-weight: bold;
    animation: fresh-event-pulse 2s infinite;
}
@keyframes fresh-event-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}
.fresh-event-info-section {
    padding: 40px 0 40px 130px;
}
.fresh-event-info-section p {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.5;
}
.fresh-event-info-section b {
    font-weight: 700;
    color: #d32f2f;
}
.fresh-event-products-section {
    padding: 50px 20px;
    background: #f8f9fa;
}
.fresh-event-section-title {
    text-align: center;
    font-size: 2.2em;
    font-weight: 800;
    color: #000;
    margin-bottom: 40px;
}
.fresh-event-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.fresh-event-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
}
.fresh-event-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #ff6b6b;
}
.fresh-event-product-image {
    height: 320px;
    background: linear-gradient(45deg, #f1f2f6, #ddd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #eee;
}
.fresh-event-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.fresh-event-product-info {
    padding: 25px;
}
.fresh-event-product-title {
    font-size: 1.4em;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}
.fresh-event-product-desc {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.3;
}
.fresh-event-product-desc strong {
    color: #d32f2f;
    font-weight: 700;
}
.fresh-event-product-price {
    font-size: 18px;
    font-weight: 800;
    color: #d32f2f;
    text-align: center;
    margin-top: 15px;
}
.fresh-event-product-detail-btn {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
}
.fresh-event-product-detail-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
    text-decoration: none;
}
.fresh-event-benefits-section {
    background: white;
    padding: 50px 20px;
}
.fresh-event-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}
.fresh-event-benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}
.fresh-event-benefit-item:hover {
    background: #e3f2fd;
    border-color: #2196f3;
    transform: translateY(-5px);
}
.fresh-event-benefit-icon {
    font-size: 3em;
    margin-bottom: 15px;
}
.fresh-event-benefit-title {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}
.fresh-event-order-section {
    background: rgb(223, 236, 254);
    color: white;
    padding: 50px 20px;
    text-align: center;
}
.fresh-event-order-box {
    background: rgba(255,255,255,0.95);
    color: #333;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.fresh-event-order-box h2 {
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}
.fresh-event-order-button {
    background: linear-gradient(45deg, #0d2bc7, #2c8dd2);
    color: white;
    border: none;
    padding: 20px 60px;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(210, 224, 250, 0.4);
    transition: all 0.3s ease;
}
.fresh-event-order-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(210, 224, 250, 0.5);
    text-decoration: none;
}
.fresh-event-account-info {
    background: #e8f5e8;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    font-size: 1.4em;
    border-left: 5px solid #4caf50;
}
.fresh-event-account-info h3 {
    margin-bottom: 10px;
    color: #333;
}
.fresh-event-account-info p {
    margin: 0;
    color: #333;
}
.fresh-event-order-info {
    margin-top: 20px;
    font-size: 1.2em;
    color: #666;
    text-align: left;
}
.fresh-event-order-info p {
    margin-bottom: 8px;
}
.fresh-event-highlight {
    background: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}
.fresh-event-highlight strong {
    color: #d32f2f;
}
.fresh-event-footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 30px 20px;
}
.fresh-event-footer p {
    margin-bottom: 8px;
}
.fresh-event-footer p:last-child {
    margin-top: 15px;
    font-size: 0.9em;
    opacity: 0.8;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .fresh-event-hero h1 {
        font-size: 20px;
    }
    .fresh-event-hero-subtitle {
        font-size: 40px;
        line-height: 45px;
    }
    .fresh-event-products-grid {
        grid-template-columns: 1fr;
    }
    .fresh-event-benefits-grid {
        grid-template-columns: 1fr;
    }
    .fresh-event-order-box {
        padding: 25px;
    }
    .fresh-event-info-section {
        padding: 40px 20px;
    }
}