/* CSS Variables */
:root {
    --primary-color: #FF6B35;
    --secondary-color: #F7931E;
    --accent-color: #4ECDC4;
    --success-color: #00C851;
    --warning-color: #FF8800;
    --danger-color: #FF4444;
    --dark-color: #2E3440;
    --darker-color: #1E1E1E;
    --light-color: #F8F9FA;
    --white-color: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    
    /* Typography */
    --font-primary: 'Kanit', sans-serif;
    --font-secondary: 'Sarabun', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --border-radius: 12px;
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    padding: 0.5rem 0;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    color: var(--dark-color);
}

.brand-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-left: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    border-radius: 8px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: var(--transition);
    color: var(--gray-700);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
}

.navbar-nav .nav-link.btn.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white !important;
}

.navbar-nav .nav-link.btn.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    /* min-height: 60vh; */
    display: flex;
    padding-top: 120px;
    padding-bottom: 50px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(247, 147, 30, 0.8));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
    padding-top: 50px !important;
    padding-bottom: 50px !important;
    position: relative;
    z-index: 2;
    border: none;
}

.hero-title {
    font-size: 3.0rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--white-color), rgba(255, 255, 255, 0.9));
    color: var(--primary-color);
    border: none;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-outline-light {
    border: 2px solid white;
    color: white;
}

.hero-buttons .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Floating Cards Animation */
.hero-image {
    position: relative;
    height: 500px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: float 6s ease-in-out infinite;
    max-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-height: 80px;
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.floating-card .card-content {
    display: flex;
    flex-direction: column;
}

.floating-card span {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
    line-height: 1.2;
}

.floating-card small {
    color: #666;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.card-1 {
    top: 5%;
    right: 15%;
    animation-delay: 0s;
    z-index: 5;
}

.card-2 {
    top: 25%;
    left: 5%;
    animation-delay: 2s;
    z-index: 4;
}

.card-3 {
    top: 50%;
    right: 5%;
    animation-delay: 4s;
    z-index: 3;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -10px) rotate(1deg);
    }
    50% {
        transform: translate(-5px, -20px) rotate(-1deg);
    }
    75% {
        transform: translate(-10px, -10px) rotate(1deg);
    }
}

/* New Hero Elements */
.achievement-badge {
    text-align: left;
}

.achievement-badge .badge {
    font-size: 0.9rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #F7931E, #FFB84D) !important;
    color: #333 !important;
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(247, 147, 30, 0.5);
    }
}

