/* ==========================================================================
   Skyrock Spices - Modern Luxury Design System
   Color Theme: Rich Crimson Red (#9E1B1B), Warm Amber (#E88D14), Spice Gold (#D4A373)
   ========================================================================== */

:root {
    --primary: #9E1B1B;
    --primary-dark: #7A1212;
    --primary-light: #C83E17;
    --accent: #E88D14;
    --accent-gold: #D4A373;
    --bg-main: #FFFBF7;
    --bg-card: #FFFFFF;
    --bg-secondary: #F7F1E5;
    --text-dark: #1A1D20;
    --text-muted: #6C757D;
    --text-light: #FFFFFF;
    --border-color: #E9ECEF;
    --veg-green: #27AE60;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 16px 36px rgba(158, 27, 27, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-heading: 'Outfit', 'Segoe UI', sans-serif;
    --font-body: 'Poppins', 'Segoe UI', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    outline: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

/* ==========================================================================
   Announcement Bar & Header
   ========================================================================== */

.announcement-bar {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 8px 0;
    position: relative;
    z-index: 101;
}

.announcement-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.announcement-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.announcement-contact {
    display: flex;
    align-items: center;
    gap: 18px;
}

.announcement-contact a {
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 6px;
}

.announcement-contact a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-links a {
    color: var(--text-light);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* Header & Navbar */
.site-header {
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    text-decoration: none;
}

.brand-logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
    padding: 0;
    margin: 0;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-link {
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--text-dark);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.search-box {
    position: relative;
    width: 220px;
}

.search-box input {
    width: 100%;
    padding: 8px 36px 8px 14px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    font-size: 0.88rem;
}

.search-box i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.admin-badge-btn {
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(232, 141, 20, 0.3);
}

.admin-badge-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(232, 141, 20, 0.4);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    color: var(--text-dark);
}

/* ==========================================================================
   Hero Banner Section
   ========================================================================== */

.hero-section {
    position: relative;
    background: radial-gradient(circle at 70% 30%, #FFF3E0 0%, #FBE9E7 40%, var(--bg-main) 100%);
    padding: 60px 0 80px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h5 {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary);
    position: relative;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    transform: translateY(-3px);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    text-align: center;
}

.hero-banner-img {
    max-height: 480px;
    margin: 0 auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
    border-radius: 20px;
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: float 4s ease-in-out infinite;
}

.badge-1 { top: 10%; left: 0%; }
.badge-2 { bottom: 12%; right: 5%; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Value Highlights / Features Strip */
.features-strip {
    background: white;
    padding: 30px 0;
    box-shadow: var(--shadow-sm);
    margin-top: -30px;
    position: relative;
    z-index: 10;
    border-radius: var(--radius-md);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 16px;
    border-right: 1px solid var(--border-color);
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #FFF3E0;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.feature-info h4 {
    font-size: 1rem;
    font-weight: 700;
}

.feature-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Category & Product Section
   ========================================================================== */

.section-padding {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h5 {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-dark);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 26px;
    border-radius: 25px;
    background: white;
    border: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(158, 27, 27, 0.25);
}

/* Product Cards Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(158, 27, 27, 0.2);
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--veg-green);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
}

.discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    z-index: 2;
}

.product-img-wrapper {
    position: relative;
    padding: 20px;
    background: #FFFFFF;
    text-align: center;
    overflow: hidden;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-wrapper img {
    max-height: 210px;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.hindi-title {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.product-subtitle {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.weight-selector {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.weight-opt {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-main);
    color: var(--text-muted);
    font-weight: 600;
}

.weight-opt.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.product-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.price-box, .detail-price-box, .discount-badge {
    display: none !important;
}

.footer-developed {
    font-size: 0.85rem;
    color: #A0AEC0;
}

.footer-developed a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: underline;
    transition: var(--transition);
}

.footer-developed a:hover {
    color: white;
}

/* Platform Buy Options Styling */
.buy-links-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    color: white;
}

.btn-buy-flipkart { background: #2874f0; }
.btn-buy-amazon { background: #FF9900; color: #111; }
.btn-buy-amazon:hover { color: #111; }
.btn-buy-whatsapp { background: #25D366; }
.btn-buy-jiomart { background: #008ECC; }
.btn-buy-meesho { background: #F43397; }
.btn-buy-custom { background: var(--primary); }

.card-buy-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.card-buy-btn {
    flex: 1;
    padding: 8px 12px;
    font-size: 0.82rem;
    border-radius: 20px;
    text-align: center;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: white;
}

/* ==========================================================================
   Product Detail Page Layout
   ========================================================================== */

.product-detail-container {
    padding: 50px 0 80px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image-box {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main-image-box img {
    max-height: 380px;
    object-fit: contain;
}

.detail-info h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.detail-hindi {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 12px;
}

.detail-tagline {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.detail-price-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.detail-current-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.detail-original-price {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.detail-save-badge {
    background: #E8F5E9;
    color: #2E7D32;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pack-size-selector {
    margin-bottom: 24px;
}

.pack-size-selector label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.pack-options {
    display: flex;
    gap: 12px;
}

.pack-btn {
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    background: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.pack-btn.selected {
    border-color: var(--primary);
    background: #FFF3E0;
    color: var(--primary);
}

.detail-buy-section {
    margin-bottom: 30px;
}

.detail-buy-section h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-buy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.product-tabs-container {
    margin-top: 50px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.detail-tabs {
    display: flex;
    gap: 24px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 30px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.detail-tabs::-webkit-scrollbar {
    display: none;
}

.detail-tab-btn {
    padding: 12px 4px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-muted);
    background: none;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
}

.detail-tab-btn.active {
    color: var(--primary);
}

.detail-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.tab-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* ==========================================================================
   Admin Panel Styles & Toggle Switch
   ========================================================================== */

.admin-wrapper {
    min-height: 100vh;
    background: #F4F6F8;
}

.admin-header {
    background: var(--text-dark);
    color: white;
    padding: 16px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

.admin-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: calc(100vh - 70px);
}

.admin-sidebar {
    background: white;
    border-right: 1px solid var(--border-color);
    padding: 30px 16px;
}

.admin-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-nav-item button {
    width: 100%;
    text-align: left;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-nav-item button.active, .admin-nav-item button:hover {
    background: #FFF3E0;
    color: var(--primary);
}

.admin-main {
    padding: 40px;
}

.admin-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th, .admin-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    background: var(--bg-main);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.admin-table td {
    font-size: 0.9rem;
}

.table-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 6px;
    background: var(--bg-main);
    padding: 4px;
}

.btn-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.btn-edit { background: #E3F2FD; color: #1976D2; }
.btn-delete { background: #FFEBEE; color: #D32F2F; }

.btn-edit:hover { background: #1976D2; color: white; }
.btn-delete:hover { background: #D32F2F; color: white; }

/* iOS Style Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #CCC;
    transition: .3s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--veg-green);
}

input:checked + .slider:before {
    transform: translateX(20px);
}

/* Modal Box */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.modal-box {
    background: white;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 34px;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-family: inherit;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(158, 27, 27, 0.15);
}

/* Footer */
.site-footer {
    background: #14171A;
    color: #A0AEC0;
    padding: 70px 0 30px;
    font-size: 0.92rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about h3 {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

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

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-info-list li {
    display: flex;
    gap: 12px;
}

.contact-info-list i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

/* Media Queries for Desktop & Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-btns { justify-content: center; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .product-detail-grid { grid-template-columns: 1fr; }
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .announcement-bar {
        overflow: hidden;
        white-space: nowrap;
        padding: 6px 0;
    }
    .announcement-bar .container {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        white-space: nowrap;
        padding: 0;
    }
    .announcement-text {
        display: inline-block;
        white-space: nowrap;
        padding-left: 100%;
        animation: marquee-scroll 18s linear infinite;
        font-size: 0.82rem;
    }
    .announcement-text:hover {
        animation-play-state: paused;
    }
    .announcement-contact {
        display: none !important;
    }
    .floating-badge {
        display: none !important;
    }
    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: var(--bg-card);
    }
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 4px 0;
    }
    .brand-logo img {
        height: 65px;
        max-width: 150px;
        object-fit: contain;
    }
    .header-actions {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-left: auto;
    }
    .search-box {
        position: relative;
        width: 140px;
    }
    .search-box input {
        padding: 6px 30px 6px 12px;
        font-size: 0.82rem;
    }
    .mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        background: var(--bg-secondary);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        color: var(--primary);
        font-size: 1.3rem;
        cursor: pointer;
        z-index: 10002;
        position: relative;
        flex-shrink: 0;
        transition: var(--transition);
    }
    .mobile-toggle.active {
        position: fixed;
        top: 18px;
        right: 18px;
        background: var(--primary);
        color: white;
        border: none;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    }
    .nav-menu {
        position: fixed !important;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh;
        background: white;
        flex-direction: column !important;
        padding: 85px 24px 30px !important;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 10001 !important;
        overflow-y: auto;
        display: flex;
        align-items: flex-start;
        gap: 0 !important;
    }
    .nav-menu.active {
        right: 0 !important;
    }
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #F0F0F0;
    }
    .nav-menu li:last-child {
        border-bottom: none;
    }
    .nav-menu .nav-link {
        display: block;
        width: 100%;
        padding: 14px 0;
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--text-dark);
    }
    .nav-menu .nav-link:hover, .nav-menu .nav-link.active {
        color: var(--primary);
    }
    .features-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.1rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .product-detail-grid { padding: 20px; }
    .product-tabs-container {
        padding: 20px 16px;
        margin-top: 30px;
    }
    .detail-tabs {
        gap: 16px;
        margin-bottom: 20px;
    }
    .detail-tab-btn {
        font-size: 0.9rem;
        padding: 8px 2px;
    }
    .factory-highlight-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center;
    }
    .factory-highlight-grid .factory-visual {
        order: -1;
    }
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .contact-card {
        padding: 24px !important;
    }
}

/* Contact Grid & Card Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
}

/* Marquee Keyframes for Mobile Announcement Bar */
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Factory & About Highlight Grid */
.factory-highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Live Auto-Suggest Search Dropdown */
.fa-x-twitter, .fa-twitter {
    font-family: 'Font Awesome 6 Brands', sans-serif !important;
}

.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    border: 1px solid var(--border-color);
    margin-top: 8px;
    z-index: 1000;
    max-height: 340px;
    overflow-y: auto;
    display: none;
}

.search-results-dropdown.active {
    display: block;
}

.search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--bg-main);
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
}

.search-item:last-child {
    border-bottom: none;
}

.search-item:hover {
    background: #FFF3E0;
}

.search-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
    background: #FFFBF7;
    border: 1px solid var(--border-color);
    padding: 2px;
}

.search-item-info {
    display: flex;
    flex-direction: column;
}

.search-item-title {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.search-item-cat {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 2px;
}

.search-no-results {
    padding: 14px;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}
