.goodies-swag-rewards-section {
    background: #25223B;
    padding: 60px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    border-radius: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.goodies-swag-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.goodies-swag-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.goodies-swag-title {
    color: white;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

.goodies-swag-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin: 0;
    line-height: 1.5;
}

.goodies-main-title {
    color: white;
    font-size: 36px;
    font-weight: 500;
    margin: 40px 0 20px 0;
    line-height: 1.2;
}

.goodies-main-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 800px;
}

.goodies-card-logo {
    width: 120px;
    height: auto;
}

.wcc-goodies-swag-redeem-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white !important;
    border: none;
    border-radius: 50px;
    padding: 7px 14px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: auto;
    align-self: flex-start;
}

.wcc-goodies-swag-redeem-btn::after {
    content: '›';
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}

.wcc-goodies-swag-redeem-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* ── CAROUSEL ─────────────────────────────────────────── */

.goodies-carousel-outer {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.goodies-carousel-stage {
    flex: 1;
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 24px;
}

.goodies-carousel-stage::before,
.goodies-carousel-stage::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 20;
    pointer-events: none;
}
.goodies-carousel-stage::before {
    left: 0;
    background: linear-gradient(to right, #25223B 0%, transparent 100%);
}
.goodies-carousel-stage::after {
    right: 0;
    background: linear-gradient(to left, #25223B 0%, transparent 100%);
}

.goodies-carousel-item {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 260px;
    height: 390px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity   0.55s ease;
    cursor: pointer;
    will-change: transform, opacity;
}

.goodies-carousel-item .ci-img {
    height: 185px;
    flex-shrink: 0;
    background: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.goodies-carousel-item .ci-img img {
    max-height: 150px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s ease;
}

.goodies-carousel-item[data-active="true"] .ci-img img {
    transform: scale(1.06);
}

.goodies-carousel-item .ci-body {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.goodies-carousel-item .ci-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 7px;
    line-height: 1.35;
}

.goodies-carousel-item .ci-desc {
    font-size: 11.5px;
    color: #666;
    line-height: 1.55;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
}

/* ── NAV BUTTONS ───────────────────────────────────────── */

.goodies-carousel-nav-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    border: 1.5px solid rgba(255, 255, 255, 0.30);
    color: white;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease, opacity 0.3s ease;
    backdrop-filter: blur(12px);
    padding: 0 0 2px;
    user-select: none;
}

.goodies-carousel-nav-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.60);
    transform: scale(1.12);
}

.goodies-carousel-nav-btn:disabled {
    opacity: 0.25;
    cursor: default;
}

/* ── FOOTER ────────────────────────────────────────────── */

.goodies-carousel-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
}

.goodies-carousel-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.goodies-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.35s ease;
}

.goodies-dot.active {
    background: white;
    width: 22px;
    border-radius: 4px;
}

/* ── GIFT CARD GRID ────────────────────────────────────── */

.giftcard-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.giftcard-header-row .goodies-main-title {
    margin: 40px 0 20px 0;
}

.giftcard-header-row .goodies-main-description {
    margin-bottom: 0;
}

.giftcard-redeem-btn {
    flex-shrink: 0;
    padding: 12px 24px;
    font-size: 13px;
    white-space: nowrap;
    align-self: flex-end;
    margin-bottom: 4px;
}

.giftcard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.giftcard-item {
    background: #f5f5f7;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 28px 20px 20px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.35s ease;
    cursor: pointer;
    overflow: hidden;
}

.giftcard-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
}

.giftcard-item img {
    max-width: 80%;
    max-height: 64px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.35s ease;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.12));
    flex-shrink: 0;
}

.giftcard-item:hover img {
    transform: scale(1.08);
}

.giftcard-item-label {
    font-size: 12px;
    font-weight: 600;
    color: #444;
    text-align: center;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.giftcard-explore-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 2px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.giftcard-explore-link::after {
    content: '→';
    font-size: 15px;
    transition: transform 0.25s ease;
}

.giftcard-explore-link:visited {
    color: rgba(255, 255, 255, 0.70);
    border-color: rgba(255, 255, 255, 0.25);
}

.giftcard-explore-link:hover,
.giftcard-explore-link:visited:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.70);
}

.giftcard-explore-link:hover::after,
.giftcard-explore-link:visited:hover::after {
    transform: translateX(4px);
}

/* ── RESPONSIVE ────────────────────────────────────────── */

@media (max-width: 768px) {
    .goodies-swag-rewards-section {
        padding: 40px 16px;
    }
    .goodies-main-title { font-size: 28px; }
    .goodies-carousel-stage { height: 400px; }
    .goodies-carousel-item { width: 230px; height: 370px; }
    .goodies-carousel-nav-btn { width: 40px; height: 40px; font-size: 22px; }
    .goodies-progress-track { width: 130px; }
    .giftcard-grid { grid-template-columns: repeat(2, 1fr); }
    .giftcard-header-row { flex-direction: column; align-items: flex-start; gap: 16px; }
    .giftcard-redeem-btn { align-self: flex-start; }
}

@media (max-width: 480px) {
    .goodies-carousel-nav-btn { display: none; }
    .goodies-carousel-stage { border-radius: 16px; }
}
