/* =============================================
/* == Green option - Brand Theme RTL == */
/* ============================================= */
/* Brand Colors:
 * Green: #3c8039
 * Red: #de2829
 * Gray: #666666
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Brand Colors */
    --brand-green: #3c8039;
    --brand-green-dark: #2d6b2b;
    --brand-green-light: #4a9d47;
    --brand-red: #de2829;
    --brand-red-dark: #b91c1c;
    --brand-red-light: #ef4444;
    --brand-gray: #666666;
    --brand-gray-dark: #4a4a4a;
    --brand-gray-light: #888888;
    
    /* Theme Colors Based on Brand */
    --primary-color: #1a1a1a;
    --secondary-color: #3c8039;
    --accent-color: #de2829;
    --text-color: #333333;
    --text-muted: #666666;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --card-shadow: 0 4px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    /* Amazon-style variables */
    --primary: #1a1a1a;
    --primary-dark: #0f0f0f;
    --primary-light: #2d2d2d;
    --accent: #3c8039;
    --accent-hover: #4a9d47;
    --accent-dark: #2d6b2b;
    --success: #3c8039;
    --success-light: #d1fae5;
    --danger: #de2829;
    --warning: #b91c1c;
    --info: #3c8039;
    
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --bg-card: #fdfdfd;
    --border-color: #e5e5e5;
    --border-light: #f0f0f0;
    
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #666666;
    --text-light: #888888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f5f5f5;
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Header Styles === */
header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.logo i {
    margin-left: 10px;
    color: var(--brand-green);
}

.logo span {
    color: var(--brand-red);
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-right: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-green);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--brand-green);
}

/* Language Switcher Styling */
.lang-switcher-dropdown .btn-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
}
.lang-switcher-dropdown .dropdown-menu {
    right: 0 !important;
    left: auto !important;
}

/* === Hero Section === */
.hero {
    background: linear-gradient(rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.85)), 
                url('https://picsum.photos/seed/engineoil/1920/800.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(60, 128, 57, 0.2), transparent);
    animation: shimmer 8s infinite;
}

@keyframes shimmer {
    0% { right: -100%; }
    100% { right: 100%; }
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-block;
    background-color: var(--brand-green);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
    box-shadow: 0 4px 15px rgba(60, 128, 57, 0.3);
}

.btn:hover {
    background-color: var(--brand-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(60, 128, 57, 0.4);
    color: white;
}

.btn-red {
    background-color: var(--brand-red);
    box-shadow: 0 4px 15px rgba(222, 40, 41, 0.3);
}

.btn-red:hover {
    background-color: var(--brand-red-dark);
    box-shadow: 0 6px 20px rgba(222, 40, 41, 0.4);
}

/* === Section Styles === */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-red));
    border-radius: 2px;
}

/* === About Section === */
.about {
    background-color: white;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.03);
}

/* === Specifications Section === */
.specifications {
    background-color: var(--light-bg);
}

.spec-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.spec-card {
    background-color: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-red));
}

.spec-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.spec-card i {
    font-size: 48px;
    color: var(--brand-green);
    margin-bottom: 20px;
}

.spec-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.spec-card p {
    color: var(--brand-gray);
    line-height: 1.6;
}

/* === Products Section === */
.products {
    background-color: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-header {
    background: linear-gradient(135deg, var(--primary-color), #2d2d2d);
    color: white;
    padding: 20px;
    position: relative;
}

.product-header h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.product-header .product-type {
    font-size: 14px;
    opacity: 0.9;
    color: var(--brand-green);
}

.product-image {
    height: 200px;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
}

.product-description {
    margin-bottom: 20px;
    color: var(--brand-gray);
    line-height: 1.6;
}

.product-specs-mini {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    border-right: 3px solid var(--brand-green);
}

.product-specs-mini h6 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--brand-green-dark);
}

.product-specs-mini ul li {
    margin-bottom: 5px;
    line-height: 1.4;
}

.product-specs-mini ul li strong {
    color: #343a40;
}

/* === Facility Section === */
.facility {
    background-color: var(--light-bg);
}

.facility-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.facility-text {
    flex: 1;
}

.facility-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.facility-image {
    flex: 1;
}

.facility-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.facility-image img:hover {
    transform: scale(1.03);
}

.certification {
    display: inline-block;
    background-color: var(--brand-green);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    margin-top: 15px;
    font-weight: 600;
}

/* === World Market Section === */
.world-market {
    background-color: white;
}

.market-stats {
    text-align: center;
    margin-bottom: 50px;
}

.market-stats h2 {
    font-size: 42px;
    color: var(--brand-green);
    margin-bottom: 10px;
}

.market-regions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.region-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border-top: 4px solid var(--brand-green);
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.region-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.region-card h3 i {
    margin-right: 10px;
    color: var(--brand-red);
}

.region-card ul {
    list-style: none;
}

.region-card ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--brand-gray);
}

.region-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--brand-green);
}

/* === Footer === */
footer {
    background: linear-gradient(135deg, var(--dark-bg), #0f0f0f);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-red));
}

.footer-column p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--brand-green);
    transform: translateX(-5px);
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-left: 10px;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--brand-green);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: #999;
}