.highlight-text {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hero Stats */
.hero-stats {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #F7931E, #FFB84D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Hero Testimonial */
.hero-testimonial {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    text-align: left;
}

.testimonial-text {
    color: #333;
    font-style: italic;
    margin: 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: none;
}

.testimonial-author {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #dc3545, #e9515f);
    border-radius: 12px;
    padding: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(220, 53, 69, 0.3);
    animation: urgency-pulse 3s infinite;
}

@keyframes urgency-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
}

.urgency-content {
    color: white;
    text-align: center;
}

.urgency-text {
    font-size: 0.9rem;
}

.countdown-timer {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Enhanced Buttons */
.pulse-button {
    animation: pulse-button 2s infinite;
    position: relative;
    overflow: hidden;
}

@keyframes pulse-button {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

.small-text {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

/* Enhanced Floating Cards */
.floating-card {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.floating-card i {
    font-size: 1.8rem !important;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.floating-card span {
    font-weight: 600 !important;
    font-size: 0.85rem;
    color: #333;
    line-height: 1.2;
}

.floating-card small {
    font-size: 0.7rem;
    color: #666;
    margin-top: 0.2rem;
    text-align: center;
}

.card-4 {
    top: 75%;
    left: 15%;
    animation-delay: 1s;
    z-index: 2;
}

.card-5 {
    bottom: 5%;
    right: 25%;
    animation-delay: 3s;
    z-index: 1;
}

/* Success Stories */
.success-stories {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.success-story {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    max-width: 220px;
    animation: float 8s ease-in-out infinite;
}

.story-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0.5s;
}

.story-2 {
    bottom: 15%;
    right: 10%;
    animation-delay: 3.5s;
}

.story-avatar img {
    width: 50px;
    height: 50px;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.story-content {
    text-align: left;
}

.story-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #28a745;
    line-height: 1;
}

.story-text {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
}

/* LINE Official */
.line-official {
    text-align: center;
}

.line-official small {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.scroll-mouse {
    width: 32px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.scroll-wheel {
    width: 6px;
    height: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 3px;
    margin-top: 8px;
    animation: scroll-wheel-move 1.2s infinite ease-in-out;
}

@keyframes scroll-wheel-move {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateY(16px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 12px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hide scroll indicator when scrolled */
.scroll-indicator.hide {
    opacity: 0;
    pointer-events: none;
}

/* Categories Section */
.categories-section {
    padding: var(--section-padding);
}

.category-card {
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    color: white;
    cursor: pointer;
    transition: all var(--transition);
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-card-big{
    height: 180px;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.category-icon {
    margin-bottom: 0.5rem;
}

.category-icon i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.category-info {
    text-align: center;
}

.category-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.shop-count {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Category card animations */
.category-card:active {
    transform: translateY(-2px) scale(0.98);
}

/* Features Section */
.features-section {
    padding: var(--section-padding);
    background: var(--light-color);
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h5 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Shops Section */
.shops-section {
    padding: var(--section-padding);
}

.shop-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.shop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.shop-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.shop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.shop-card:hover .shop-image img {
    transform: none;
}

.discount-badge {
    position: absolute;
    /* top: 15px; */
    left: 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.shop-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.shop-card:hover .shop-overlay {
    opacity: 1;
}

.shop-info {
    padding: 1.5rem;
}

.shop-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.shop-location {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.shop-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #FFD700;
}

.rating-text {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* News Section */
.news-section {
    padding: var(--section-padding);
    background: var(--light-color);
}

.featured-news {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.news-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.news-content {
    padding: 2rem;
}

.news-content h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.news-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-sidebar {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: fit-content;
}

.sidebar-title {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.news-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.news-item-date {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-item h6 {
    color: var(--dark-color);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.qr-code-section {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    color: var(--dark-color);
    box-shadow: var(--box-shadow);
}

.qr-code {
    margin: 1.5rem 0;
}

.qr-code img {
    max-width: 200px;
    border-radius: var(--border-radius);
}

.line-badge {
    background: #00C300;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
}

.contact-info h5 {
    color: white;
    margin-bottom: 1rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Reviews Section */
.reviews-section {
    padding: var(--section-padding);
    background: var(--light-color);
}

.review-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: auto;
    margin-bottom: 1rem;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    position: relative;
    flex-shrink: 0;
}

.reviewer-avatar img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.points-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.points-badge i {
    font-size: 0.6rem;
}

.reviewer-details h6 {
    margin: 0;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.review-time {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.shop-info {
    text-align: right;
}

.shop-badge {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    justify-content: flex-end;
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 0.2rem;
}

.shop-points {
    font-size: 0.7rem;
    color: var(--primary-color);
    font-weight: 600;
}

.shop-name-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.shop-name-header .shop-name {
    margin: 0;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

.review-rating .stars {
    color: #FFD700;
    font-size: 0.9rem;
}

.review-content {
    margin-bottom: 1rem;
}

.review-content p {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.review-images {
    margin-bottom: 1rem;
}

.image-grid {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(3, 1fr);
}

.image-grid.single {
    grid-template-columns: 1fr;
    max-width: 200px;
}

.review-img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.review-img:hover {
    transform: scale(1.05);
}

.review-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.like-btn,
.share-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 20px;
}

.like-btn:hover {
    color: var(--danger-color);
    background: rgba(255, 68, 68, 0.1);
}

.like-btn.liked {
    color: var(--danger-color);
}

.like-btn.liked i {
    color: var(--danger-color);
}

.share-btn:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
}

.like-btn i,
.share-btn i {
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
}

.bg-darker {
    background: var(--darker-color) !important;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer h6 {
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    padding: 15px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    color: white;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top i {
    font-size: 1.2rem;
}

/* Button Styles */
.btn {
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

.active>.page-link, .page-link.active{
    background-color: var(--primary-color);;
    border-color: var(--brand-orange-dark);;
}

.page-link:hover{
    color:var(--brand-orange-dark);
}
.page-link{
    color:var(--brand-orange-dark);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .floating-card {
        max-width: 150px;
        padding: 1rem;
    }
    
    .floating-card i {
        font-size: 1.5rem;
    }
    
    .floating-card span {
        font-size: 0.9rem;
    }

    .floating-cards-container{
        display: none !important;
    }
}

@media (max-width: 768px) {
    .floating-cards-container{
        display: none !important;
    }

    .hero-section {
        min-height: auto;
        padding: 4rem 0 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .hero-image {
        margin-top: 1rem;
        height: auto;
        display: none; /* Hide the empty hero-image container on mobile */
    }
    
    .success-stories {
        gap: 1rem;
    }
    
    .features-section .col-lg-3 {
        margin-bottom: 2rem;
    }
    
    .news-section .col-lg-4 {
        margin-bottom: 2rem;
    }
    
    .category-card {
        height: 100px;
        padding: 1rem 0.5rem;
    }
    
    .category-icon i {
        font-size: 1.5rem;
    }
    
    .category-name {
        font-size: 0.8rem;
    }
    
    .shop-count {
        font-size: 0.7rem;
    }
    
    .back-to-top {
        right: 15px;
        bottom: 15px;
    }
    
    /* Scroll indicator mobile adjustments */
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-mouse {
        width: 28px;
        height: 42px;
    }
    
    .scroll-wheel {
        width: 5px;
        height: 10px;
    }
    
    .scroll-indicator span {
        font-size: 0.8rem;
        padding: 3px 10px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 3rem 0 1.5rem 0;
    }

    .floating-cards-container{
        display: none !important;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .shop-info {
        padding: 1rem;
    }
    
    .news-content {
        padding: 1rem;
    }
    
    .qr-code-section {
        text-align: center;
    }
    
    .review-card {
        padding: 1rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .shop-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .shop-name-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .review-rating {
        margin-top: 0.5rem;
    }
    
    .reviewer-avatar img {
        width: 40px;
        height: 40px;
    }
    
    .points-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .review-img {
        height: 120px;
    }
    
    .category-card {
        height: 120px;
        padding: 0.5rem;
    }
    
    .category-icon i {
        font-size: 1.2rem;
    }
    
    .category-name {
        font-size: 0.7rem;
    }
    
    .shop-count {
        font-size: 0.6rem;
    }
    
    .back-to-top {
        right: 10px;
        bottom: 10px;
        width: 40px;
        height: 40px;
    }
    
    .back-to-top i {
        font-size: 1rem;
    }
    
    .achievement-badge {
        right: 10px;
        top: 10px;
    }
    
    .achievement-badge .badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }
    
    .hero-stats {
        gap: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .hero-testimonial {
        padding: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.8rem;
    }
    
    .testimonial-author {
        font-size: 0.7rem;
    }
    
    .urgency-banner {
        padding: 0.5rem;
    }
    
    .urgency-text {
        font-size: 0.8rem;
    }
    
    .countdown-timer {
        font-size: 0.7rem;
    }
    
    .success-story {
        padding: 0.5rem;
    }
    
    .story-amount {
        font-size: 0.8rem;
    }
    
    .story-text {
        font-size: 0.7rem;
    }
    
    .story-avatar img {
        width: 30px;
        height: 30px;
    }
    
    .line-official small {
        font-size: 0.7rem;
    }
    
    .small-text {
        font-size: 0.6rem;
    }
    
    /* Scroll indicator small screen adjustments */
    .scroll-indicator {
        bottom: 15px;
    }
    
    .scroll-mouse {
        width: 24px;
        height: 36px;
    }
    
    .scroll-wheel {
        width: 4px;
        height: 8px;
    }
    
    .scroll-indicator span {
        font-size: 0.7rem;
        padding: 2px 8px;
    }
}

/* Extra small devices - optimize hero height */
@media (max-width: 480px) {
    .hero-section {
        padding: 2.5rem 0 1rem 0;
    }
    
    .hero-stats {
        margin-bottom: 1.5rem;
    }
    
    .urgency-banner {
        margin-bottom: 1.5rem;
    }
    
    .hero-content {
        padding-bottom: 1rem;
    }

    .floating-cards-container{
        display: none !important;
    }
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes heartFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-60px) scale(0.8);
        opacity: 0;
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 9999;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 300px;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-success {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
}

.notification-error {
    background: linear-gradient(135deg, #E74C3C, #C0392B);
}

.notification-warning {
    background: linear-gradient(135deg, #F39C12, #E67E22);
}

.notification-info {
    background: linear-gradient(135deg, #3498DB, #2980B9);
}

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

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 992px) {
    .hero-section {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }
} 