/* Fırsatlar.co - Custom Styles */

/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --white-color: #ffffff;
    
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-warning: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-whatsapp: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    
    --border-radius: 0.375rem;
    --border-radius-lg: 0.5rem;
    --border-radius-xl: 1rem;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f8f9fa;
}

/* ===== PRICE BADGE STYLES ===== */
.price-section {
    position: relative;
    margin-bottom: 1rem;
}

.price-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.price-badge {
    background: transparent !important;
    border: none;
    color: #28a745 !important;
    padding: 0.5rem 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 700;
    letter-spacing: 0.025em;
    font-size: 1.1rem;
}

.price-badge::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #28a745, #20c997);
    transition: width 0.3s ease;
}

.price-badge:hover::before {
    width: 100%;
}

.price-badge .bi-tag-fill {
    color: #28a745;
    margin-right: 0.4rem;
    font-size: 1rem;
    opacity: 0.8;
}

.price-badge .fw-bold {
    font-size: 1rem;
    color: #28a745 !important;
}

/* Fiyat sorulacak durumu için özel stil */
.price-badge.unknown-price {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%) !important;
    border: 2px solid #ffeaa7;
    color: #856404 !important;
}

.price-badge.unknown-price .bi-question-circle-fill {
    color: #f39c12;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.price-badge.unknown-price .fw-bold {
    color: #856404;
}

/* Minimal hover efekti */
.price-badge:hover {
    transform: translateY(-1px);
    color: #20c997 !important;
}

.price-badge:hover .bi-tag-fill {
    color: #20c997;
    opacity: 1;
}

