/* ==========================================
   PRODUCT PAGE STYLES - PREMIUM DARK VIBE
   ========================================== */

/* ===== MAIN WRAPPER ===== */
.ff-product-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 30px;
    background: #0b1226; /* হোমপেজের সলিড ব্যাকগ্রাউন্ড */
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

/* ==========================================
   PRODUCT HEADER
   ========================================== */
.ff-product-header-simple {
    display: flex;
    gap: 30px;
    padding: 20px 25px;
    background: rgba(22, 31, 53, 0.8); /* হোমপেজের কার্ড + স্বচ্ছতা */
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 25px;
    align-items: center;
    flex-direction: row;
    backdrop-filter: blur(4px);
}

.ff-product-image-simple {
    flex: 0 0 120px;
    max-width: 120px;
    border-radius: 12px;
    overflow: hidden;
    background: #0b1226;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ff-product-image-simple img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.ff-product-info-simple {
    flex: 1;
    min-width: 0;
}

.ff-product-title-simple {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
    line-height: 1.2;
}

.ff-product-badge-simple {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 3px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.ff-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ff-feature-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #a0b1d3;
    white-space: nowrap;
}

.ff-feature-icon {
    font-size: 14px;
}

.ff-feature-text {
    font-weight: 500;
}

/* ==========================================
   TWO COLUMN CARD LAYOUT
   ========================================== */
.ff-two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 10px;
}

.ff-card-column {
    display: flex;
    flex-direction: column;
}

