/* Countdown Styles */
.countdown {
    animation: pulse 2s infinite;
    transition: color 0.3s ease;
}

.urgent-countdown {
    color: #f59e0b !important; /* Amber/orange color for urgency */
    font-weight: 700;
}

/* Shipping preview in admin */
.shipping-preview {
    margin-top: 15px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.shipping-countdown-preview {
    margin-top: 10px;
    font-size: 14px;
}

/* Status indicators */
.shipping-status {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-active {
    background-color: #dcfce7;
    color: #166534;
}

.status-limited {
    background-color: #fef3c7;
    color: #92400e;
}

.status-expired {
    background-color: #fee2e2;
    color: #b91c1c;
}
   :root {
    --brand-green: #00AF66;
    --brand-green-light: #e6f7ef;
    --brand-green-dark: #008f52;
}

.brand-green {
    color: var(--brand-green);
}

.bg-brand-green {
    background-color: var(--brand-green);
}

.bg-brand-green-light {
    background-color: var(--brand-green-light);
}

.bg-brand-green-70 {
    background-color: rgba(0, 175, 102, 0.7);
}

.border-brand-green {
    border-color: var(--brand-green);
}

.hover-bg-brand-green-light:hover {
    background-color: var(--brand-green-light);
}

.hover-bg-brand-green-dark:hover {
    background-color: var(--brand-green-dark);
}


@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.product-image {
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image:hover {
    transform: scale(1.05);
}

/* Tailwind-like utility classes */
.rounded-md {
    border-radius: 0.375rem;
}

.w-full {
    width: 100%;
}

.h-auto {
    height: auto;
}

/* 모바일에서 이미지 크기 조정 */
@media (max-width: 768px) {
    .product-image {
        max-width: 300px;
    }
}

/* 큰 화면에서 이미지 크기 확대 */
@media (min-width: 1024px) {
    .product-image {
        max-width: 500px;
    }
}

.new-badge {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* 상품 이미지 좌측 영역 스타일 */
.bg-pink-200 {
    min-height: 400px;
}

@media (min-width: 768px) {
    .bg-pink-200 {
        min-height: 500px;
    }
}

/* 상품 이미지 그리드 컨테이너 */
.grid.grid-cols-1.gap-4.max-w-md {
    max-width: 100%;
}

@media (min-width: 1024px) {
    .grid.grid-cols-1.gap-4.max-w-md {
        max-width: 500px;
    }
}