/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff8c5a, #ffa726);
}

/* Breadcrumb Styles */
.breadcrumb {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.breadcrumb-link:hover {
    background: rgba(255, 107, 53, 0.2);
    color: #ff8c5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.breadcrumb-separator {
    color: #6c757d;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(108, 117, 125, 0.1);
    border-radius: 50%;
}

.breadcrumb-current {
    color: #333;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.breadcrumb-current::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.breadcrumb-current:hover::before {
    left: 100%;
}

/* Privacy and Terms Modal Styles */
.legal-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.legal-modal.show {
    display: flex;
    opacity: 1;
}

.legal-modal-content {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.legal-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

.legal-modal-header h2 {
    margin: 0;
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-modal-header h2::before {
    content: '📄';
    font-size: 1.5rem;
}

.legal-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-modal-close:hover {
    background: #f8f9fa;
    color: #333;
    transform: scale(1.1);
}

.legal-modal-body {
    padding: 2rem;
    line-height: 1.7;
    color: #333;
}

.legal-modal-body h3 {
    color: #ff6b35;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    position: relative;
}

.legal-modal-body h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 1px;
}

.legal-modal-body h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem 0;
}

.legal-modal-body p {
    margin-bottom: 1rem;
    color: #6c757d;
}

.legal-modal-body ul, .legal-modal-body ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-modal-body li {
    margin-bottom: 0.5rem;
    color: #6c757d;
}

.legal-modal-body strong {
    color: #333;
    font-weight: 600;
}

.legal-modal-footer {
    padding: 1rem 2rem 2rem;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
    text-align: center;
}

.legal-modal-footer .btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.legal-modal-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

/* Responsive Design for Legal Modals */
@media (max-width: 768px) {
  .newsletter-content{

    grid-template-columns:auto !important;
  }
  .legal-modal {
        padding: 0.5rem;
    }
    
    .legal-modal-content {
        max-height: 90vh;
        border-radius: 15px;
    }
    
    .legal-modal-header {
        padding: 1.5rem 1.5rem 1rem;
        border-radius: 15px 15px 0 0;
    }
    
    .legal-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .legal-modal-close {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .legal-modal-body {
        padding: 1.5rem;
    }
    
    .legal-modal-footer {
        padding: 1rem 1.5rem 1.5rem;
        border-radius: 0 0 15px 15px;
    }
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
    transition: background 0.3s ease;
}

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

::-webkit-scrollbar-corner {
    background: #f1f1f1;
}

/* Mobile Scrollbar Optimization */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }
    
    ::-webkit-scrollbar-track {
        background: transparent;
    }
    
    ::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.3);
        border-radius: 2px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 0, 0, 0.5);
    }
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
}

@media (max-width: 768px) {
    * {
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
    }
}

/* Table Container Scrollbar */
.table-container::-webkit-scrollbar {
    height: 6px;
}

.table-container::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 3px;
}

.table-container::-webkit-scrollbar-thumb {
    background: #6c757d;
    border-radius: 3px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: #495057;
}

@media (max-width: 768px) {
    .table-container::-webkit-scrollbar {
        height: 3px;
    }
    
    .table-container::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .table-container::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.4);
        border-radius: 2px;
    }
}