.ff-card {
    background: rgba(22, 31, 53, 0.9); /* হোমপেজের কার্ড + স্বচ্ছতা */
    border-radius: 16px;
    padding: 20px 22px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.ff-card:hover {
    border-color: rgba(231, 76, 60, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.ff-card .ff-section {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ff-card .ff-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ff-card .ff-section:first-child {
    padding-top: 0;
}

/* ==========================================
   SECTION TITLES
   ========================================== */
.ff-section {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ff-section:last-child {
    border-bottom: none;
}

.ff-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.ff-section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #e74c3c;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.ff-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

/* ==========================================
   VARIATIONS
   ========================================== */
.ff-variations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ff-var-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    background: rgba(11, 18, 38, 0.6); /* হোমপেজের বেস + স্বচ্ছ */
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.ff-var-item:hover {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
    transform: scale(1.01);
}

.ff-var-item.active {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.08);
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.12);
}

.ff-var-item.ff-special {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.ff-var-name {
    font-weight: 500;
    color: #ffffff;
}

.ff-var-price {
    font-weight: 600;
    color: #e74c3c;
}

/* ==========================================
   ACCOUNT INFO
   ========================================== */
.ff-input-group {
    margin: 10px 0;
}

.ff-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    font-size: 15px;
    background: rgba(11, 18, 38, 0.6);
    color: #ffffff;
    transition: all 0.3s ease;
}

.ff-input:focus {
    border-color: #e74c3c;
    outline: none;
    background: rgba(22, 31, 53, 0.8);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.08);
}

.ff-input::placeholder {
    color: #7a8aaa;
}

/* ==========================================
   PAYMENT METHODS
   ========================================== */
.ff-payment-methods {
    display: flex;
    gap: 15px;
    margin-bottom: 16px;
}

.ff-pay-method {
    flex: 1;
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 18px 12px;
    text-align: center;
    cursor: pointer;
    background: rgba(11, 18, 38, 0.6);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ff-pay-method:hover {
    border-color: #e74c3c;
    transform: translateY(-4px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.1);
}

.ff-pay-method.active {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.ff-pay-method.active[data-method="instant"] {
    border-color: #4db6ac;
    background: rgba(77, 182, 172, 0.05);
}

.ff-method-icon-wrap {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 10px;
    overflow: hidden;
}

.ff-pay-method.active .ff-method-icon-wrap {
    background: rgba(231, 76, 60, 0.08);
}

.ff-method-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
    filter: grayscale(0.6);
    opacity: 0.6;
}

.ff-pay-method.active .ff-method-icon {
    filter: grayscale(0);
    opacity: 1;
}

.ff-method-dot {
    font-size: 12px;
    color: #7a8aaa;
    transition: all 0.3s ease;
}

.ff-pay-method.active .ff-method-dot {
    color: #e74c3c;
}

.ff-pay-method.active[data-method="instant"] .ff-method-dot {
    color: #4db6ac;
}

.ff-method-name {
    font-size: 14px;
    font-weight: 600;
    color: #7a8aaa;
    transition: all 0.3s ease;
}

.ff-pay-method.active .ff-method-name {
    color: #e74c3c;
}

.ff-pay-method.active[data-method="instant"] .ff-method-name {
    color: #4db6ac;
}

/* ==========================================
   WALLET INFO
   ========================================== */
.ff-wallet-info {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 14px 18px;
    margin: 12px 0 16px 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ff-wallet-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.ff-wallet-row:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 8px;
    margin-bottom: 4px;
}

.ff-wallet-label {
    font-size: 14px;
    color: #7a8aaa;
    font-weight: 500;
}

.ff-wallet-amount {
    font-size: 16px;
    font-weight: 600;
    color: #4db6ac;
}

/* ==========================================
   SELECTED PACKAGE
   ========================================== */
.ff-selected-info {
    background: rgba(231, 76, 60, 0.04);
    padding: 12px 18px;
    border-radius: 10px;
    margin: 12px 0;
    border: 1px solid rgba(231, 76, 60, 0.06);
    display: flex;
    flex-wrap: wrap;
    gap: 5px 20px;
    font-size: 15px;
    color: #ffffff;
}

.ff-selected-info .ff-selected-label {
    color: #7a8aaa;
}

.ff-selected-info .ff-selected-value {
    color: #e74c3c;
    font-weight: 600;
}

/* ==========================================
   BUY BUTTON
   ========================================== */
.ff-buy-btn {
    width: 100%;
    padding: 16px;
    background: #e74c3c !important;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.ff-buy-btn:hover:not(:disabled) {
    background: #c0392b !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.4);
}

.ff-buy-btn:disabled {
    background: #333 !important;
    cursor: not-allowed;
    opacity: 0.5;
}

.ff-buy-btn.instant-mode {
    background: #4db6ac !important;
}

.ff-buy-btn.instant-mode:hover:not(:disabled) {
    background: #3a928a !important;
    box-shadow: 0 8px 30px rgba(77, 182, 172, 0.4);
}

/* ==========================================
   PAYMENT INDICATOR
   ========================================== */
#paymentMethodIndicator {
    text-align: center;
    margin-top: 12px;
    padding: 8px;
    font-size: 13px;
    color: #7a8aaa;
}

#currentMethod {
    font-weight: 700;
}

#currentMethod.wallet-mode {
    color: #e74c3c;
}

#currentMethod.instant-mode {
    color: #4db6ac;
}

/* ==========================================
   NOTES & RULES
   ========================================== */
.ff-notes {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 14px;
}

.ff-note-icon {
    font-size: 18px;
}

.ff-note-text {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.ff-rules {
    padding: 8px 0 2px 0;
}

.ff-rules h4 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #e74c3c;
    display: inline-block;
}

.ff-rules-content {
    padding: 5px 0;
}

.ff-rules-content p {
    font-size: 14px;
    color: #a0b1d3;
    line-height: 1.7;
    margin: 0 0 10px 0;
}

.ff-rules-content ul {
    margin: 8px 0 12px 0;
    padding: 0 0 0 20px;
}

.ff-rules-content li {
    font-size: 13px;
    color: #a0b1d3;
    line-height: 1.6;
    padding: 4px 0;
}

/* ==========================================
   FULLWIDTH DESCRIPTION
   ========================================== */
.ff-rules-fullwidth {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ff-rules-fullwidth h4 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #e74c3c;
    display: inline-block;
}

.ff-rules-fullwidth .ff-rules-content {
    padding: 5px 0;
}

.ff-rules-fullwidth .ff-rules-content p {
    font-size: 14px;
    color: #a0b1d3;
    line-height: 1.7;
    margin: 0 0 10px 0;
}

