/* GD POWER - Premium Theme Enhancement */

:root {
    --primary-gradient: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFB347 100%);
    --secondary-gradient: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    --accent-gradient: linear-gradient(135deg, #3498DB 0%, #2980B9 100%);
    --success-gradient: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
    --premium-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 15px 40px rgba(255, 107, 53, 0.25);
}

/* Enhanced Body & Typography */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2C3E50;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Premium Header Enhancement */
.header-area {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.header-top {
    background: var(--primary-gradient);
    color: white;
    padding: 8px 0;
}

.header-middle {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
}

/* Logo Enhancement */
.logo img {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.2));
}

.logo img:hover {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 8px 20px rgba(255, 107, 53, 0.3));
}

/* Search Bar Premium Design */
.search-style-2 {
    background: white;
    border-radius: 50px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-style-2:hover {
    border-color: #FF6B35;
    box-shadow: var(--hover-shadow);
}

.search-style-2 input {
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    background: transparent;
}

.search-style-2 select {
    border: none;
    background: var(--primary-gradient);
    color: white;
    padding: 15px 20px;
    border-radius: 50px 0 0 50px;
}

/* Navigation Enhancement */
.main-menu ul li a {
    font-weight: 600;
    color: #2C3E50;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 20px;
    border-radius: 25px;
}

.main-menu ul li a:hover,
.main-menu ul li a.active {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Categories Dropdown Premium */
.categories-dropdown-wrap {
    background: white;
    border-radius: 20px;
    box-shadow: var(--premium-shadow);
    border: none;
    padding: 20px;
}

.category-list li a {
    padding: 12px 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-list li a:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateX(8px);
}

/* Hero Section Enhancement */
.hero-slider-1 {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFB347 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--premium-shadow);
    margin: 20px;
}

/* Product Cards Premium Design */
.product-cart-wrap {
    background: white;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.product-cart-wrap:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--hover-shadow);
    border-color: #FF6B35;
}

.product-img-action-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.product-img-action-wrap img {
    transition: all 0.5s ease;
}

.product-cart-wrap:hover .product-img-action-wrap img {
    transform: scale(1.1);
}

.product-action-1 {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.action-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.1);
}

/* Product Info Enhancement */
.product-content-wrap {
    padding: 25px;
}

.product-category a {
    color: #FF6B35;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title a {
    font-weight: 700;
    color: #2C3E50;
    font-size: 16px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.product-title a:hover {
    color: #FF6B35;
}

.product-price {
    font-size: 20px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons Premium Design */
.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: var(--secondary-gradient);
    color: white;
}

/* Cards & Sections Enhancement */
.card {
    border-radius: 20px;
    border: none;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

/* Banner Enhancement */
.banner-img {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.banner-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    z-index: 1;
}

/* Featured Categories */
.category-item {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.category-item:hover {
    transform: translateY(-10px);
    border-color: #FF6B35;
    box-shadow: var(--hover-shadow);
}

.category-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid #FF6B35;
}

/* Footer Premium Design */
footer {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: white;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.footer-link-widget h4 {
    color: #FF6B35;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.footer-link-widget h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.footer-list li a {
    color: #BDC3C7;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: block;
}

.footer-list li a:hover {
    color: #FF6B35;
    padding-left: 10px;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .hero-slider-1 {
        margin: 10px;
        border-radius: 15px;
    }
    
    .product-cart-wrap {
        margin-bottom: 20px;
    }
    
    .search-style-2 {
        border-radius: 25px;
    }
    
    .main-menu ul li a {
        padding: 10px 15px;
        margin: 5px 0;
    }
}

/* Loading Animation */
/* Loading Animation - Subtler & Professional */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7); /* Subtle white glass effect */
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 107, 53, 0.1);
    border-top: 3px solid #FF6B35;
    border-radius: 50%;
    animation: spin 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll to Top Button */
.back-to-top {
    background: var(--primary-gradient);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF6B35;
}

/* Notification Styles */
.notification {
    background: white;
    border-radius: 15px;
    box-shadow: var(--premium-shadow);
    border-left: 4px solid #FF6B35;
    padding: 20px;
    margin: 10px 0;
}

/* Premium Form Styles */
.form-control {
    border-radius: 15px;
    border: 2px solid #E8E8E8;
    padding: 15px 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
    border-color: #FF6B35;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
    background: white;
}

/* Wishlist Heart Animation */
.wishlist-btn {
    position: relative;
    overflow: hidden;
}

.wishlist-btn::before {
    content: '♥';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: #FF6B35;
    font-size: 20px;
    transition: all 0.3s ease;
}

.wishlist-btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Premium Badge */
.premium-badge {
    background: var(--primary-gradient);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Glassmorphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
}