/*
Theme Name: Shahin Shopper Landing
Theme URI: https://shahinshopper.com/
Author: Shahin Shopper
Author URI: https://shahinshopper.com/
Description: High-converting, mobile-first single product landing page WordPress theme with Facebook Pixel integration, PixelMySite compatibility, and fast order checkout.
Version: 1.0.0
Tested up to: 6.7
Requires at least: 5.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shahin-shopper
Tags: landing-page, one-column, e-commerce, custom-header, custom-colors
*/

:root {
    --primary: #FF4500;
    --primary-hover: #E03E00;
    --secondary: #1A202C;
    --accent: #FFD700;
    --success: #10B981;
}

/* 100% Bulletproof Brand Color Fallbacks */
.bg-primary {
    background-color: #FF4500 !important;
    color: #ffffff !important;
}
.bg-primary:hover, .hover\:bg-orange-600:hover {
    background-color: #E03E00 !important;
}
.text-primary {
    color: #FF4500 !important;
}
.border-primary {
    border-color: #FF4500 !important;
}
.text-secondary {
    color: #1A202C !important;
}
.bg-secondary {
    background-color: #1A202C !important;
}
.focus\:ring-primary:focus {
    --tw-ring-color: #FF4500 !important;
    border-color: #FF4500 !important;
    box-shadow: 0 0 0 3px rgba(255, 69, 0, 0.25) !important;
}
.focus\:border-primary:focus {
    border-color: #FF4500 !important;
}

/* Dynamic Package Selection - Light Orange Background & Orange Border on Click */
.package-option {
    transition: all 0.22s ease-in-out;
    background-color: #ffffff;
    border: 1.5px solid #e5e7eb;
}
.package-option:hover {
    border-color: #fdba74;
}
.package-option.selected-package,
.package-option:has(input[type="radio"]:checked) {
    background-color: #fff7ed !important; /* halka orange */
    border: 2px solid #FF4500 !important;
    box-shadow: 0 4px 14px rgba(255, 69, 0, 0.16) !important;
    transform: scale(1.01);
}
.package-option:has(input[type="radio"]:checked) .package-radio-circle,
.package-option.selected-package .package-radio-circle {
    border-color: #FF4500 !important;
    border-width: 5px !important;
    background-color: #ffffff !important;
}

body {
    font-family: 'Poppins', 'Hind Siliguri', sans-serif;
    background-color: #f8fafc;
}

/* Custom Animations */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 69, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 69, 0, 0); }
}

/* Hide scrollbar for review container */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Slider Styles */
.slider-container {
    scroll-behavior: smooth;
}

/* Button Shine Effect */
.btn-shine {
    position: relative;
    overflow: hidden;
}
.btn-shine::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}
@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* 3 Buttons 3 Distinct Animations (Sleek & Compact) */
@keyframes highlight-glow {
    0%, 100% { transform: scale(1); box-shadow: 0 2px 8px rgba(25, 113, 194, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 4px 14px rgba(25, 113, 194, 0.6); }
}
.btn-anim-highlight {
    animation: highlight-glow 2s infinite ease-in-out;
}

@keyframes float-green {
    0%, 100% { transform: translateY(0); box-shadow: 0 2px 8px rgba(47, 158, 68, 0.3); }
    50% { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(47, 158, 68, 0.5); }
}
.btn-anim-green {
    animation: float-green 2.5s infinite ease-in-out 0.4s;
}

@keyframes pulse-red {
    0%, 100% { transform: scale(1); box-shadow: 0 2px 8px rgba(224, 49, 49, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 4px 12px rgba(224, 49, 49, 0.5); }
}
.btn-anim-red {
    animation: pulse-red 2.2s infinite ease-in-out 0.8s;
}

/* Custom input number hide arrows */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}
