* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette from Image */
    --color-white: #ffffff;
    --color-dark-blue: #1a1a2e;
    --color-navy-blue: #16213e;
    --color-teal-blue: #0f3460;
    --color-sky-blue: #4a90e2;
    
    /* Legacy colors for compatibility */
    --primary-color: #e74c3c;
    --primary-dark: #c0392b;
    --secondary-color: #27ae60;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    --gradient-secondary: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    --gradient-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    padding-top: 80px;
}

body.admin-body {
    padding-top: 20px;
    background: linear-gradient(135deg, #e8f0f8 0%, #d4e4f0 100%);
}

body[dir="rtl"] {
    direction: rtl;
}

body[dir="rtl"] .nav-container {
    flex-direction: row-reverse;
}

body[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

body[dir="rtl"] .breadcrumbs {
    flex-direction: row-reverse;
}

body[dir="rtl"] .contact-item {
    flex-direction: row-reverse;
}

body[dir="rtl"] .features-list li {
    padding-right: 40px;
    padding-left: 20px;
}

body[dir="rtl"] .features-list li:before {
    left: auto;
    right: 15px;
}

/* Top Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-dark-blue);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    padding: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
}

.logo-section .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h1 {
    font-size: 32px;
    color: var(--color-sky-blue);
    font-weight: 800;
    margin: 0;
}

.logo h2 {
    font-size: 20px;
    color: var(--color-white);
    font-weight: 600;
    margin: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: var(--color-white);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: var(--color-teal-blue);
    color: var(--color-white);
}

.nav-link i {
    font-size: 16px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-navy-blue);
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 5px;
    z-index: 1001;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background: var(--color-teal-blue);
    padding-left: 25px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-switcher {
    display: flex;
    gap: 5px;
    background: var(--color-navy-blue);
    padding: 5px;
    border-radius: 8px;
}

.lang-btn {
    padding: 8px 15px;
    background: transparent;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-btn.active {
    background: var(--color-teal-blue);
}

.lang-btn:hover {
    background: var(--color-teal-blue);
}

.admin-btn {
    padding: 10px 20px;
    background: var(--color-sky-blue);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.admin-btn:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background: linear-gradient(135deg, var(--color-teal-blue) 0%, var(--color-navy-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: var(--color-white);
    padding: 40px;
    max-width: 800px;
}

.slide-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: var(--color-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.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: var(--color-white);
    transform: scale(1.2);
}

/* Main Content */
.main-content-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
}

.header-top {
    background: var(--color-white);
    padding: 25px 30px;
    margin-bottom: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-info h2 {
    font-size: 28px;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.location-info i {
    color: var(--secondary-color);
}

.gst-info {
    font-size: 12px;
    color: var(--text-secondary);
}

.contact-buttons {
    display: flex;
    gap: 12px;
}

.content-wrapper {
    margin-top: 20px;
}

.breadcrumbs {
    margin-bottom: 25px;
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.content-box {
    background: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-box h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-teal-blue) 0%, var(--color-sky-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-box h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 700;
}

.content-box p {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 16px;
}

/* Product Grid with Color Palette */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.product-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
    position: relative;
}

.product-card:nth-child(1) {
    border-color: var(--color-white);
    box-shadow: 0 0 0 2px var(--color-white), var(--shadow-lg);
}

.product-card:nth-child(2) {
    border-color: var(--color-dark-blue);
}

.product-card:nth-child(3) {
    border-color: var(--color-navy-blue);
}

.product-card:nth-child(4) {
    border-color: var(--color-teal-blue);
}

.product-card:nth-child(5) {
    border-color: var(--color-sky-blue);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card-body {
    padding: 25px;
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-card h3 i {
    color: var(--color-sky-blue);
}

.product-card .price {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-teal-blue);
    margin-bottom: 20px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-teal-blue) 0%, var(--color-sky-blue) 100%);
    color: var(--color-white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Contact Page */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-details {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-item .icon {
    font-size: 32px;
    min-width: 40px;
    text-align: center;
    color: var(--color-sky-blue);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-sky-blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.phone-input {
    display: flex;
    gap: 12px;
}

/* Product Detail */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.main-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.thumbnail {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail.active {
    border-color: var(--color-sky-blue);
}

.specifications-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.specifications-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.specifications-table td:first-child {
    font-weight: 700;
    width: 40%;
    color: var(--text-primary);
    background: var(--bg-light);
}

.features-list {
    list-style: none;
    margin: 25px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.features-list li {
    padding: 12px 20px;
    padding-left: 40px;
    position: relative;
    background: var(--bg-light);
    border-radius: 10px;
    font-weight: 500;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 15px;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 18px;
}

/* Admin Link */
.admin-link {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--color-teal-blue) 0%, var(--color-sky-blue) 100%);
    color: var(--color-white);
    padding: 18px 28px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

body[dir="rtl"] .admin-link {
    right: auto;
    left: 30px;
}

/* Login Page */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-teal-blue) 0%, var(--color-navy-blue) 100%);
    padding: 20px;
}

.login-box {
    background: var(--color-white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 450px;
}

.login-box h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 800;
    text-align: center;
}

.error-message {
    background: #fee;
    color: var(--primary-color);
    padding: 12px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    border-left: 4px solid var(--primary-color);
}

/* Admin Panel Styles */
.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--color-white);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    animation: slideInRight 0.3s ease;
    border-left: 4px solid var(--color-sky-blue);
}

.toast.success {
    border-left-color: var(--secondary-color);
}

.toast.error {
    border-left-color: var(--primary-color);
}

.toast.warning {
    border-left-color: #ffc107;
}

.toast i {
    font-size: 20px;
}

.toast.success i {
    color: var(--secondary-color);
}

.toast.error i {
    color: var(--primary-color);
}

.toast.warning i {
    color: #ffc107;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Admin Header */
.admin-header {
    background: linear-gradient(135deg, var(--color-teal-blue) 0%, var(--color-navy-blue) 100%);
    color: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-lg);
}

.admin-header-content {
    margin-bottom: 30px;
}

.admin-title-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.admin-title-section i {
    font-size: 48px;
    opacity: 0.9;
}

.admin-title-section h1 {
    font-size: 36px;
    font-weight: 800;
    margin: 0;
    color: var(--color-white);
}

.admin-title-section p {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
}

.admin-subtitle {
    font-size: 16px;
    opacity: 0.85;
    margin: 0;
}

.admin-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.admin-nav-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.admin-nav-link.active {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.admin-nav-link-secondary {
    background: rgba(255, 255, 255, 0.2);
}

.admin-nav-link-danger {
    background: rgba(231, 76, 60, 0.8);
}

.admin-nav-link-danger:hover {
    background: rgba(231, 76, 60, 1);
}

/* Admin Section */
.admin-section {
    background: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
    animation: fadeIn 0.5s ease;
}

.section-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-header h2 i {
    color: var(--color-sky-blue);
}

.section-description {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

/* Form Cards */
.form-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.form-group label i {
    color: var(--color-sky-blue);
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-sky-blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.readonly-input {
    background-color: #f5f5f5 !important;
    cursor: not-allowed;
}

.form-hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-secondary);
    font-style: italic;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #e0e0e0;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-teal-blue) 0%, var(--color-sky-blue) 100%);
    color: var(--color-white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: #6c757d;
    color: var(--color-white);
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-success {
    background: var(--secondary-color);
    color: var(--color-white);
}

.btn-success:hover {
    background: #229954;
    transform: translateY(-2px);
}

.btn-edit {
    background: var(--color-sky-blue);
    color: var(--color-white);
}

.btn-edit:hover {
    background: #357abd;
}

.btn-danger {
    background: var(--primary-color);
    color: var(--color-white);
}

.btn-danger:hover {
    background: var(--primary-dark);
}

.btn-small {
    padding: 8px 16px;
    font-size: 12px;
}

/* Table Cards */
.table-card {
    background: var(--color-white);
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--bg-light);
    border-bottom: 2px solid #e0e0e0;
}

.table-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-header h3 i {
    color: var(--color-sky-blue);
}

.table-count {
    background: var(--color-sky-blue);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    background: var(--bg-light);
    padding: 16px 20px;
    text-align: left;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e0e0e0;
}

.admin-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-primary);
}

.admin-table tbody tr {
    transition: all 0.2s ease;
}

.admin-table tbody tr:hover {
    background: var(--bg-light);
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

/* Info Cards */
.info-card {
    margin-top: 30px;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-left: 4px solid;
}

.info-card-warning {
    background: #fff3cd;
    border-left-color: #ffc107;
    color: #856404;
}

.info-card-warning i {
    color: #ffc107;
    font-size: 20px;
    margin-top: 2px;
}

.info-card strong {
    display: block;
    margin-bottom: 5px;
}

.info-card code {
    background: rgba(0, 0, 0, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-dark-blue);
        flex-direction: column;
        padding: 20px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .slide-content h1 {
        font-size: 32px;
    }
    
    .contact-container,
    .product-detail {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    /* Admin Panel Responsive */
    .admin-container {
        padding: 15px;
    }
    
    .admin-header {
        padding: 25px 20px;
    }
    
    .admin-title-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .admin-title-section i {
        font-size: 36px;
    }
    
    .admin-title-section h1 {
        font-size: 28px;
    }
    
    .admin-nav {
        flex-direction: column;
        gap: 8px;
    }
    
    .admin-nav-link {
        justify-content: center;
    }
    
    .admin-section {
        padding: 25px 20px;
    }
    
    .form-card {
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .table-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .table-wrapper {
        overflow-x: scroll;
    }
    
    .admin-table {
        min-width: 600px;
    }
    
    .toast {
        min-width: calc(100% - 40px);
        right: 20px;
        left: 20px;
    }
}
