/* BigTricks Deals Single Page Styles v3.1
 * Modern, fast, and professional design
 * Optimized for performance and user experience
 */

/* CSS Custom Properties for theming */
:root {
    --bt-primary: #2563eb;
    --bt-primary-hover: #1d4ed8;
    --bt-secondary: #64748b;
    --bt-accent: #f59e0b;
    --bt-success: #10b981;
    --bt-error: #ef4444;
    --bt-warning: #f59e0b;

    --bt-text-primary: #1e293b;
    --bt-text-secondary: #64748b;
    --bt-text-light: #94a3b8;
    --bt-bg-primary: #ffffff;
    --bt-bg-secondary: #f8fafc;
    --bt-bg-tertiary: #f1f5f9;
    --bt-border: #e2e8f0;
    --bt-border-hover: #cbd5e1;

    --bt-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --bt-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --bt-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --bt-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --bt-radius-sm: 0.375rem;
    --bt-radius: 0.5rem;
    --bt-radius-lg: 0.75rem;
    --bt-radius-xl: 1rem;

    --bt-container-max: 1250px;
    --bt-spacing-xs: 0.25rem;
    --bt-spacing-sm: 0.5rem;
    --bt-spacing: 0.25rem;
    --bt-spacing-lg: 1rem;
    --bt-spacing-xl: 1.5rem;
    --bt-spacing-2xl: 2rem;
}

/* Base Styles */
.bt-single-deal-container {
    background: var(--bt-bg-primary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--bt-text-primary);
}

/* Container */
.bt-container {
    max-width: var(--bt-container-max);
    margin: 0 auto;
    padding: 0 var(--bt-spacing-lg);
}

/* Hero Section */
.bt-hero-section {
    background: linear-gradient(135deg, var(--bt-bg-secondary) 0%, var(--bt-bg-primary) 100%);
    padding: var(--bt-spacing-2xl) 0;
    border-bottom: 1px solid var(--bt-border);
}

.bt-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--bt-spacing-2xl);
    align-items: start;
}

/* Product Gallery */
.bt-product-gallery {
    position: relative;
}

.bt-main-image {
    position: relative;
    border-radius: var(--bt-radius-lg);
    overflow: hidden;
    background: var(--bt-bg-primary);
}

.bt-main-image img {
    width: 100%;
    height: auto;
    max-height: 300px;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    display: block;
}

.bt-discount-badge {
    position: absolute;
    top: var(--bt-spacing);
    left: var(--bt-spacing);
    background: linear-gradient(135deg, var(--bt-error), #dc2626);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bt-product-tag {
    position: absolute;
    bottom: var(--bt-spacing);
    left: var(--bt-spacing);
    background: var(--bt-accent);
    color: white;
    padding: var(--bt-spacing-xs) var(--bt-spacing-sm);
    border-radius: var(--bt-radius);
    font-weight: 600;
    font-size: 0.75rem;
    box-shadow: var(--bt-shadow);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Status Flyer for Verify Label */
.bt-status-flyer {
    position: absolute;
    top: var(--bt-spacing);
    right: var(--bt-spacing);
    background: linear-gradient(135deg, var(--bt-success), #059669);
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.65rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bt-status-flyer.bt-expired {
    background: linear-gradient(135deg, var(--bt-error), #dc2626);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.bt-status-flyer .bt-status-content {
    display: flex;
    align-items: center;
    gap: var(--bt-spacing-xs);
}

.bt-status-flyer i {
    font-size: 0.875rem;
}

.bt-gallery-thumbs {
    display: flex;
    gap: var(--bt-spacing-sm);
    margin-top: var(--bt-spacing);
    flex-wrap: wrap;
}

.bt-gallery-thumbs img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--bt-radius);
    cursor: pointer;
    border: 2px solid transparent;
}

.bt-gallery-thumbs img:hover {
    border-color: var(--bt-primary);
}

/* Product Info */
.bt-product-info {
    display: flex;
    flex-direction: column;
    gap: var(--bt-spacing-lg);
}

.bt-store-info {
    display: flex;
    align-items: center;
    gap: var(--bt-spacing-sm);
    padding: var(--bt-spacing-sm);
    background: var(--bt-bg-primary);
    border-radius: var(--bt-radius);
    box-shadow: var(--bt-shadow-sm);
    width: fit-content;
}

.bt-store-logo {
    border-radius: var(--bt-radius-sm);
}

.bt-store-name {
    font-weight: 600;
    color: var(--bt-text-primary);
    font-size: 0.875rem;
}

.bt-product-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--bt-text-primary);
    margin: 0;
    word-break: break-word;
}

/* Top CTA Section */


.bt-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--bt-spacing-xl);
    margin-bottom: var(--bt-spacing-lg);
}

