/* ===================================
   WISHLIST BUTTON STYLING
   =================================== */

/* Heart button on service cards */
.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(200, 154, 99, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    outline: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.wishlist-btn i {
    font-size: 18px;
    color: #c89a63;
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    transform: scale(1.15);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(200, 154, 99, 0.6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wishlist-btn:active {
    transform: scale(0.95);
}

.wishlist-btn.active {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    border-color: #ff4757;
}

.wishlist-btn.active i {
    color: #ffffff;
}

.wishlist-btn.active:hover {
    background: linear-gradient(135deg, #ff6b81 0%, #ff4757 100%);
    box-shadow: 0 6px 16px rgba(255, 71, 87, 0.4);
}

/* Heartbeat animation */
@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    10% {
        transform: scale(1.3);
    }
    20% {
        transform: scale(1.1);
    }
    30% {
        transform: scale(1.25);
    }
    40% {
        transform: scale(1);
    }
}

.wishlist-btn-animate {
    animation: heartBeat 0.6s ease-in-out;
}

/* ===================================
   GLOBAL WISHLIST ICON IN NAVBAR
   =================================== */

.nav-wishlist {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    margin-left: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.nav-wishlist i {
    font-size: 22px;
    color: #2d1b12;
    transition: color 0.3s ease;
}

.nav-wishlist:hover i {
    color: #a67c52;
}

.wishlist-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    color: white;
    font-size: 10px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 6px rgba(255, 71, 87, 0.3);
    animation: badgePop 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes badgePop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* ===================================
   WISHLIST PAGE STYLING
   =================================== */

#wishlist-section {
    min-height: 80vh;
    padding: 100px 20px 80px;
    background: #faf9f7;
}

.wishlist-container {
    max-width: 1300px;
    margin: 0 auto;
}

.wishlist-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 40px;
    background: linear-gradient(135deg, #fef5f1 0%, #fdf0ea 100%);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(200, 154, 99, 0.08);
}

.wishlist-header h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Cormorant Garamond', serif;
}

.wishlist-header h1 i {
    color: #c89a63;
    font-size: 28px;
}

.wishlist-header p {
    font-size: 15px;
    color: #8b7355;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.wishlist-empty {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(200, 154, 99, 0.08);
}

.wishlist-empty i {
    font-size: 80px;
    color: #e5d9cc;
    margin-bottom: 20px;
    display: block;
}

.wishlist-empty h2 {
    font-size: 26px;
    color: #5a5a5a;
    margin-bottom: 12px;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}

.wishlist-empty p {
    font-size: 15px;
    color: #8b8b8b;
    margin-bottom: 28px;
    line-height: 1.6;
}

.wishlist-empty .btn-browse {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, #c89a63 0%, #a67c52 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(200, 154, 99, 0.25);
    letter-spacing: 0.3px;
}

.wishlist-empty .btn-browse:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(200, 154, 99, 0.35);
}

/* Wishlist Content Layout */
.wishlist-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

/* Wishlist Items */
.wishlist-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wishlist-item {
    background: white;
    border-radius: 12px;
    padding: 18px 20px;
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 18px;
    align-items: center;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(200, 154, 99, 0.08);
    opacity: 0;
    animation: fadeSlideIn 0.5s ease forwards;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wishlist-item:hover {
    box-shadow: 0 4px 16px rgba(200, 154, 99, 0.12);
    transform: translateY(-2px);
    border-color: rgba(200, 154, 99, 0.15);
}

.wishlist-item-image {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
    background: #f9f8f6;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.wishlist-item-details {
    flex: 1;
}

.wishlist-item-name {
    font-size: 17px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 6px;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.3px;
}

.wishlist-item-description {
    font-size: 13px;
    color: #8b8b8b;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.wishlist-item-price {
    font-size: 15px;
    color: #a67c52;
    font-weight: 600;
}

.wishlist-item-price::before {
    content: 'Starting at ';
    font-size: 12px;
    color: #999;
    font-weight: 400;
}

.wishlist-item-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.btn-remove-item {
    background: transparent;
    border: none;
    color: #999;
    font-size: 13px;
    cursor: pointer;
    padding: 6px 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    border-radius: 6px;
}

.btn-remove-item:hover {
    color: #666;
    background: #f5f5f5;
}

.btn-remove-item i {
    margin-right: 4px;
    font-size: 12px;
}

/* Wishlist Sidebar */
.wishlist-sidebar {
    position: sticky;
    top: 100px;
}

.wishlist-summary {
    background: white;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(200, 154, 99, 0.12);
}

.wishlist-summary h2 {
    font-size: 22px;
    color: #2d2d2d;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #efefef;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f9f9f9;
}

.summary-row:last-of-type {
    border-bottom: none;
}

.summary-label {
    font-size: 14px;
    color: #7a7a7a;
    font-weight: 500;
}

.summary-value {
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
}

/* Offer Applied Badge */
.offer-applied {
    margin: 20px 0;
    padding: 18px 20px;
    background: linear-gradient(135deg, #fef9f5 0%, #fef5ef 100%);
    border-radius: 10px;
    border: 1px solid rgba(200, 154, 99, 0.2);
}

.offer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #a67c52;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-badge i {
    font-size: 14px;
}

.offer-discount {
    border: none !important;
    padding: 8px 0 0 0 !important;
}

.discount-value {
    color: #059669 !important;
    font-size: 16px !important;
}

/* Referral Code Section */
.referral-code-section {
    margin: 18px 0;
    display: flex;
    gap: 8px;
}

.referral-input {
    flex: 1;
    padding: 11px 14px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
    background: #fafafa;
}

.referral-input:focus {
    outline: none;
    border-color: #c89a63;
    box-shadow: 0 0 0 3px rgba(200, 154, 99, 0.08);
    background: white;
}

.btn-apply-referral {
    padding: 11px 18px;
    background: #c89a63;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
}

.btn-apply-referral:hover {
    background: #a67c52;
    transform: translateY(-1px);
}

.btn-apply-referral:disabled {
    background: #d4d4d4;
    cursor: not-allowed;
    transform: none;
}

/* Total Row */
.summary-total {
    padding-top: 20px !important;
    margin-top: 12px;
    border-top: 2px solid #efefef !important;
    border-bottom: none !important;
}

.summary-total .summary-label {
    font-size: 18px;
    font-weight: 600;
    color: #2d2d2d;
}

.summary-total .summary-value {
    font-size: 26px;
    color: #a67c52;
    font-family: 'Cormorant Garamond', serif;
}

/* CTA Buttons */
.wishlist-actions {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-get-offer,
.btn-personalized-offer {
    width: 100%;
    padding: 15px 24px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.btn-get-offer {
    background: linear-gradient(135deg, #c89a63 0%, #a67c52 100%);
    color: white;
    box-shadow: 0 2px 12px rgba(200, 154, 99, 0.25);
}

.btn-get-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(200, 154, 99, 0.35);
}

.btn-get-offer:active {
    transform: translateY(0px);
}

.btn-get-offer:disabled {
    background: linear-gradient(135deg, #d4d4d4 0%, #b8b8b8 100%);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-personalized-offer {
    background: white;
    color: #a67c52;
    border: 1px solid #d4c4b4;
}

.btn-personalized-offer:hover {
    background: #faf9f7;
    border-color: #c89a63;
    color: #8b6a47;
}

.btn-personalized-offer:active {
    transform: scale(0.98);
}

.btn-personalized-offer:disabled {
    border-color: #e5e5e5;
    color: #b8b8b8;
    cursor: not-allowed;
    background: white;
}

.wishlist-note {
    margin-top: 16px;
    font-size: 12px;
    color: #999;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    line-height: 1.5;
}

.wishlist-note i {
    color: #c89a63;
    font-size: 11px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1200px) {
    .wishlist-content {
        grid-template-columns: 1fr 350px;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .wishlist-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .wishlist-sidebar {
        position: static;
    }
    
    .wishlist-item {
        grid-template-columns: 90px 1fr auto;
        gap: 18px;
        padding: 18px 20px;
    }
    
    .wishlist-item-image {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 768px) {
    #wishlist-section {
        padding: 80px 15px 60px;
    }
    
    .wishlist-header {
        padding: 24px 28px;
    }
    
    .wishlist-header h1 {
        font-size: 26px;
    }
    
    .wishlist-header p {
        font-size: 14px;
    }
    
    .wishlist-item {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 14px;
    }
    
    .wishlist-item-image {
        width: 100%;
        max-width: 100%;
        height: 160px;
        margin: 0 auto;
    }
    
    .wishlist-item-actions {
        justify-content: flex-start;
        flex-direction: row;
    }
    
    .wishlist-summary {
        padding: 26px 22px;
    }
    
    .summary-total .summary-value {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .wishlist-header h1 {
        font-size: 22px;
        flex-direction: column;
        gap: 8px;
    }
    
    .wishlist-empty {
        padding: 50px 20px;
    }
    
    .wishlist-empty i {
        font-size: 60px;
    }
    
    .wishlist-empty h2 {
        font-size: 22px;
    }
    
    .wishlist-empty p {
        font-size: 14px;
    }
    
    .wishlist-item-name {
        font-size: 16px;
    }
    
    .wishlist-item-price {
        font-size: 14px;
    }
    
    .btn-remove-item {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .wishlist-summary h2 {
        font-size: 20px;
    }
    
    .referral-code-section {
        flex-direction: column;
    }
    
    .btn-apply-referral {
        width: 100%;
    }
}

/* ===================================
   AVAILABLE OFFERS SECTION (INLINE)
   =================================== */

.available-offers-section {
    background: linear-gradient(135deg, #fef9f6 0%, #fef5f1 100%);
    border-radius: 16px;
    padding: 32px;
    margin-top: 30px;
    border: 1px solid rgba(200, 154, 99, 0.15);
    box-shadow: 0 4px 20px rgba(200, 154, 99, 0.08);
}

.offers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(200, 154, 99, 0.15);
}

.offers-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: #2d1b12;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offers-header h2 i {
    color: #a67c52;
}

.btn-close-offers {
    background: rgba(200, 154, 99, 0.1);
    border: 1px solid rgba(200, 154, 99, 0.2);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-close-offers:hover {
    background: rgba(200, 154, 99, 0.2);
    transform: rotate(90deg);
}

.btn-close-offers i {
    color: #a67c52;
    font-size: 16px;
}

.offers-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.offer-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(200, 154, 99, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a67c52, #c89a63);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-card:hover {
    border-color: #a67c52;
    box-shadow: 0 8px 24px rgba(200, 154, 99, 0.15);
    transform: translateY(-4px);
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-type-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.offer-type-badge.combo {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.offer-type-badge.spend-threshold {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.offer-type-badge.referral {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.offer-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: #2d1b12;
    margin-bottom: 8px;
}

.offer-card-label {
    display: inline-block;
    background: linear-gradient(135deg, #fef9f6, #fef5f1);
    border: 1px dashed #a67c52;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #a67c52;
    margin-bottom: 12px;
}

.offer-card-description {
    font-size: 14px;
    color: #7a6354;
    line-height: 1.6;
    margin-bottom: 16px;
}

.offer-card-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(200, 154, 99, 0.1);
}

.offer-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.offer-detail-label {
    color: #7a6354;
}

.offer-detail-value {
    font-weight: 600;
    color: #2d1b12;
}

.offer-referral-code {
    background: #f8f4f1;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 600;
    color: #a67c52;
    text-align: center;
    letter-spacing: 1px;
    border: 1px dashed rgba(200, 154, 99, 0.3);
}

.offers-empty {
    text-align: center;
    padding: 40px 20px;
    color: #7a6354;
}

.offers-empty i {
    font-size: 48px;
    color: rgba(200, 154, 99, 0.3);
    margin-bottom: 16px;
}

.offers-empty h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: #2d1b12;
    margin-bottom: 8px;
}

.offers-empty p {
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .available-offers-section {
        padding: 24px 20px;
    }
    
    .offers-header h2 {
        font-size: 22px;
    }
    
    .offers-list {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   ENHANCED SAVINGS DASHBOARD
   =================================== */

.savings-dashboard {
    margin-bottom: 20px;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.offer-card-enhanced {
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    border: 2px solid #C89B5E;
    border-left: 6px solid #C89B5E;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    box-shadow: 0 4px 12px rgba(200, 155, 94, 0.15);
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.offer-title-section {
    flex: 1;
}

.applied-chip {
    display: inline-block;
    background: #2E7D32;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { box-shadow: 0 0 5px rgba(46, 125, 50, 0.3); }
    50% { box-shadow: 0 0 15px rgba(46, 125, 50, 0.6), 0 0 25px rgba(46, 125, 50, 0.3); }
}

.offer-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.timer-pill {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 12px;
    color: #d32f2f;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.timer-icon {
    font-size: 14px;
}

.savings-highlight {
    text-align: center;
    margin: 20px 0;
}

.savings-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.savings-amount {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #2E7D32;
    line-height: 1;
}

.auto-apply-text {
    text-align: center;
    font-size: 13px;
    color: #666;
    font-style: italic;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #e0e0e0;
}

.auto-apply-text .sparkle {
    font-size: 16px;
}

/* ===================================
   EMOTIONAL PRICING LAYOUT
   =================================== */

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.summary-items {
    font-size: 13px;
    color: #666;
}

.summary-subtotal {
    font-size: 14px;
    color: #7f8c8d;
}

.summary-subtotal .summary-value {
    font-weight: 500;
}

.summary-savings {
    font-size: 16px;
}

.summary-savings .savings-text {
    color: #2E7D32;
    font-weight: 600;
}

.summary-savings .savings-value {
    color: #2E7D32;
    font-weight: 700;
    font-size: 18px;
}

.summary-divider {
    border-top: 2px solid #e0e0e0;
    margin: 15px 0;
}

.summary-you-pay {
    padding: 15px 0;
}

.you-pay-label {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
}

.you-pay-amount {
    font-size: 28px;
    font-weight: 800;
    color: #C89B5E;
}

.celebration-text {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    font-size: 14px;
    color: #2E7D32;
    font-weight: 600;
    margin-top: 10px;
    animation: celebrate 0.6s ease-out;
}

@keyframes celebrate {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.saved-amount-text {
    font-size: 16px;
    font-weight: 700;
}

/* ===================================
   REFERRAL CODE TOGGLE
   =================================== */

.referral-toggle {
    width: 100%;
    background: transparent;
    border: 1px dashed #C89B5E;
    border-radius: 8px;
    padding: 12px;
    color: #C89B5E;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 15px 0;
}

.referral-toggle:hover {
    background: rgba(200, 155, 94, 0.05);
    border-color: #b8864e;
}

.referral-input-wrapper {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.referral-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.btn-apply-referral {
    background: #C89B5E;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-apply-referral:hover {
    background: #b8864e;
}

/* ===================================
   PRICE-ANCHORED CTA
   =================================== */

.btn-book-appointment {
    width: 100%;
    background: linear-gradient(135deg, #C89B5E 0%, #d4a574 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(200, 155, 94, 0.3);
    margin-bottom: 15px;
}

.btn-book-appointment:hover {
    background: linear-gradient(135deg, #b8864e 0%, #c89b5e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(200, 155, 94, 0.4);
}

.btn-book-appointment .btn-text {
    font-size: 16px;
}

.btn-book-appointment .btn-price {
    font-size: 18px;
    font-weight: 800;
}

/* ===================================
   REASSURANCE BULLETS
   =================================== */

.reassurance-bullets {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.reassurance-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #495057;
    margin-bottom: 8px;
}

.reassurance-item:last-child {
    margin-bottom: 0;
}

.reassurance-item i {
    color: #2E7D32;
    font-size: 14px;
}

/* ===================================
   MOBILE RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    .savings-amount {
        font-size: 28px;
    }
    
    .you-pay-amount {
        font-size: 24px;
    }
    
    .offer-card-enhanced {
        padding: 15px;
    }
}


/* ===================================
   ENHANCED OFFER CARDS
   =================================== */

.offers-list {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.offer-card-enhanced {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.offer-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #C89B5E 0%, #d4a574 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.offer-card-enhanced:hover {
    border-color: #C89B5E;
    box-shadow: 0 8px 24px rgba(200, 155, 94, 0.2);
    transform: translateY(-4px);
}

.offer-card-enhanced:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.offer-urgency-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.offer-card-icon {
    font-size: 48px;
    margin-bottom: 16px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.offer-card-content {
    margin-bottom: 20px;
}

.offer-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.3;
}

.offer-discount-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.discount-big {
    font-size: 42px;
    font-weight: 800;
    color: #2E7D32;
    line-height: 1;
}

.discount-label {
    font-size: 18px;
    font-weight: 700;
    color: #2E7D32;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.offer-requirements {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: rgba(200, 155, 94, 0.08);
    border-radius: 8px;
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

.offer-requirements i {
    color: #C89B5E;
    font-size: 14px;
}

.offer-apply-btn {
    width: 100%;
    background: linear-gradient(135deg, #C89B5E 0%, #d4a574 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(200, 155, 94, 0.3);
}

.offer-apply-btn:hover {
    background: linear-gradient(135deg, #b8864e 0%, #c89b5e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(200, 155, 94, 0.4);
}

.offer-apply-btn i {
    font-size: 18px;
}

/* Loading and Empty States */
.offers-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.offers-empty i {
    font-size: 64px;
    margin-bottom: 20px;
    color: #ddd;
}

.offers-empty h3 {
    font-size: 20px;
    color: #666;
    margin-bottom: 8px;
}

.offers-empty p {
    font-size: 14px;
    color: #999;
}

/* Offers Section Header */
.offers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 20px;
}

.offers-header h2 {
    font-size: 24px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 12px;
}

.offers-header i {
    color: #C89B5E;
}

.btn-close-offers {
    background: transparent;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close-offers:hover {
    background: #f5f5f5;
    border-color: #ccc;
    transform: rotate(90deg);
}

.btn-close-offers i {
    color: #666;
    font-size: 18px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .offer-card-icon {
        font-size: 36px;
    }
    
    .discount-big {
        font-size: 32px;
    }
    
    .discount-label {
        font-size: 14px;
    }
    
    .offer-card-title {
        font-size: 18px;
    }
}

/* Animation for when offers appear */
.offer-card-enhanced {
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for multiple cards */
.offer-card-enhanced:nth-child(1) { animation-delay: 0s; }
.offer-card-enhanced:nth-child(2) { animation-delay: 0.1s; }
.offer-card-enhanced:nth-child(3) { animation-delay: 0.2s; }
.offer-card-enhanced:nth-child(4) { animation-delay: 0.3s; }