/* === Responsive Styles === */
@media (max-width: 992px) {
    .about-content, .facility-content {
        flex-direction: column;
    }
    .about-text, .about-image, .facility-text, .facility-image {
        flex: 1;
        width: 100%;
    }
    .hero h1 { font-size: 36px; }
    .section-title { font-size: 28px; }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    nav ul {
        margin-top: 20px;
        justify-content: center;
    }
    nav ul li {
        margin: 0 10px;
    }
    .hero h1 { font-size: 28px; }
    .hero p { font-size: 16px; }
    .product-grid { grid-template-columns: 1fr; }
    .spec-cards { grid-template-columns: 1fr; }
}

/* ========================================
   Green option - Frontend Shop Style
   Amazon-Inspired Design with Brand Colors
   ======================================== */

/* Site Header */
.site-header {
    background: var(--primary-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--primary-dark);
    padding: 10px 20px;
}

.header-main {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 10px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
}

.logo:hover {
    text-decoration: none;
    color: #fff;
}

.logo i {
    color: var(--brand-green);
    font-size: 28px;
}

.logo span {
    color: var(--brand-red);
}

/* Search Bar */
.search-bar {
    flex: 1;
    max-width: 800px;
    display: flex;
    border-radius: 4px;
    overflow: hidden;
}

.search-category {
    background: #e6e6e6;
    border: none;
    padding: 0 15px;
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 4px 0 0 4px;
}

.search-input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 15px;
    outline: none;
}

.search-btn {
    background: var(--brand-green);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    font-size: 20px;
    color: #fff;
    transition: background 0.2s ease;
}

.search-btn:hover {
    background: var(--brand-green-dark);
}

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-icon {
    color: #fff;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    position: relative;
}

.header-icon:hover {
    border: 1px solid rgba(255,255,255,0.3);
    text-decoration: none;
    color: #fff;
}

.header-icon .label {
    font-size: 12px;
    opacity: 0.8;
}

.header-icon .value {
    font-size: 14px;
    font-weight: 700;
}

.header-icon .cart-count {
    position: absolute;
    top: 0;
    left: 5px;
    background: var(--brand-red);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    min-width: 22px;
    height: 22px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Nav Bar */
.nav-bar {
    background: var(--primary-light);
    padding: 8px 20px;
}

.nav-main {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(60, 128, 57, 0.3);
    text-decoration: none;
    color: var(--brand-green);
}

.nav-link i {
    margin-left: 5px;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.hero-content {
    color: #fff;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-green);
    color: #fff;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hero-btn:hover {
    background: var(--brand-green-dark);
    text-decoration: none;
    color: #fff;
}

.hero-btn.red {
    background: var(--brand-red);
}

.hero-btn.red:hover {
    background: var(--brand-red-dark);
}

/* Main Content */
.main-container {
    max-width: 1500px;
    margin: -60px auto 40px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Products Section */
.products-section {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.section-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--brand-green);
}

.view-all {
    color: var(--brand-green);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all:hover {
    color: var(--brand-green-dark);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 15px;
    transition: all 0.2s ease;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.product-card.on-sale {
    border-color: var(--brand-red);
}

.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--brand-red);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    z-index: 5;
}

.product-image {
    width: 100%;
    height: 200px;
    background: #f7f7f7;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-title {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    height: 40px;
}

.product-title a {
    color: inherit;
    text-decoration: none;
}

.product-title a:hover {
    color: var(--brand-green);
}

.product-brand {
    font-size: 12px;
    color: var(--brand-gray);
    margin-bottom: 8px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.stars {
    color: var(--brand-green);
    font-size: 13px;
}

.rating-count {
    font-size: 12px;
    color: var(--brand-green);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-green-dark);
}

.current-price .currency {
    font-size: 14px;
    font-weight: 400;
}

.original-price {
    font-size: 14px;
    color: var(--brand-gray);
    text-decoration: line-through;
}

.discount-percent {
    background: var(--brand-red);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.product-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.add-to-cart-btn {
    flex: 1;
    background: var(--brand-green);
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.add-to-cart-btn:hover {
    background: var(--brand-green-dark);
}

.wishlist-btn {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-color);
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-gray);
    transition: all 0.2s ease;
}

.wishlist-btn:hover {
    color: var(--brand-red);
    border-color: var(--brand-red);
}

/* Site Footer */
.site-footer {
    background: var(--primary);
    color: #fff;
    margin-top: 40px;
}

.footer-top {
    padding: 40px 20px;
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-column h4::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-red));
    margin-top: 10px;
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: var(--brand-green);
    text-decoration: none;
}

.footer-bottom {
    background: var(--primary-dark);
    padding: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.8;
}

/* Alerts */
.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid var(--brand-green);
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid var(--brand-red);
}

.alert-warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fcd34d;
}

.alert-info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid var(--brand-green-light);
}

/* Buttons */
.btn-primary {
    background: var(--brand-green);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: var(--brand-green-dark);
    color: #fff;
}

.btn-danger {
    background: var(--brand-red);
    color: #fff;
}

.btn-danger:hover {
    background: var(--brand-red-dark);
    color: #fff;
}

/* Badges */
.badge-success {
    background: var(--brand-green);
}

.badge-danger {
    background: var(--brand-red);
}

/* Responsive */
@media (max-width: 992px) {
    .header-main {
        flex-wrap: wrap;
    }
    
    .search-bar {
        order: 3;
        width: 100%;
        max-width: none;
        margin-top: 10px;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .hero-banner {
        height: 300px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 20px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
}