.bt-pricing-info {
    display: flex;
    flex-direction: column;
    gap: var(--bt-spacing-sm);
}

.bt-mrp {
    font-size: 0.875rem;
    color: var(--bt-text-secondary);
    font-weight: 500;
}

.bt-offer-row {
    display: flex;
    align-items: center;
    gap: var(--bt-spacing);
    flex-wrap: wrap;
}

.bt-offer-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bt-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bt-offer-price-container {
    display: flex;
    align-items: center;
    gap: var(--bt-spacing-xs);
}

.bt-offer-price {
    font-size: 1.5625rem;
    font-weight: 700;
    color: var(--bt-primary);
}

.bt-price-info-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--bt-text-secondary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: help;
    font-size: 12px;
    font-weight: bold;
    padding: 0;
    transition: all 0.2s ease;
    flex-shrink: 0;
    line-height: 1;
}

.bt-price-info-btn:hover {
    background: var(--bt-primary);
    transform: scale(1.1);
}

.bt-price-info-wrapper {
    position: relative;
    display: inline-block;
}

.bt-price-tooltip {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bt-bg-primary);
    border: 1px solid var(--bt-border);
    border-radius: var(--bt-radius);
    box-shadow: var(--bt-shadow-lg);
    padding: var(--bt-spacing);
    min-width: 280px;
    max-width: 350px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    margin-top: var(--bt-spacing-xs);
}

.bt-price-info-wrapper:hover .bt-price-tooltip {
    opacity: 1;
    visibility: visible;
}

.bt-tooltip-header {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bt-text-primary);
    margin-bottom: var(--bt-spacing-sm);
    padding-bottom: var(--bt-spacing-xs);
    border-bottom: 1px solid var(--bt-border);
}

.bt-tooltip-content {
    font-size: 0.75rem;
    color: var(--bt-text-secondary);
    line-height: 1.4;
}

.bt-tooltip-content p {
    margin: 0 0 var(--bt-spacing-xs) 0;
}

.bt-tooltip-content p:last-child {
    margin-bottom: 0;
}

/* Arrow pointer for tooltip */
.bt-price-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--bt-border);
}

.bt-price-tooltip::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid var(--bt-bg-primary);
}

.bt-discount-info {
    display: flex;
    align-items: center;
    gap: var(--bt-spacing-sm);
    flex-wrap: wrap;
}

.bt-discount-percent {
    background: var(--bt-success);
    color: white;
    padding: var(--bt-spacing-xs) var(--bt-spacing-sm);
    border-radius: var(--bt-radius);
    font-weight: 700;
    font-size: 0.875rem;
}

.bt-savings {
    font-size: 0.875rem;
    color: var(--bt-success);
    font-weight: 600;
}

.bt-savings-special {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: var(--bt-success);
    font-weight: 700;
    border-radius: 0.375rem;
    display: inline-block;
}

.bt-savings-default {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 0.375rem;
    display: inline-block;
    font-weight: 600;
}

@keyframes lightPulse {
    0%, 100% {
        box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.1), 0 2px 4px -1px rgba(16, 185, 129, 0.06);
    }
    50% {
        box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.2), 0 2px 4px -1px rgba(16, 185, 129, 0.12), 0 0 0 4px rgba(16, 185, 129, 0.1);
    }
}

