/* Modern 2026 Design - SugarMute */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-yellow: #FFD700;
    --bright-yellow: #FFEB3B;
    --yellow-dark: #F9A825;
    --text-black: #000000;
    --bg-translucent: rgba(255, 255, 255, 0.95);
    --bg-translucent-light: rgba(255, 255, 255, 0.85);
    --accent-orange: #FF6B35;
    --accent-pink: #FF4081;
    --accent-blue: #2196F3;
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 12px 48px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.2);
    --gradient-yellow: linear-gradient(135deg, #FFD700 0%, #FFEB3B 50%, #FFC107 100%);
    --gradient-bright: linear-gradient(135deg, #FF6B35 0%, #FF4081 50%, #2196F3 100%);
}

* {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    background: var(--bg-translucent) !important;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 235, 59, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(33, 150, 243, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
    font-family: 'Inter', 'Poppins', sans-serif !important;
    position: relative;
    overflow-x: hidden;
}

/* Modern Button Styles */
.btn-warning, .btn.btn-warning {
    background: var(--gradient-yellow) !important;
    color: var(--text-black) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 16px 40px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-medium) !important;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-warning:hover::before {
    left: 100%;
}

.btn-warning:hover, .btn.btn-warning:hover {
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: var(--shadow-strong) !important;
    background: linear-gradient(135deg, #FFEB3B 0%, #FFD700 50%, #FFC107 100%) !important;
}

.btn-warning:active, .btn.btn-warning:active {
    transform: translateY(-2px) scale(1.02) !important;
}

/* Section Animations */
section {
    animation: fadeInUp 0.8s ease-out;
    position: relative;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Animations */
.item, .card-box, .sugar-mute-item-wrap {
    animation: slideIn 0.6s ease-out;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.item:hover, .card-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

/* Image Animations */
img {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
}

img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: var(--shadow-medium);
}

/* Text Animations */
h1, h2, h3 {
    animation: fadeIn 1s ease-out;
    position: relative;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Navbar Modern Style */
.sugar-mute-navbar {
    background: var(--bg-translucent) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

/* Hamburger Menu Icon - Red Color */
.sugar-mute-menu-section button.sugar-mute-navbar-toggler .sugar-mute-hamburger span,
.sugar-mute-navbar-toggler .sugar-mute-hamburger span,
button.sugar-mute-navbar-toggler .sugar-mute-hamburger span {
    background-color: #FF0000 !important;
}

.sugar-mute-menu-section nav.opened .sugar-mute-hamburger span:nth-child(2),
.sugar-mute-menu-section nav.opened .sugar-mute-hamburger span:nth-child(3),
.sugar-mute-navbar.opened .sugar-mute-hamburger span:nth-child(2),
.sugar-mute-navbar.opened .sugar-mute-hamburger span:nth-child(3) {
    background-color: #FF0000 !important;
}

.sugar-mute-navbar-brand a,
.sugar-mute-navbar-brand .sugar-mute-caption,
.sugar-mute-navbar-brand a.sugar-mute-caption,
.sugar-mute-navbar-brand a.text-success {
    font-weight: 800;
    font-size: 1.8rem;
    color: #FF0000 !important;
    background: linear-gradient(135deg, #FF0000 0%, #DC143C 50%, #B22222 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Limited Time Popup */
.limited-time-popup {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
    width: 320px;
    max-width: 90vw;
    animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
}

.limited-time-popup.show {
    display: block;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(400px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.popup-content {
    background: linear-gradient(135deg, #FF6B35 0%, #FF4081 50%, #2196F3 100%);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-strong);
    position: relative;
    overflow: hidden;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 20px 60px rgba(255, 107, 53, 0.7);
    }
}

.popup-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 24px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg) scale(1.1);
}

.popup-header {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 5;
}

.popup-badge {
    display: inline-block;
    background: var(--gradient-yellow);
    color: var(--text-black);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 10px;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.popup-header h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 10px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.popup-body {
    text-align: center;
    position: relative;
    z-index: 5;
    margin-bottom: 20px;
}

.popup-discount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-yellow);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    margin: 10px 0;
    animation: scalePulse 1.5s ease-in-out infinite;
}

@keyframes scalePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.popup-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 10px 0;
}

.popup-price {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 15px 0;
}

.popup-timer {
    margin-top: 15px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.popup-btn {
    display: block;
    width: 100%;
    background: var(--gradient-yellow);
    color: var(--text-black);
    text-align: center;
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.popup-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.5s;
}

.popup-btn:hover::before {
    left: 100%;
}

.popup-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #FFEB3B 0%, #FFD700 50%, #FFC107 100%);
    color: var(--text-black);
}

/* Section Backgrounds */
.sugar-mute-section {
    background: var(--bg-translucent-light);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 30px 0;
    padding: 40px 20px;
    box-shadow: var(--shadow-soft);
}

/* Card Modernization */
.card-box {
    background: var(--bg-translucent);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Hover Effects */
a:hover {
    transform: translateY(-2px);
}

/* Responsive Popup */
@media (max-width: 768px) {
    .limited-time-popup {
        right: 10px;
        width: 280px;
    }
    
    .popup-content {
        padding: 20px;
    }
    
    .popup-discount {
        font-size: 2.5rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Additional Modern Touches */
.sugar-mute-container {
    position: relative;
}

.sugar-mute-section-title {
    position: relative;
    display: inline-block;
}

.sugar-mute-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-yellow);
    border-radius: 2px;
    animation: expandWidth 1s ease-out;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

/* Bright Accent Colors */
.text-primary {
    color: var(--accent-blue) !important;
}

.text-success {
    color: var(--accent-pink) !important;
}

/* Image Wraps */
.sugar-mute-image-wrap {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.sugar-mute-image-wrap img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sugar-mute-image-wrap:hover img {
    transform: scale(1.1);
}

/* List Items Animation */
ul li, ol li {
    animation: fadeInLeft 0.6s ease-out;
    animation-fill-mode: both;
}

ul li:nth-child(1) { animation-delay: 0.1s; }
ul li:nth-child(2) { animation-delay: 0.2s; }
ul li:nth-child(3) { animation-delay: 0.3s; }
ul li:nth-child(4) { animation-delay: 0.4s; }
ul li:nth-child(5) { animation-delay: 0.5s; }
ul li:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Footer Modernization */
.sugar-mute-footer-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

/* Nav Links */
.nav-link {
    transition: all 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-yellow);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 80%;
}

/* Stagger Animation for Items */
.item:nth-child(1) { animation-delay: 0.1s; }
.item:nth-child(2) { animation-delay: 0.2s; }
.item:nth-child(3) { animation-delay: 0.3s; }
.item:nth-child(4) { animation-delay: 0.4s; }