/* Modal Scrollbar */
.modal-content::-webkit-scrollbar,
.legal-modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track,
.legal-modal-content::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb,
.legal-modal-content::-webkit-scrollbar-thumb {
    background: #dee2e6;
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb:hover,
.legal-modal-content::-webkit-scrollbar-thumb:hover {
    background: #adb5bd;
}

@media (max-width: 768px) {
    .modal-content::-webkit-scrollbar,
    .legal-modal-content::-webkit-scrollbar {
        width: 3px;
    }
    
    .modal-content::-webkit-scrollbar-track,
    .legal-modal-content::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .modal-content::-webkit-scrollbar-thumb,
    .legal-modal-content::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.3);
        border-radius: 2px;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.logo img {
    height: 40px;
    width: 120px;
    object-fit: contain;
}

.logo h1 {
    display: none;
}

/* Navigation */
.nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #ff6b35;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* User Actions */
.user-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-icon, .wishlist-icon {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.cart-icon:hover, .wishlist-icon:hover {
    background-color: #f8f9fa;
}

.cart-count, .wishlist-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #f7931e;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* User Menu Dropdown */
.user-menu {
    position: relative;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dropdown-toggle:hover {
    background: #f8f9fa;
    border-color: #ff6b35;
    color: #ff6b35;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #ff6b35;
}

.dropdown-item:last-child {
    border-top: 1px solid #e9ecef;
    margin-top: 0.25rem;
    padding-top: 0.75rem;
}

.dropdown-item:last-child:hover {
    background: #fff3e0;
    color: #f7931e;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #545b62;
}

.btn-outline {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-outline:hover {
    background: #ff6b35;
    color: white;
}

.btn-danger {
    background: #f7931e;
    color: white;
}

.btn-danger:hover {
    background: #e68900;
}

/* Banner Sections */
.top-banner, .middle-banner {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.banner-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.banner-image:hover {
    transform: scale(1.02);
}

/* Top Banner specific styles */
.top-banner {
    margin-top: 0;
    background: #f8f9fa;
    padding: 0;
}

/* Middle Banner specific styles */
.middle-banner {
    margin: 2rem 0;
    background: #f8f9fa;
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0 auto 0;
}

/* Responsive Banner Styles */
@media (max-width: 768px) {
    .top-banner, .middle-banner {
        margin: 1rem 0;
    }
    
    .middle-banner {
        border-radius: 10px;
        margin: 1.5rem 0;
    }
    
    .banner-image {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .top-banner, .middle-banner {
        margin: 0.5rem 0;
    }
    
    .middle-banner {
        border-radius: 8px;
        margin: 1rem 0;
    }
    
    .banner-image {
        border-radius: 8px;
    }
}

/* Hero Layout */
.hero-layout {
    background: transparent;
    padding: 2rem 0;
    min-height: auto;
    position: relative;
}

.hero-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Hero Images */
.hero-image-item {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-item:hover {
    transform: translateY(-5px);
}

.hero-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.hero-image-item:hover .hero-img {
    transform: scale(1.02);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-layout {
        padding: 1rem 0;
    }
    
    .hero-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .hero-image-item:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 480px) {
    .hero-layout {
        padding: 0.5rem 0;
    }
    
    .hero-images {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-image-item {
        border-radius: 12px;
    }
    
    .hero-image-item:hover {
        transform: translateY(-2px);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

/* Hero Background Decorations */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.06) 0%, transparent 40%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
    animation: backgroundFloat 20s ease-in-out infinite;
}

/* Floating decorative elements */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: floatDecoration 15s ease-in-out infinite;
}

.decorative-circle:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation: gentleFloat 18s ease-in-out infinite;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.decorative-circle:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 15%;
    animation: waveFloat 20s ease-in-out infinite;
    animation-delay: 3s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.decorative-circle:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation: pulseFloat 16s ease-in-out infinite;
    animation-delay: 6s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.decorative-circle:nth-child(4) {
    width: 100px;
    height: 100px;
    bottom: 15%;
    right: 10%;
    animation: floatDecoration 22s ease-in-out infinite;
    animation-delay: 9s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.decorative-circle:nth-child(5) {
    width: 40px;
    height: 40px;
    top: 50%;
    left: 5%;
    animation: gentleFloat 14s ease-in-out infinite;
    animation-delay: 12s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* Geometric shapes */
.decorative-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid rgba(255, 255, 255, 0.08);
    animation: rotateDecoration 20s linear infinite;
}

.decorative-triangle:nth-child(1) {
    top: 15%;
    right: 25%;
    animation: rotateDecoration 25s linear infinite;
    animation-delay: 0s;
    border-bottom-color: rgba(255, 255, 255, 0.12);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.decorative-triangle:nth-child(2) {
    bottom: 25%;
    left: 15%;
    animation: rotateDecoration 30s linear infinite reverse;
    animation-delay: 10s;
    transform: rotate(180deg);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.08));
}

/* Small decorative dots */
.decorative-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: twinkleFloat 12s ease-in-out infinite;
}

.decorative-dot:nth-child(8) {
    top: 25%;
    left: 30%;
    animation-delay: 0s;
    animation: twinkleFloat 10s ease-in-out infinite;
}

.decorative-dot:nth-child(9) {
    top: 35%;
    right: 40%;
    animation-delay: 2s;
    animation: twinkleFloat 14s ease-in-out infinite;
}

.decorative-dot:nth-child(10) {
    bottom: 30%;
    left: 40%;
    animation-delay: 4s;
    animation: twinkleFloat 11s ease-in-out infinite;
}

.decorative-dot:nth-child(11) {
    bottom: 40%;
    right: 30%;
    animation-delay: 6s;
    animation: twinkleFloat 13s ease-in-out infinite;
}

.decorative-dot:nth-child(12) {
    top: 60%;
    left: 15%;
    animation-delay: 8s;
    animation: twinkleFloat 9s ease-in-out infinite;
}

.decorative-dot:nth-child(13) {
    top: 40%;
    right: 20%;
    animation-delay: 10s;
    animation: twinkleFloat 15s ease-in-out infinite;
}

/* Animations for decorations */
@keyframes backgroundFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
        opacity: 0.6;
    }
}

@keyframes floatDecoration {
    0%, 100% {
        transform: translateY(0px) scale(1) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-15px) scale(1.05) rotate(90deg);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-25px) scale(1.1) rotate(180deg);
        opacity: 0.2;
    }
    75% {
        transform: translateY(-15px) scale(1.05) rotate(270deg);
        opacity: 0.15;
    }
}

@keyframes rotateDecoration {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Additional floating animations */
@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.1;
    }
    33% {
        transform: translateY(-10px) translateX(5px);
        opacity: 0.15;
    }
    66% {
        transform: translateY(-5px) translateX(-3px);
        opacity: 0.12;
    }
}

@keyframes waveFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.08;
    }
    25% {
        transform: translateY(-8px) rotate(5deg);
        opacity: 0.12;
    }
    50% {
        transform: translateY(-12px) rotate(0deg);
        opacity: 0.15;
    }
    75% {
        transform: translateY(-8px) rotate(-5deg);
        opacity: 0.12;
    }
}