.bt-cta-button {
    flex-shrink: 0;
}

.bt-buy-now-btn {
    background: var(--bt-primary);
    color: white;
    padding: var(--bt-spacing) var(--bt-spacing-xl);
    border-radius: var(--bt-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--bt-spacing-sm);
    box-shadow: var(--bt-shadow);
    border: 2px solid var(--bt-primary);
    min-width: 180px;
    min-height: 48px;
    white-space: nowrap;
}

.bt-buy-now-btn:hover {
    background: var(--bt-primary-hover);
    border-color: var(--bt-primary-hover);
}

/* Social CTA Section */
.bt-social-cta-section {
    border-top: 1px solid var(--bt-border);
    padding-top: var(--bt-spacing-lg);
}

.bt-social-buttons {
    display: flex;
    gap: var(--bt-spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.bt-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bt-bg-primary);
    border: 2px solid var(--bt-border);
    border-radius: 50%;
    color: var(--bt-text-secondary);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--bt-shadow-sm);
}

.bt-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--bt-shadow-lg);
    border-color: currentColor;
}

.bt-social-btn i {
    font-size: 1.25rem;
    line-height: 1;
}

/* Copy Link Button */
.bt-copy-btn {
    color: var(--bt-secondary);
}

.bt-copy-btn:hover {
    background: var(--bt-success);
    color: white;
    border-color: var(--bt-success);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* WhatsApp Button */
.bt-whatsapp-btn {
    color: #25D366;
}

.bt-whatsapp-btn:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Facebook Button */
.bt-facebook-btn {
    color: #1877F2;
}

.bt-facebook-btn:hover {
    background: #1877F2;
    color: white;
    border-color: #1877F2;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

/* Twitter Button */
.bt-twitter-btn {
    color: #1DA1F2;
}

.bt-twitter-btn:hover {
    background: #1DA1F2;
    color: white;
    border-color: #1DA1F2;
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.3);
}

/* Telegram Button */
.bt-telegram-btn {
    color: #0088cc;
}

.bt-telegram-btn:hover {
    background: #0088cc;
    color: white;
    border-color: #0088cc;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

/* Toast Notification */
.bt-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--bt-success);
    color: white;
    padding: var(--bt-spacing) var(--bt-spacing-lg);
    border-radius: var(--bt-radius);
    box-shadow: var(--bt-shadow-lg);
    z-index: 1001;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Legacy Pricing Section (for backward compatibility) */
.bt-pricing-section {
    background: var(--bt-bg-primary);
    padding: var(--bt-spacing-lg);
    border-radius: var(--bt-radius-lg);
    box-shadow: var(--bt-shadow);
}

.bt-price-row {
    display: flex;
    align-items: baseline;
    gap: var(--bt-spacing);
    margin-bottom: var(--bt-spacing-lg);
    flex-wrap: wrap;
}

.bt-sale-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--bt-primary);
}

.bt-old-price {
    font-size: 1.25rem;
    color: var(--bt-text-light);
    text-decoration: line-through;
}

.bt-discount-percent {
    background: var(--bt-success);
    color: white;
    padding: var(--bt-spacing-xs) var(--bt-spacing-sm);
    border-radius: var(--bt-radius);
    font-weight: 700;
    font-size: 0.875rem;
}

/* Countdown Timer */
.bt-countdown-timer {
    background: linear-gradient(135deg, var(--bt-warning) 0%, var(--bt-accent) 100%);
    padding: var(--bt-spacing-lg);
    border-radius: var(--bt-radius-lg);
    color: white;
    text-align: center;
}

.bt-countdown-label {
    font-size: 0.875rem;
    margin-bottom: var(--bt-spacing);
    opacity: 0.9;
}

.bt-countdown-display {
    display: flex;
    justify-content: center;
    gap: var(--bt-spacing);
}