/* Responsive price badge */
@media (max-width: 768px) {
    .price-badge {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .price-badge .fw-bold {
        font-size: 0.9rem;
    }
}

/* ===== TIME BADGE STYLES ===== */
.time-badge {
    background: #f8f9fa !important;
    color: #6c757d !important;
    border: 1px solid #dee2e6 !important;
    font-size: 0.65rem !important;
    padding: 0.15rem 0.4rem !important;
    border-radius: 0.3rem !important;
    font-weight: 500;
    transition: all 0.2s ease;
}

.time-badge .bi-clock {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* ===== WHATSAPP FOLLOW SECTION ===== */
.whatsapp-follow-section {
    background: var(--gradient-whatsapp) !important;
    border-radius: var(--border-radius-xl) !important;
    position: relative;
    overflow: hidden;
}

.whatsapp-follow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.letter-spacing-wider {
    letter-spacing: 0.1em;
}

.shadow-text {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.25) !important;
}

.whatsapp-follow-section .btn-light {
    background: rgba(255,255,255,0.95);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.whatsapp-follow-section .btn-light:hover {
    background: rgba(255,255,255,1);
    border-color: rgba(255,255,255,0.5);
    color: #25d366;
}

/* Responsive WhatsApp section */
@media (max-width: 768px) {
    .whatsapp-follow-section {
        padding: 2rem 1.5rem !important;
    }
    
    .whatsapp-follow-section .display-5 {
        font-size: 1.75rem;
    }
    
    .whatsapp-follow-section .display-3 {
        font-size: 2.5rem;
    }
    
    .whatsapp-follow-section .lead {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .whatsapp-follow-section {
        padding: 1.5rem 1rem !important;
    }
    
    .whatsapp-follow-section .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== TELEGRAM FOLLOW SECTION ===== */
.telegram-follow-section {
    background: linear-gradient(135deg, #0088cc 0%, #005f8a 100%) !important;
    border-radius: var(--border-radius-xl) !important;
    position: relative;
    overflow: hidden;
}

.telegram-follow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.letter-spacing-wider {
    letter-spacing: 0.1em;
}

.shadow-text {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.25) !important;
}

.telegram-follow-section .btn-light {
    background: rgba(255,255,255,0.95);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.telegram-follow-section .btn-light:hover {
    background: rgba(255,255,255,1);
    border-color: rgba(255,255,255,0.5);
    color: #0088cc;
}

/* Responsive Telegram section */
@media (max-width: 768px) {
    .telegram-follow-section {
        padding: 2rem 1.5rem !important;
    }
    
    .telegram-follow-section .display-5 {
        font-size: 1.75rem;
    }
    
    .telegram-follow-section .display-3 {
        font-size: 2.5rem;
    }
    
    .telegram-follow-section .lead {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .telegram-follow-section {
        padding: 1.5rem 1rem !important;
    }
    
    .telegram-follow-section .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== AMAZON FOLLOW SECTION ===== */
.amazon-follow-section {
    background: linear-gradient(135deg, #0088cc 0%, #005f8a 100%) !important;
    border-radius: var(--border-radius-xl) !important;
    position: relative;
    overflow: hidden;
}

.letter-spacing-wider {
    letter-spacing: 0.1em;
}

.shadow-text {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.25) !important;
}

.amazon-follow-section .btn-warning {
    background: rgba(255,255,255,0.95);
    border: 2px solid rgba(255,255,255,0.3);
    color: #0088cc !important;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.amazon-follow-section .btn-warning:hover {
    background: rgba(255,255,255,1);
    border-color: rgba(255,255,255,0.5);
    color: #005f8a !important;
    transform: translateY(-2px);
}

.amazon-follow-section .btn-warning i {
    color: #0088cc !important;
}

.amazon-follow-section .btn-warning:hover i {
    color: #005f8a !important;
}

/* Telegram buton hover ışıltı efekti */
.amazon-follow-section .btn-warning {
    transition: all 0.3s ease;
}

.amazon-follow-section .btn-warning:hover {
    text-shadow: 0 0 6px rgba(0, 136, 204, 0.5);
    box-shadow: 0 0 12px rgba(0, 136, 204, 0.25);
}

/* Responsive Amazon section */
@media (max-width: 768px) {
    .amazon-follow-section {
        padding: 2rem 1.5rem !important;
    }
    
    .amazon-follow-section .display-5 {
        font-size: 1.75rem;
    }
    
    .amazon-follow-section .display-3 {
        font-size: 2.5rem;
    }
    
    .amazon-follow-section .lead {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .amazon-follow-section {
        padding: 1.5rem 1rem !important;
    }
    
    .amazon-follow-section .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== NAVBAR ===== */
.navbar-brand {
    font-weight: 700;
    font-size: 1.75rem;
}

.navbar-brand-custom {
    position: relative;
    display: inline-block;
    text-decoration: none !important;
    color: inherit;
    font-weight: 700;
    font-size: 1.75rem;
}

.navbar-brand-custom .brand-text {
    position: relative;
    z-index: 1;
    color: white;
    text-decoration: none;
}

.navbar-brand-custom .brand-logo-overlay {
    position: absolute;
    top: 5px;
    right: -12px;
    height: 16px;
    width: auto;
    z-index: 2;
    transition: all 0.3s ease;
    border-radius: 4px;
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(25, 118, 210, 0.3));
}

.navbar-brand-custom:hover .brand-logo-overlay {
    transform: scale(1.1);
    opacity: 1;
}

.navbar-brand-custom:hover .brand-text {
    color: #ffffff !important;
}

.bg-success {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%) !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #E8F5E8;
}

/* Navbar linklerinin logoya olan mesafesini artır */
.navbar-dark .navbar-nav {
    margin-left: 2rem !important;
}

/* Linkler arası mesafeyi biraz artır */
.navbar-dark .navbar-nav .nav-item:not(:first-child) {
    margin-left: 0.5rem !important;
}

.navbar-brand .brand-logo {
    width: 32px;
    height: 32px;
    margin-right: 0.05rem;
    filter: drop-shadow(0 2px 4px rgba(25, 118, 210, 0.3));
    transition: transform 0.3s ease;
}

.navbar-brand .brand-logo:hover {
    transform: scale(1.1);
}

.navbar-brand .brand-icon {
    color: #1976D2 !important;
    text-shadow: 0 0 15px rgba(25, 118, 210, 0.4);
    font-size: 1.2em;
    margin-right: 0.3rem;
    filter: drop-shadow(0 2px 4px rgba(25, 118, 210, 0.3));
}

.btn-primary {
    background: #1976D2;
    border-color: #1976D2;
}

.btn-primary:hover {
    background: #1565C0;
    border-color: #1565C0;
}

/* ===== DETAIL BUTTON FIXES ===== */
.btn-outline-primary {
    color: #007bff !important;
    border-color: #007bff !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600 !important;
    transition: all 0.3s ease;
    border-width: 2px !important;
}

.btn-outline-primary:hover {
    color: #ffffff !important;
    background-color: #007bff !important;
    border-color: #007bff !important;
}

.btn-outline-primary:focus {
    color: #ffffff !important;
    background-color: #0056b3 !important;
    border-color: #0056b3 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-outline-primary:active {
    color: #ffffff !important;
    background-color: #004085 !important;
    border-color: #004085 !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    border-radius: var(--border-radius-xl) !important;
    padding: 2rem !important; /* p-5 yerine daha küçük padding */
}

.amazon-hero {
    background: linear-gradient(135deg, #232F3E 0%, #131A22 100%) !important;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 2rem !important; /* display-4 boyutunu küçült */
    margin-bottom: 1rem !important;
}

.hero-section .lead {
    font-size: 1rem !important; /* lead boyutunu küçült */
    margin-bottom: 1.5rem !important;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

/* ===== PRODUCT CARDS ===== */
.product-card {
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
    overflow: hidden;
    background: var(--white-color);
}

.product-card .card-body {
    background: var(--white-color);
    color: var(--dark-color);
}

.product-card .card-body * {
    color: inherit;
}

.product-card .card-footer {
    background: var(--white-color);
    color: #6c757d;
}

.product-card .card-footer small {
    color: #6c757d !important;
}

/* Ürün kartları için özel metin renkleri */
.product-card h6.card-title {
    color: #212529 !important;
}

.product-card .price-current {
    color: #198754 !important;
}

.product-card .price-unknown {
    color: #ffc107 !important;
}

.product-card .text-muted {
    color: #6c757d !important;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image-container {
    height: 200px;
    overflow: hidden;
    background: var(--light-color);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f8f9fa; /* veya var(--light-color) */
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.placeholder-image {
    height: 200px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.product-title {
    font-weight: 600;
    line-height: 1.4;
    color: var(--dark-color) !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.8em;
}

.price-section {
    padding: 0.5rem 0;
}

.price-current {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--success-color) !important;
}

.price-unknown {
    font-weight: 600;
    color: var(--warning-color) !important;
}

.product-stats {
    background: var(--light-color);
    padding: 0.5rem;
    border-radius: var(--border-radius);
    margin: 0.5rem 0;
    color: #6c757d !important;
}

.product-stats span {
    color: #6c757d !important;
}

/* Minimal detail button */
.product-detail-btn {
    border: 1px solid #6c757d !important;
    color: #6c757d !important;
    background: #f8f9fa !important;
    padding: 0.375rem 0.75rem;
    font-size: 0.85rem;
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
    text-decoration: none;
}

.product-detail-btn:hover {
    background-color: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
    text-decoration: none;
}

/* ===== BADGES ===== */
.badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
    border-radius: var(--border-radius);
    font-weight: 600;
}

/* ===== PAGINATION ===== */
.pagination .page-link {
    color: #222;
    border: 1px solid #d1d5db;
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: all 0.2s;
}

.pagination .page-item.active .page-link {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
    box-shadow: 0 2px 8px rgba(37,99,235,0.08);
}

.pagination .page-link:hover {
    background-color: #e5e7eb;
    color: #2563eb;
    border-color: #2563eb;
}

/* ===== SEARCH BAR ===== */
.input-group .form-control {
    border-right: none;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
}

.input-group .btn {
    border-left: none;
    padding: 0.5rem 0.75rem;
    background-color: #1877f2;
    border-color: #1877f2;
    color: white;
    font-size: 0.9rem;
}

.input-group .btn:hover {
    background-color: #166fe5;
    border-color: #166fe5;
    color: white;
}

.input-group .form-control:focus {
    border-color: #1877f2;
    box-shadow: 0 0 0 0.2rem rgba(24, 119, 242, 0.25);
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-header {
    padding: 1rem 0 !important;
}

/* Disable shimmer effect */
.product-detail-header::before,
.product-detail-header:hover::before {
    display: none !important;
}

/* Typography */
.product-detail-header .container {
    text-align: center;
}

.product-detail-header h1,
.product-detail-header p {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .product-detail-header {
        padding: 0.75rem 0 !important;
    }

    .product-detail-header h1 {
        font-size: 1.25rem !important;
    }

    .product-detail-header p {
        font-size: 0.8rem !important;
    }
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark-color) !important;
    margin-top: auto;
}

footer h5, footer h6 {
    color: var(--white-color);
}

footer .text-muted {
    color: #adb5bd !important;
}

footer a:hover {
    color: var(--warning-color) !important;
}

/* ===== LOADING SPINNER ===== */
.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* ===== ALERTS ===== */
.alert {
    border-radius: var(--border-radius-lg);
    border: none;
    padding: 1rem 1.5rem;
}

.alert-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    color: #1976d2;
}

.alert-success {
    background: var(--gradient-success);
    color: var(--white-color);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem !important;
    }
    
    .hero-section .display-4 {
        font-size: 2rem;
    }
    
    .product-image-container {
        height: 180px;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .navbar-brand-custom {
        font-size: 1.5rem;
    }
    
    .navbar-brand-custom .brand-logo-overlay {
        height: 16px;
        top: -1px;
        right: -6px;
    }
    
    .price-current {
        font-size: 1.1rem;
    }
    
    .input-group .form-control,
    .input-group .btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .hero-section {
        padding: 1.5rem 1rem !important;
    }
    
    .hero-section .display-4 {
        font-size: 1.75rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }
    
    .pagination .page-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .navbar-brand-custom {
        font-size: 1.3rem;
    }
    
    .navbar-brand-custom .brand-logo-overlay {
        height: 13px;
        top: 3px;
        right: -11px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

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

.product-card {
    animation: fadeInUp 0.6s ease-out;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }

.badge.bg-danger {
    animation: pulse 2s infinite;
}

/* ===== UTILITIES ===== */
.shadow-custom {
    box-shadow: var(--shadow-lg);
}

.rounded-custom {
    border-radius: var(--border-radius-xl);
}

.bg-gradient-warning {
    background: var(--gradient-warning);
}

.bg-gradient-success {
    background: var(--gradient-success);
}

/* ===== DARK MODE SUPPORT (Future) ===== */
@media (prefers-color-scheme: dark) {
    :root {
        --dark-color: #f8f9fa;
        --light-color: #343a40;
    }
    
    /* Dark mode styles will be added here when needed */
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .pagination,
    footer,
    .btn {
        display: none !important;
    }
    
    .product-card {
        break-inside: avoid;
        border: 1px solid #000;
        margin-bottom: 1rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for better accessibility */
.btn:focus,
.form-control:focus,
.page-link:focus {
    outline: 2px solid var(--warning-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .product-card {
        border: 2px solid var(--dark-color);
    }
    
    .btn {
        border: 2px solid currentColor;
    }
}

.footer-logo {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

/* Kaynak etiket (Amazon vb.) */
.source-badge {
    font-size: 0.7rem;
    color: #3a4147 !important;
    margin-top: 2px;
    margin-left: 4px;
    font-family: 'Inter', sans-serif;
    font-style: italic;
}

.live-update {
    color: #3a4147 !important;
    font-family: 'Inter', sans-serif;
    font-style: italic;
}

/* ===== TELEGRAM BUTTON STYLES ===== */
.btn-outline-telegram {
    color: #0088cc !important;
    border-color: #0088cc !important;
}

.btn-outline-telegram:hover,
.btn-outline-telegram:focus,
.btn-outline-telegram:active {
    color: #ffffff !important;
    background-color: #0088cc !important;
    border-color: #0088cc !important;
}

/* Icon color within telegram button */
.btn-outline-telegram i {
    color: #0088cc !important;
}

.btn-outline-telegram:hover i,
.btn-outline-telegram:focus i,
.btn-outline-telegram:active i {
    color: #ffffff !important;
}

/* ===== AMAZON BUY BUTTON STYLES ===== */
#amazon-buy-button {
    background: linear-gradient(135deg, #ff9900 0%, #ffb84d 100%) !important;
    border: none !important;
    color: #ffffff !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

#amazon-buy-button:hover,
#amazon-buy-button:focus {
    background: linear-gradient(135deg, #ffb84d 0%, #ff9900 100%) !important;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0.5rem 1.25rem rgba(255, 153, 0, 0.4) !important;
    color: #ffffff !important;
}

#amazon-buy-button i {
    color: #ffffff !important;
    transition: transform 0.25s ease;
    display: inline-block;
}

#amazon-buy-button:hover i,
#amazon-buy-button:focus i {
    transform: rotate(15deg) !important;
} 

@media (max-width: 768px) {
    .product-image {
        object-fit: contain !important;
        background: #f8f9fa;
    }
} 

.product-detail-image {
    width: 500px;
    height: 500px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .product-detail-image {
        width: 100% !important;
        height: auto !important;
        max-width: 100vw;
        min-width: 0;
    }
} 

#loading-overlay.d-none {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
} 

.btn.product-buy-btn,
.btn-warning.product-buy-btn {
    background: linear-gradient(135deg, #ff7208 0%, #ff9a3c 100%) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 700;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 114, 8, 0.3) !important;
}

.btn.product-buy-btn:hover,
.btn-warning.product-buy-btn:hover {
    background: linear-gradient(135deg, #ff9a3c 0%, #ff7208 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 114, 8, 0.5) !important;
    color: #fff !important;
} 

.btn-instagram {
    background: linear-gradient(45deg, #fd5949 0%, #d6249f 50%, #285AEB 100%) !important;
    color: #fff !important;
    border: none !important;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(253, 89, 73, 0.15), 0 1rem 2rem rgba(214, 36, 159, 0.10) !important;
    transition: all 0.3s ease;
}

.btn-instagram:hover, .btn-instagram:focus {
    background: linear-gradient(45deg, #285AEB 0%, #d6249f 50%, #fd5949 100%) !important;
    color: #fff !important;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 1rem 2rem rgba(40, 90, 235, 0.18) !important;
}

.btn-instagram i {
    color: #fff !important;
}

.btn-instagram:hover i, .btn-instagram:focus i {
    color: #fff !important;
} 