@keyframes pulseFloat {
    0%, 100% {
        transform: scale(1) translateY(0px);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.2) translateY(-15px);
        opacity: 0.2;
    }
}

@keyframes twinkleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }
    25% {
        transform: translateY(-8px) scale(1.2);
        opacity: 0.6;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    }
    50% {
        transform: translateY(-12px) scale(1.1);
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
    75% {
        transform: translateY(-8px) scale(1.3);
        opacity: 0.5;
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.hero-stat {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.hero-stat.animate-stat-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-stat > span:first-child {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.hero-stat .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* PC端专用样式 */
@media (min-width: 769px) {
    .hero-section {
        padding-top: 0;
    }
    
    /* PC端Footer-links优化 */
    .footer-links {
        display: flex;
        justify-content: center;
        gap: 2.5rem;
        flex-wrap: wrap;
        margin-top: 1.5rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        color: #666;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        padding: 0.6rem 1.2rem;
        border-radius: 25px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
.footer-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}
    
.footer-links a:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-color: #ff6b35;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}
    
    .footer-links a:hover::before {
        opacity: 1;
    }
    
    .footer-links a:active {
        transform: translateY(-1px) scale(1.02);
        transition: all 0.1s ease;
    }
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
    color: white;
    text-align: center;
}

/* Ensure PC layout is maintained */
@media (min-width: 769px) {
    .hero-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 4rem !important;
        text-align: left !important;
    }
    
    .hero-text {
        text-align: left !important;
    }
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-buttons .btn-primary {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-primary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-buttons .btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.8);
    color: white;
}

.hero-buttons .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

/* Hero Image Carousel */
.hero-image-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
}

.image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.image-slide.active {
    opacity: 1;
}

.image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.image-slide img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Carousel */
.carousel {
    position: relative;
    max-width: 100%;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: fill;
}

.carousel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 2rem;
    text-align: center;
}

.carousel-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.carousel-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.carousel-nav:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Features Section */
.features-section {
    padding: 5rem 0 ;
    background: #f8f9fa !important;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 2rem !important;
}

.feature-card {
    background: white !important;
    padding: 3rem 2rem !important;
    border-radius: 20px !important;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
}

/* Product Grid */
.products-section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem !important;
    margin-bottom: 3rem !important;
    color: #333 !important;
    font-weight: 700 !important;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem !important;
}

.product-card {
    background: white !important;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    transition: all 0.4s ease !important;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05) !important;
}

.product-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15) !important;
    border-color: rgba(255, 107, 53, 0.2) !important;
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 250px !important;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    z-index: 2;
}

.product-card .product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.action-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-bottom: 0.5rem;
}