.bt-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.bt-countdown-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.bt-countdown-item .bt-countdown-label {
    font-size: 0.75rem;
    margin: 0;
    margin-top: var(--bt-spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Action Buttons */
.bt-action-buttons {
    display: flex;
    gap: var(--bt-spacing);
    flex-wrap: wrap;
    align-items: center;
}

/* Mobile Pricing Section */
.bt-mobile-pricing-section {
    display: none;
    margin-top: var(--bt-spacing-lg);
    text-align: center;
}

/* Mobile Buy Section */
.bt-mobile-buy-section {
    display: none;
    margin-top: var(--bt-spacing-lg);
}

.bt-primary-btn {
    background: var(--bt-primary);
    color: white;
    padding: var(--bt-spacing-sm) var(--bt-spacing-lg);
    border-radius: var(--bt-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--bt-spacing-sm);
    box-shadow: var(--bt-shadow);
    border: 2px solid var(--bt-primary);
    min-height: 40px;
}

.bt-primary-btn:hover {
    background: var(--bt-primary-hover);
}

.bt-share-trigger {
    background: var(--bt-bg-primary);
    color: var(--bt-text-secondary);
    padding: var(--bt-spacing) var(--bt-spacing-lg);
    border-radius: var(--bt-radius);
    border: 2px solid var(--bt-border);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--bt-spacing-sm);
    cursor: pointer;
    min-height: 48px;
    text-decoration: none;
}

.bt-share-trigger:hover {
    border-color: var(--bt-primary);
    color: var(--bt-primary);
}

/* Generic Button Styles */
.is-btn {
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--bt-spacing-sm);
    min-height: 48px;
    padding: var(--bt-spacing) var(--bt-spacing-xl);
    border-radius: var(--bt-radius);
    cursor: pointer;
}

.bt-primary-btn {
    background: var(--bt-primary);
    color: white;
    border: 2px solid var(--bt-primary);
    box-shadow: var(--bt-shadow);
}

.bt-primary-btn:hover {
    background: var(--bt-primary-hover);
}

.bt-share-trigger {
    background: var(--bt-bg-primary);
    color: var(--bt-text-secondary);
    border: 2px solid var(--bt-border);
}

.bt-share-trigger:hover {
    border-color: var(--bt-primary);
    color: var(--bt-primary);
}

/* Coupon Section */
.bt-coupon-section {
    background: var(--bt-bg-tertiary);
    padding: var(--bt-spacing-lg);
    border-radius: var(--bt-radius-lg);
    border: 2px dashed var(--bt-border);
}

.bt-coupon-label {
    font-weight: 600;
    color: var(--bt-text-primary);
    margin-bottom: var(--bt-spacing);
}

.bt-coupon-code-container {
    display: flex;
    align-items: center;
    gap: var(--bt-spacing);
}

.bt-coupon-reveal {
    background: var(--bt-primary);
    color: white;
    padding: var(--bt-spacing-sm) var(--bt-spacing-lg);
    border-radius: var(--bt-radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.bt-coupon-reveal:hover {
    background: var(--bt-primary-hover);
}

.bt-coupon-code {
    background: var(--bt-bg-primary);
    padding: var(--bt-spacing-sm) var(--bt-spacing-lg);
    border-radius: var(--bt-radius);
    border: 2px solid var(--bt-success);
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: var(--bt-success);
    font-size: 1.125rem;
    letter-spacing: 0.1em;
}

/* Content Section */
.bt-content-section {
    padding: var(--bt-spacing-2xl) 0;
    background: var(--bt-bg-secondary);
}

.bt-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: var(--bt-spacing-2xl);
}

/* Main Content */
.bt-main-content {
    background: var(--bt-bg-primary);
    padding: var(--bt-spacing-2xl);
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    word-wrap: break-word;
}

.bt-full-description h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--bt-text-primary);
    margin-bottom: var(--bt-spacing-lg);
    padding-bottom: var(--bt-spacing);
    border-bottom: 2px solid var(--bt-border);
}

.bt-full-description p {
    margin-bottom: var(--bt-spacing);
    line-height: 1.7;
    color: var(--bt-text-secondary);
}

