/* WWW Blocks Global Styling */
.www-block-global-catalog {
    margin: 30px 0;
}

.www-product-card-premium {
    background: #161b22;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
}

.www-product-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: #58a6ff;
}

.www-product-card-premium img {
    border-radius: 8px;
    margin-bottom: 15px;
    width: 100%;
    height: auto;
    background-color: white;
}

.www-product-card-premium h4 {
    margin: 10px 0;
    font-size: 1.2rem;
    color: #f0f6fc;
}

.www-price-row {
    margin: 15px 0;
    font-family: 'Inter', sans-serif;
}

.www-price-row .label {
    display: block;
    font-size: 0.8rem;
    color: #8b949e;
    text-transform: uppercase;
}

.www-price-row .value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3fb950;
}

.www-product-card-premium .button {
    background: #238636;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
}

.www-product-card-premium .button:hover {
    background: #2ea043;
}

/* Tiered Pricing Block */
.www-block-tiered-pricing {
    background: #0d1117;
    border: 1px solid rgba(88, 166, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
    color: #fff;
    margin: 20px 0;
}

.www-block-tiered-pricing h3 {
    margin-top: 0;
    color: #58a6ff;
    font-size: 1.4rem;
}

.www-tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.www-tier-item {
    background: #161b22;
    border: 1px solid #30363d;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.www-tier-item.highlighted {
    border-color: #3fb950;
    background: rgba(63, 185, 80, 0.05);
    transform: scale(1.05);
}

.www-tier-item .qty {
    display: block;
    font-size: 0.9rem;
    color: #8b949e;
    margin-bottom: 5px;
}

.www-tier-item .price {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    color: #f0f6fc;
}

.www-tier-item .save {
    display: block;
    font-size: 0.8rem;
    color: #3fb950;
    margin-top: 5px;
    font-weight: bold;
}

.www-block-tiered-pricing small {
    color: #484f58;
}
/* Delivery Elements */
.www-product-card-premium {
    position: relative;
    overflow: hidden;
}

.www-delivery-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 2;
    text-transform: uppercase;
}

.www-badge-immediate {
    background: #238636;
    color: #fff;
}

.www-badge-international {
    background: #1f6feb;
    color: #fff;
}

.www-delivery-section {
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.www-has-top-border {
    border-top: 1px solid #30363d;
    padding-top: 20px;
}

.www-section-title {
    margin: 0 0 15px 0;
    font-size: 1rem;
    color: #8b949e;
}

.www-promo-text {
    background: rgba(88, 166, 255, 0.1);
    border-left: 3px solid #58a6ff;
    padding: 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #f0f6fc;
    margin-top: 15px;
}

.www-promo-text strong {
    color: #3fb950;
}