.ff-rules-fullwidth .ff-rules-content ul {
    margin: 8px 0 12px 0;
    padding: 0 0 0 20px;
}

.ff-rules-fullwidth .ff-rules-content li {
    font-size: 13px;
    color: #a0b1d3;
    line-height: 1.6;
    padding: 4px 0;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

/* Tablet */
@media (max-width: 992px) {
    .ff-two-column-layout {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .ff-card .ff-variations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .ff-product-wrapper {
        padding: 20px 18px;
        margin: 0 10px;
    }
    
    .ff-product-header-simple {
        flex-direction: row !important;
        gap: 20px;
        padding: 18px 20px;
    }
    
    .ff-product-image-simple {
        flex: 0 0 100px;
        max-width: 100px;
    }
    
    .ff-product-title-simple {
        font-size: 18px;
    }
    
    .ff-features-list {
        gap: 6px 12px;
    }
    
    .ff-feature-item {
        font-size: 12px;
    }
    
    .ff-two-column-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ff-card {
        padding: 16px 18px;
    }
    
    .ff-card .ff-variations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .ff-product-wrapper {
        padding: 14px 12px;
        margin: 0 6px;
        border-radius: 12px;
    }
    
    .ff-product-header-simple {
        flex-direction: row !important;
        gap: 14px;
        padding: 14px 16px;
    }
    
    .ff-product-image-simple {
        flex: 0 0 80px;
        max-width: 80px;
        padding: 3px;
    }
    
    .ff-product-title-simple {
        font-size: 16px;
        margin: 0 0 4px 0;
    }
    
    .ff-product-badge-simple {
        font-size: 10px;
        padding: 2px 12px;
    }
    
    .ff-features-list {
        gap: 4px 10px;
        margin-top: 6px;
        padding-top: 6px;
    }
    
    .ff-feature-item {
        font-size: 11px;
        gap: 3px;
    }
    
    .ff-feature-icon {
        font-size: 11px;
    }
    
    .ff-section {
        padding: 12px 0;
    }
    
    .ff-section-number {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .ff-section-title {
        font-size: 15px;
    }
    
    .ff-card {
        padding: 14px 14px;
        border-radius: 12px;
    }
    
    .ff-card .ff-variations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .ff-card .ff-var-item {
        padding: 8px 10px;
        font-size: 12px;
        flex-direction: column;
        text-align: center;
        gap: 2px;
    }
    
    .ff-card .ff-var-name {
        font-size: 11px;
    }
    
    .ff-card .ff-var-price {
        font-size: 12px;
    }
    
    .ff-payment-methods {
        flex-direction: row;
        gap: 8px;
    }
    
    .ff-pay-method {
        padding: 10px 8px;
        font-size: 13px;
    }
    
    .ff-method-icon-wrap {
        width: 38px;
        height: 38px;
        padding: 6px;
    }
    
    .ff-method-name {
        font-size: 12px;
    }
    
    .ff-wallet-info {
        padding: 10px 12px;
    }
    
    .ff-wallet-label {
        font-size: 13px;
    }
    
    .ff-wallet-amount {
        font-size: 14px;
    }
    
    .ff-selected-info {
        font-size: 13px;
        padding: 8px 12px;
        gap: 3px 12px;
    }
    
    .ff-buy-btn {
        font-size: 15px;
        padding: 14px;
    }
    
    .ff-notes {
        padding: 8px 0 6px 0;
    }
    
    .ff-note-text {
        font-size: 14px;
    }
    
    .ff-rules h4 {
        font-size: 14px;
    }
    
    .ff-rules-content p {
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    .ff-product-wrapper {
        padding: 10px 8px;
        margin: 0 4px;
    }
    
    .ff-product-header-simple {
        flex-direction: row !important;
        gap: 10px;
        padding: 10px 12px;
    }
    
    .ff-product-image-simple {
        flex: 0 0 65px;
        max-width: 65px;
    }
    
    .ff-product-title-simple {
        font-size: 14px;
    }
    
    .ff-feature-item {
        font-size: 10px;
    }
    
    .ff-card {
        padding: 10px 10px;
    }
    
    .ff-card .ff-variations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
    
    .ff-card .ff-var-item {
        padding: 6px 8px;
        font-size: 11px;
    }
    
    .ff-pay-method {
        font-size: 12px;
        padding: 8px 6px;
    }
    
    .ff-method-icon-wrap {
        width: 32px;
        height: 32px;
        padding: 4px;
    }
    
    .ff-method-name {
        font-size: 11px;
    }
    
    .ff-buy-btn {
        font-size: 14px;
        padding: 12px;
    }
}












/* ==========================================
   PREMIUM TOAST NOTIFICATIONS
   ========================================== */

.ff-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(22, 31, 53, 0.95);
    color: #ffffff;
    padding: 16px 28px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 0, 0, 0.3);
    z-index: 99999;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    max-width: 500px;
    text-align: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    animation: ffToastIn 0.4s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    cursor: pointer;
}

/* Toast Types */
.ff-toast.ff-toast-success {
    border-left: 4px solid #4db6ac;
    background: rgba(77, 182, 172, 0.1);
}

.ff-toast.ff-toast-error {
    border-left: 4px solid #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.ff-toast.ff-toast-warning {
    border-left: 4px solid #ffc107;
    background: rgba(255, 193, 7, 0.1);
}

.ff-toast.ff-toast-info {
    border-left: 4px solid #6F4FF2;
    background: rgba(111, 79, 242, 0.1);
}

/* Toast Animations */
@keyframes ffToastIn {
    0% { 
        opacity: 0; 
        transform: translateX(-50%) translateY(30px) scale(0.95); 
    }
    100% { 
        opacity: 1; 
        transform: translateX(-50%) translateY(0) scale(1); 
    }
}

@keyframes ffToastOut {
    0% { 
        opacity: 1; 
        transform: translateX(-50%) translateY(0) scale(1); 
    }
    100% { 
        opacity: 0; 
        transform: translateX(-50%) translateY(20px) scale(0.95); 
    }
}

/* Toast Icon */
.ff-toast-icon {
    font-size: 20px;
}

/* ==========================================
   RESPONSIVE TOAST
   ========================================== */

@media (max-width: 480px) {
    .ff-toast {
        padding: 14px 18px;
        font-size: 14px;
        min-width: 200px;
        max-width: 90%;
        bottom: 20px;
        border-radius: 12px;
    }
    
    .ff-toast-icon {
        font-size: 18px;
    }
}

@media (max-width: 360px) {
    .ff-toast {
        padding: 12px 14px;
        font-size: 13px;
        min-width: 160px;
        bottom: 16px;
        border-radius: 10px;
    }
}



/* ==========================================
   BUY NOW BUTTON - Single Order
   ========================================== */

.ff-buy-now-section {
    margin-top: 30px;
    padding: 30px 20px;
    background: rgba(11, 18, 38, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ff-buy-now-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.ff-buy-now-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 4px 25px rgba(231, 76, 60, 0.3);
}

.ff-buy-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(231, 76, 60, 0.4);
}

.ff-buy-now-btn:active {
    transform: translateY(0);
}

.ff-btn-icon {
    font-size: 22px;
}

.ff-btn-price {
    font-size: 18px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 14px;
    border-radius: 20px;
}

/* ===== Trust Badge ===== */
.ff-buy-trust {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.ff-buy-trust span {
    font-size: 13px;
    color: #7a8aaa;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    .ff-buy-now-section {
        padding: 20px 16px;
    }
    
    .ff-buy-now-btn {
        font-size: 17px;
        padding: 14px 20px;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .ff-btn-price {
        font-size: 15px;
    }
    
    .ff-buy-trust {
        gap: 15px;
    }
    
    .ff-buy-trust span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .ff-buy-now-btn {
        font-size: 15px;
        padding: 12px 16px;
        gap: 8px;
    }
    
    .ff-btn-icon {
        font-size: 18px;
    }
    
    .ff-btn-price {
        font-size: 13px;
        padding: 1px 10px;
    }
    
    .ff-buy-trust {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
}