.bt-product-tags h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bt-text-primary);
    margin-bottom: var(--bt-spacing);
}

.bt-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--bt-spacing-sm);
}

.bt-tag {
    background: var(--bt-bg-tertiary);
    color: var(--bt-text-secondary);
    padding: var(--bt-spacing-xs) var(--bt-spacing-sm);
    border-radius: var(--bt-radius);
    text-decoration: none;
    font-size: 0.875rem;
}

.bt-tag:hover {
    background: var(--bt-primary);
    color: white;
}

/* Sidebar */
.bt-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--bt-spacing-lg);
}

/* Generic Card/Widget Style */
.bt-card {
    background: var(--bt-bg-primary);
    padding: var(--bt-spacing-lg);
    border-radius: var(--bt-radius-lg);
    box-shadow: var(--bt-shadow);
}

.bt-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bt-text-primary);
    margin-bottom: var(--bt-spacing-lg);
    padding-bottom: var(--bt-spacing);
    border-bottom: 2px solid var(--bt-border);
}

.bt-store-details {
    display: flex;
    align-items: center;
    gap: var(--bt-spacing);
}

.bt-store-logo-large {
    border-radius: var(--bt-radius);
}

.bt-store-meta h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--bt-text-primary);
    margin-bottom: var(--bt-spacing-xs);
}

.bt-store-meta p {
    color: var(--bt-text-secondary);
    font-size: 0.875rem;
}

.bt-stats-list {
    display: flex;
    flex-direction: column;
    gap: var(--bt-spacing);
}

.bt-stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--bt-spacing-sm) 0;
    border-bottom: 1px solid var(--bt-border);
}

.bt-stat-item:last-child {
    border-bottom: none;
}

.bt-stat-label {
    color: var(--bt-text-secondary);
    font-size: 0.875rem;
}

.bt-stat-value {
    font-weight: 600;
    color: var(--bt-text-primary);
}

/* Similar Deals Section */
.bt-similar-deals-section {
    padding: var(--bt-spacing-2xl) 0;
    background: var(--bt-bg-primary);
    border-top: 1px solid var(--bt-border);
}

.bt-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--bt-spacing-xl);
}

.bt-section-header .bt-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bt-text-primary);
    margin: 0;
}

.bt-view-all-link {
    font-weight: 600;
    color: var(--bt-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--bt-spacing-xs);
}

.bt-view-all-link:hover {
    color: var(--bt-primary-hover);
}

.bt-deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--bt-spacing-lg);
    align-items: stretch;
}

.deal-item {
    background: var(--bt-bg-primary);
    border-radius: var(--bt-radius-lg);
    box-shadow: var(--bt-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.deal-item:hover {
    box-shadow: var(--bt-shadow-lg);
}

.deal-item-image {
    width: 100%;
    height: 140px;
    object-fit: contain;
    display: block;
    background: var(--bt-bg-primary);
}

.deal-item-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bt-text-primary);
    margin: var(--bt-spacing-sm) var(--bt-spacing-sm) 0;
    line-height: 1.3;
}

.deal-item-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bt-primary);
    margin: 0 var(--bt-spacing-sm) var(--bt-spacing-xs);
}

.deal-item-store {
    font-size: 0.75rem;
    color: var(--bt-text-secondary);
    margin: 0 var(--bt-spacing-sm) var(--bt-spacing-sm);
}

.deal-item-title {
    flex-grow: 1;
}

.deal-item-btn {
    display: block;
    width: calc(100% - 2 * var(--bt-spacing));
    margin: var(--bt-spacing-lg) var(--bt-spacing) var(--bt-spacing);
    background: var(--bt-primary);
    color: white;
    padding: var(--bt-spacing-sm) var(--bt-spacing);
    text-align: center;
    text-decoration: none;
    border-radius: var(--bt-radius);
    font-weight: 600;
}

.deal-item-btn:hover {
    background: var(--bt-primary-hover);
}