.action-btn:hover {
    background: #ff6b35;
    color: white;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.action-btn.active {
    background: #f7931e;
    color: white;
}

.product-info {
    padding: 2rem !important;
}


.product-category {
    color: #ff6b35;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.product-name {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.75rem;
    color: #333 !important;
    line-height: 1.3;
}

.product-description {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 2.85em; /* 2 lines * 1.5 line-height + small margin */
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.current-price {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #ff6b35 !important;
}

.original-price {
    font-size: 1rem;
    color: #6c757d;
    text-decoration: line-through;
}

.discount {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
}

/* Categories */
.categories-section {
    padding: 4rem 0 ;
    background: white !important;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 2rem !important;
}

.category-card {
    text-align: center;
    padding: 3rem 2rem !important;
    border-radius: 20px !important;
    background: white !important;
    transition: all 0.4s ease !important;
    cursor: pointer;
    text-decoration: none;
    color: #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.category-image {
    width: 100px !important;
    height: 100px !important;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image {
    transform: scale(1.1);
}

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

.category-name {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.75rem;
    color: #333 !important;
}

.category-count {
    color: #ff6b35 !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
}

/* Footer */
.footer {
    background: #ffffff;
    color: #333;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid #e9ecef;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-section p, .footer-section a {
    color: #666;
    text-decoration: none;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-section a:hover {
    color: #ff6b35;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.contact-info {
    margin-top: 1rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #666;
    font-size: 0.9rem;
}

.contact-info i {
    color: #ff6b35;
    width: 16px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #e9ecef;
    padding-top: 2rem;
    text-align: center;
    color: #666;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6) !important;
    backdrop-filter: blur(8px);
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    margin: 2% auto;
    padding: 0;
    border-radius: 25px;
    width: 85%;
    max-width: 1000px;
    max-height: 90vh;
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(20px);
}

.modal-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
    color: white;
    padding: 2rem 2.5rem;
    border-bottom: none;
    position: relative;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.modal-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.modal-header .close {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.modal-header .close:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

.modal-body {
    padding: 2rem;
    max-height: calc(90vh - 100px);
    overflow-y: auto;
    background: #ffffff !important;
}

.preview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.preview-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.preview-image img {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: contain;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.preview-image:hover img {
    transform: scale(1.02);
}

.preview-info {
    padding-left: 2rem;
    position: relative;
    background: rgba(255,255,255,0.5);
    border-radius: 20px;
    padding: 3.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-height: 600px;
}

.preview-info::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 2px;
}

.preview-info h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.preview-info .price {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.preview-info .original-price {
    font-size: 1.3rem;
    margin-left: 0.8rem;
}

.preview-info .description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 2rem;
}

.preview-info .form-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.preview-info .form-select {
    font-size: 1rem;
    padding: 0.8rem 1rem;
}

.preview-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.preview-actions .btn {
    flex: 1;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.preview-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.preview-actions .btn:hover::before {
    left: 100%;
}

.preview-actions .btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.preview-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.preview-actions .btn-outline {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e9ecef;
    color: #495057;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.preview-actions .btn-outline:hover {
    transform: translateY(-2px);
    border-color: #ff6b35;
    color: #ff6b35;
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.2);
}

.preview-actions .btn-outline.active {
    background: linear-gradient(135deg, #f7931e 0%, #e68900 100%);
    border-color: #f7931e;
    color: white;
    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.3);
}

.quantity-selector {
    margin-bottom: 1.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
    justify-content: center;
}

.quantity-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #e9ecef;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    color: #495057;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.quantity-btn:hover {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.quantity-input {
    width: 80px;
    height: 50px;
    text-align: center;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.quantity-input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1), 0 8px 25px rgba(255, 107, 53, 0.2);
    transform: translateY(-1px);
}

.form-select {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1), 0 8px 25px rgba(255, 107, 53, 0.2);
    transform: translateY(-1px);
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    display: block;
}

.product-features {
    margin-top: 2rem;
    background: linear-gradient(135deg, rgba(102,126,234,0.1) 0%, rgba(118,75,162,0.1) 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(102,126,234,0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-features h5 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-features h5::before {
    content: '✨';
    font-size: 1.2rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.features-list li {
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.7);
    border-radius: 10px;
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.5;
    border-left: 3px solid #ff6b35;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.features-list li:hover {
    background: rgba(255,255,255,0.9);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.features-list li strong {
    color: #ff6b35;
    font-weight: 700;
}

/* Notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 1rem 1.5rem;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    border-left: 4px solid #ff6b35;
}

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

.notification-success {
    border-left-color: #28a745;
}

.notification-error {
    border-left-color: #f7931e;
}

.notification-info {
    border-left-color: #17a2b8;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-content i {
    font-size: 1.2rem;
}

.notification-success .notification-content i {
    color: #28a745;
}

.notification-error .notification-content i {
    color: #f7931e;
}

.notification-info .notification-content i {
    color: #17a2b8;
}

.notification-content span {
    font-weight: 500;
    color: #333;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.close {
    color: #aaa;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: #ff6b35;
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    border-left: 4px solid;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-color: #28a745;
}

.alert-error {
    background: #fff3e0;
    color: #b8860b;
    border-color: #f7931e;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border-color: #17a2b8;
}

/* Loading Spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.8rem 0;
    }

    .breadcrumb-list {
        gap: 0.3rem;
    }

    .breadcrumb-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .breadcrumb-separator {
        width: 20px;
        height: 20px;
        font-size: 1rem;
        margin: 0 0.3rem;
    }

    .breadcrumb-current {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 5rem 2rem 2rem;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 1000;
        gap: 2rem;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav a {
        font-size: 1.2rem;
        padding: 1rem 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
    }
    
    .nav a:hover {
        background: #f8f9fa;
        border-radius: 8px;
    }
    
    .user-actions {
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
    }
    
    .user-actions .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .cart-icon, .wishlist-icon {
        padding: 0.4rem;
    }
    
    .cart-count, .wishlist-count {
        width: 16px;
        height: 16px;
        font-size: 0.7rem;
        top: -3px;
        right: -3px;
    }
    
    .dropdown-toggle {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .dropdown-menu {
        min-width: 140px;
        right: -10px;
    }
    
    .dropdown-item {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .logo h1 {
        display: none;
    }
    
    .hero-section {
        height: auto !important;
        min-height: auto !important;
        padding: 120px 0 60px 0 !important;
        overflow: visible !important;
    }
    
    .hero-carousel {
        height: auto !important;
    }
    
    .carousel-container {
        height: auto !important;
    }
    
    .carousel-slide {
        position: relative !important;
        height: auto !important;
    }
    
    .slide-bg {
        height: auto !important;
        padding: 2rem 0 !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
        padding: 0 !important;
        height: auto !important;
        display: block !important;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 200px;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-image-carousel {
        height: 280px !important;
        border-radius: 15px;
        margin: 10px auto 0;
        max-width: 100%;
    }
    
    .image-slide img {
        transform: none;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    
    /* Mobile Hero Stats */
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .hero-stat {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
    }
    
    .hero-stat > span:first-child {
        font-size: 1.2rem;
        margin-bottom: 0;
    }
    
    .hero-stat .stat-label {
        font-size: 0.8rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .header-content {
        padding: 0.75rem 0;
    }
    
    .logo img {
        height: 30px;
        width: 120px;
    }
    
    .user-actions {
        gap: 0.25rem;
    }
    
    .user-actions .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .cart-icon, .wishlist-icon {
        padding: 0.3rem;
    }
    
    .cart-count, .wishlist-count {
        width: 14px;
        height: 14px;
        font-size: 0.65rem;
        top: -2px;
        right: -2px;
    }
    
    .dropdown-toggle {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .dropdown-menu {
        min-width: 120px;
        right: -15px;
    }
    
    .dropdown-item {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .mobile-menu-toggle {
        width: 25px;
        height: 25px;
    }
    
    .mobile-menu-toggle span {
        height: 2px;
    }
    
    .hero-section {
        height: auto !important;
        min-height: auto !important;
        padding: 20px 0 20px 0 !important;
        overflow: visible !important;
    }
    
    .hero-carousel {
        height: auto !important;
    }
    
    .carousel-container {
        height: auto !important;
    }
    
    .carousel-slide {
        position: relative !important;
        height: auto !important;
    }
    
    .slide-bg {
        height: auto !important;
        padding: 2rem 0 !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
        padding: 0 !important;
        height: auto !important;
        display: block !important;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .hero-image img {
        transform: none;
        max-width: 85%;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    
    .hero-image-carousel {
        height: 280px !important;
        border-radius: 15px;
        max-width: 100%;
    }
    
    .image-slide img {
        transform: none;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    
    .carousel-slide img {
        height: 250px;
    }
    
    .carousel-content h3 {
        font-size: 1.5rem;
    }
    
    .carousel-content p {
        font-size: 1rem;
    }
    
    .products-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .product-card {
        border-radius: 12px !important;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease !important;
        background: white !important;
    }
    
    .product-card:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 8px 25px rgba(0,0,0,0.12) !important;
    }
    
    .product-image img {
        height: 160px !important;
        object-fit: cover;
    }
    
    .product-info {
        padding: 0.8rem !important;
    }
    
    .product-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
        border-radius: 15px;
        top: 8px;
        left: 8px;
    }
    
    .product-card .product-actions {
        top: 8px;
        right: 8px;
        gap: 0.3rem;
    }
    
    .action-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .product-name {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.5rem !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .product-price {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.2rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .current-price {
        font-size: 1rem !important;
        font-weight: 700 !important;
        color: #2c3e50 !important;
        line-height: 1.2 !important;
    }
    
    .original-price {
        font-size: 0.8rem !important;
        color: #95a5a6 !important;
        text-decoration: line-through !important;
        line-height: 1.2 !important;
    }
    
    .product-description {
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
        color: #666 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .product-rating {
        display: flex;
        align-items: center;
        gap: 0.2rem;
        margin-bottom: 0.5rem;
    }
    
    .stars {
        color: #f39c12;
        font-size: 0.8rem;
    }
    
    .rating-text {
        font-size: 0.7rem;
        color: #7f8c8d;
    }
    
    .product-actions {
        display: flex;
        gap: 0.3rem;
        margin-top: 0.5rem;
    }
    
    .btn {
        flex: 1;
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        border-radius: 6px;
    }
    
    .product-image {
        cursor: pointer;
    }
    
    .product-name {
        cursor: pointer;
        transition: color 0.3s ease;
    }
    
    .product-name:hover {
        color: #ff6b35;
    }
    
    .categories-section {
        padding: 3rem 0;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category-card {
        padding: 1.5rem 1rem;
        text-align: center;
        border-radius: 15px;
        background: white;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-decoration: none;
        color: inherit;
    }
    
    .category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        text-decoration: none;
        color: inherit;
    }
    
    .category-image {
        width: 70px;
        height: 70px;
        margin: 0 auto 1rem;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .category-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .category-name {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #333;
    }
    
    .category-count {
        font-size: 0.85rem;
        color: #6c757d;
    }
    
    .modal-content {
        margin: 1% auto;
        width: 98%;
        max-height: 98vh;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }
    
    .modal-header .close {
        right: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 1.5rem;
        max-height: calc(98vh - 80px);
    }
    
    .preview-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .preview-image {
        min-height: 250px;
        padding: 1rem;
        border-radius: 12px;
    }
    
    .preview-image img {
        max-height: 200px;
    }
    
    .preview-info {
        padding: 2rem 1.5rem;
        min-height: auto;
        border-radius: 15px;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    
    .preview-info::before {
        display: none;
    }
    
    .preview-info h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .preview-info .price {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .preview-info .original-price {
        font-size: 1.1rem;
        margin-left: 0.5rem;
    }
    
    .preview-info .description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .preview-info .form-label {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .preview-info .form-select {
        font-size: 0.95rem;
        padding: 0.8rem;
    }
    
    .preview-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .preview-actions .btn {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
        border-radius: 15px;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    .quantity-controls {
        justify-content: center;
        gap: 1rem;
    }
    
    .quantity-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        border-radius: 15px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }
    
    .quantity-input {
        width: 90px;
        height: 50px;
        font-size: 1.2rem;
        border-radius: 15px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }
    
    .form-select {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 15px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        border: 2px solid #e9ecef;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    }
    
    .product-features {
        padding: 1.5rem;
        margin-top: 1.5rem;
        border-radius: 15px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }
    
    .product-features h5 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
    }
    
    .features-list li {
        padding: 0.8rem;
        font-size: 0.95rem;
        border-radius: 10px;
        margin-bottom: 0.5rem;
        background: rgba(255,255,255,0.7);
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    
    .notification {
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
        border-radius: 15px;
        padding: 1rem;
    }
    
    .notification.show {
        transform: translateY(0);
    }
    
    .notification-content {
        gap: 0.5rem;
    }
    
    .notification-content i {
        font-size: 1.1rem;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .features-section {
        padding: 3rem 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
        text-align: center;
        border-radius: 15px;
        background: white;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin: 0 auto 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        color: #333;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.4;
        color: #6c757d;
    }
    
    /* Mobile-specific improvements */
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .form-input, .form-select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .product-actions {
        opacity: 1; /* Always show on mobile */
    }
    
    .action-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    /* Footer Mobile Optimization */
    .footer {
        padding: 2rem 0 1rem;
        margin-top: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        flex: none;
        min-width: auto;
        padding: 1rem 0;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-logo img {
        height: 35px;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .social-links {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
.social-link:hover {
    background: #ff6b35;
    transform: translateY(-2px);
}
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        color: #333;
    }
    
    .footer-section ul {
        list-style: none;
        padding: 0;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
        color: #666;
        transition: color 0.3s ease;
    }
    
    .footer-section ul li a:hover {
        color: #ff6b35;
    }
    
    .contact-info p {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-info i {
        color: #ff6b35;
        width: 16px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        margin: 0;
    }
    
    .footer-links {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
        margin-top: 1rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
        color: #666;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        padding: 0.4rem 0.8rem;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-links a:hover {
        color: #ffffff;
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        border-color: #ff6b35;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
    }
    
    .footer-links a:active {
        transform: translateY(0);
    }
    
    /* New sections mobile styles */
    .stats-section {
        padding: 3rem 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
        padding-left: 1.5rem;
    }
    
    .quote-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: -8px;
        left: -8px;
    }
    
    
    .partners-section {
        padding: 3rem 0;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .partner-item {
        padding: 1rem;
    }
    
    .news-section {
        padding: 3rem 0;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-card {
        border-radius: 15px;
    }
    
    .news-image {
        height: 180px;
    }
    
    .news-icon {
        height: 180px;
    }
    
    .news-icon i {
        font-size: 3rem;
    }
    
    .news-content {
        padding: 1.5rem;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 0.8rem;
    }
    
    .news-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .news-excerpt {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .newsletter-section {
        padding: 3rem 0;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        text-align: left;
    }
    
    .newsletter-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .newsletter-text p {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 0;
    }
    
    .newsletter-form {
        padding: 1.5rem 1rem;
        margin-top: 0;
    }
    
    .subscribe-form .form-group {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .subscribe-form .form-input {
        padding: 0.7rem 0.8rem;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .subscribe-form .btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        border-radius: 8px;
        width: 100%;
        justify-content: center;
    }
    
    .newsletter-benefits {
        gap: 0.4rem;
        margin-top: 0.8rem;
    }
    
    .benefit-item {
        font-size: 0.8rem;
        justify-content: flex-start;
        padding: 0.3rem 0;
    }
    
    .benefit-item i {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 0px 0 40px 0 ;
    }
    
    .slide-bg {
        padding: 1.5rem 0 !important;
    }
    
    .hero-content {
        gap: 1.5rem !important;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .hero-buttons .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-image img {
        max-width: 90%;
    }
    
    .hero-image-carousel {
        height: 220px !important;
    }
    
    .image-slide img {
        transform: none;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }
    
    .features-section {
        padding: 2.5rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.25rem 1rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .feature-card h3 {
        font-size: 1rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
    
    .products-section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
    }
    
    .product-image img {
        height: 140px !important;
    }
    
    .product-info {
        padding: 0.6rem !important;
    }
    
    .product-badge {
        padding: 0.2rem 0.5rem;
        font-size: 0.6rem;
        border-radius: 12px;
        top: 6px;
        left: 6px;
    }
    
    .product-card .product-actions {
        top: 6px;
        right: 6px;
        gap: 0.2rem;
    }
    
    .action-btn {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
    
    .product-name {
        font-size: 0.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.4rem !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .product-price {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start;
        gap: 0.1rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .current-price {
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        color: #2c3e50 !important;
        line-height: 1.2 !important;
    }
    
    .original-price {
        font-size: 0.7rem !important;
        color: #95a5a6 !important;
        text-decoration: line-through !important;
        line-height: 1.2 !important;
    }
    
    .product-description {
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
        color: #666 !important;
        margin-bottom: 0.4rem !important;
    }
    
    .product-rating {
        gap: 0.1rem;
        margin-bottom: 0.4rem;
    }
    
    .stars {
        font-size: 0.7rem;
    }
    
    .rating-text {
        font-size: 0.6rem;
    }
    
    .btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
        border-radius: 5px;
    }
    
    .categories-section {
        padding: 2.5rem 0;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-card {
        padding: 1.25rem 1rem;
    }
    
    .category-image {
        width: 60px;
        height: 60px;
    }
    
    .category-name {
        font-size: 0.95rem;
    }
    
    .category-count {
        font-size: 0.8rem;
    }
    
    /* Footer Small Screen Optimization */
    .footer {
        padding: 1.5rem 0 1rem;
        margin-top: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section {
        flex: none;
        min-width: auto;
        padding: 0.8rem 0;
    }
    
    .footer-logo img {
        height: 30px;
    }
    
    .footer-section p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-section ul li a {
        font-size: 0.8rem;
    }
    
    .contact-info p {
        font-size: 0.8rem;
        gap: 0.3rem;
    }
    
    .contact-info i {
        width: 14px;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
    
    .footer-links {
        gap: 1rem;
        margin-top: 0.8rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        border-radius: 15px;
    }
    
    /* New sections small screen styles */
    .stats-section {
        padding: 2.5rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.25rem 1rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .testimonials-section {
        padding: 2.5rem 0;
    }
    
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
        padding-left: 1rem;
    }
    
    .quote-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        top: -6px;
        left: -6px;
    }
    
    
    
    .partners-section {
        padding: 2.5rem 0;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .partner-item {
        padding: 0.8rem;
    }
    
    .news-section {
        padding: 2.5rem 0;
    }
    
    .news-image {
        height: 160px;
    }
    
    .news-icon {
        height: 160px;
    }
    
    .news-icon i {
        font-size: 2.5rem;
    }
    
    .news-content {
        padding: 1.25rem;
    }
    
    .news-title {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .news-excerpt {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .news-link {
        font-size: 0.85rem;
    }
    
    .newsletter-section {
        padding: 2.5rem 0;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .newsletter-text h2 {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
        line-height: 1.2;
    }
    
    .newsletter-text p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .newsletter-form {
        padding: 1rem 0.8rem;
        margin-top: 0;
    }
    
    .subscribe-form .form-group {
        gap: 0.6rem;
        margin-bottom: 0.8rem;
    }
    
    .subscribe-form .form-input {
        padding: 0.6rem 0.7rem;
        font-size: 16px;
        border-radius: 6px;
    }
    
    .subscribe-form .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        border-radius: 6px;
    }
    
    .newsletter-benefits {
        gap: 0.3rem;
        margin-top: 0.6rem;
    }
    
    .benefit-item {
        font-size: 0.7rem;
        gap: 0.4rem;
        padding: 0.2rem 0;
        justify-content: flex-start;
    }
    
    .benefit-item i {
        font-size: 0.7rem;
    }
}

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

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

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

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

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

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Statistics Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

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

.testimonial-content {
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin: 0;
    padding-left: 2rem;
}





/* Partners Section */
.partners-section {
    padding: 4rem 0;
    background: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.partner-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.partner-item img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* News Section */
.news-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.news-icon {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.news-icon i {
    font-size: 4rem;
    color: #ff6b35;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.news-card:hover .news-icon i {
    transform: scale(1.1);
    opacity: 1;
}

.news-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.news-content {
    padding: 2rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-meta i {
    color: #ff6b35;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.4;
}

.news-excerpt {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: #f7931e;
    transform: translateX(5px);
}

.news-link i {
    transition: transform 0.3s ease;
}

.news-link:hover i {
    transform: translateX(3px);
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="newsletter-dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23newsletter-dots)"/></svg>');
    opacity: 0.3;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.newsletter-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.subscribe-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.subscribe-form .form-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.subscribe-form .form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.subscribe-form .form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.subscribe-form .btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.subscribe-form .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.benefit-item i {
    color: #28a745;
    font-size: 1rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* Mobile decorations optimization */
@media (max-width: 768px) {
    /* Hide some decorations on mobile for performance */
    .hero-decorations {
        display: none;
    }
    
    .hero-section::before {
        background: 
            radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    }
    
    .hero-section::after {
        opacity: 0.2;
    }
}

/* Phone Input Styles */
.phone-input-container {
    display: flex;
    align-items: center;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: white;
    transition: all 0.3s ease;
    overflow: hidden;
}

.phone-input-container:focus-within {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.phone-prefix {
    background: #f8f9fa;
    color: #6c757d;
    padding: 1rem;
    font-weight: 600;
    font-size: 1rem;
    border-right: 1px solid #e9ecef;
    min-width: 60px;
    text-align: center;
    user-select: none;
}

.phone-input {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding-left: 1rem;
    flex: 1;
}

.phone-input:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Responsive phone input */
@media (max-width: 768px) {
    .phone-prefix {
        min-width: 50px;
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .phone-input {
        padding-left: 0.8rem;
    }
}