.deal-short-description {
    background: var(--bt-bg-secondary);
    padding: var(--bt-spacing);
    margin: var(--bt-spacing-lg) 0;
    border-radius: var(--bt-radius);
    font-size: 0.875rem;
    color: var(--bt-text-secondary);
    border: 1px solid var(--bt-border);
}

/* Share Modal */
.bt-share-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.bt-share-modal {
    background: var(--bt-bg-primary);
    border-radius: var(--bt-radius-lg);
    box-shadow: var(--bt-shadow-xl);
    max-width: 400px;
    width: 90%;
}

.bt-share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--bt-spacing-lg);
    border-bottom: 1px solid var(--bt-border);
}

.bt-share-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.bt-share-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--bt-text-secondary);
}

.bt-share-modal-content {
    padding: var(--bt-spacing-lg);
}

.bt-share-buttons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--bt-spacing);
}

.bt-share-btn-modal {
    display: flex;
    align-items: center;
    gap: var(--bt-spacing-sm);
    padding: var(--bt-spacing);
    background: var(--bt-bg-secondary);
    border: 1px solid var(--bt-border);
    border-radius: var(--bt-radius);
    text-decoration: none;
    color: var(--bt-text-primary);
    font-weight: 600;
}

.bt-share-btn-modal:hover {
    background: var(--bt-primary);
    color: white;
}

/* Other styles remain the same */

@media (max-width: 1024px) {
    .bt-hero-grid, .bt-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bt-product-title {
        font-size: 1rem;
    }

    .bt-sale-price {
        font-size: 1.75rem;
    }

    .bt-action-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .bt-cta-content {
        flex-direction: column;
        align-items: stretch;
        gap: var(--bt-spacing-lg);
    }

    .bt-pricing-info {
        text-align: center;
    }

    .bt-offer-price {
        font-size: 1.125rem;
    }

    .bt-cta-button {
        text-align: center;
    }

    .bt-buy-now-btn {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }

    .bt-social-buttons {
        justify-content: space-between;
        gap: 1px;
        width: 100%;
        margin: 0 auto;
    }

    .bt-social-btn {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    .bt-social-btn i {
        font-size: 0.875rem;
    }

    .bt-social-btn svg {
        width: 14px;
        height: 14px;
    }

    /* Mobile tooltip adjustments */
    .bt-price-tooltip {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 280px;
        max-width: calc(100vw - 2rem);
        margin: 0;
        z-index: 1001;
    }

    .bt-price-info-wrapper:hover .bt-price-tooltip {
        opacity: 1;
        visibility: visible;
    }
}

/* Comments Section */
.bt-comments-section {
    padding: var(--bt-spacing-2xl) 0;
    background: var(--bt-bg-secondary);
    border-top: 1px solid var(--bt-border);
}

/* Sticky Footer for Mobile */
.bt-sticky-footer-mobile {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bt-bg-primary);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    padding: var(--bt-spacing-sm);
    align-items: center;
    gap: var(--bt-spacing-sm);
}

.bt-sticky-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bt-text-secondary);
    text-decoration: none;
    font-size: 0.75rem;
    gap: 4px;
    padding: var(--bt-spacing-xs);
    border-radius: var(--bt-radius-sm);
}

.bt-sticky-icon:hover {
    background: var(--bt-bg-tertiary);
    color: var(--bt-primary);
}

.bt-sticky-icon i {
    font-size: 24px;
    line-height: 1;
}

.bt-sticky-get-deal {
    flex-grow: 1;
    text-align: center;
    padding: var(--bt-spacing);
    font-size: 1rem;
    min-height: 44px;
    background: var(--bt-primary);
    color: white;
    border-radius: var(--bt-radius);
    font-weight: 600;
}

.bt-sticky-get-deal:hover {
    background: var(--bt-primary-hover);
}

@media (max-width: 768px) {
    .bt-sticky-footer-mobile {
        display: flex;
    }

    /* Add padding to the bottom of the body to prevent content from being hidden by the sticky footer */
    body {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .bt-container {
        padding: 0 var(--bt-spacing);
    }
}
