:root {
            --red-primary: #dc2626;
            --red-dark: #b91c1c;
            --red-darker: #7f1d1d;
            --red-light: #fef2f2;
            --red-accent: #ef4444;
            --red-gradient: linear-gradient(135deg, #b91c1c 0%, #dc2626 50%, #991b1b 100%);
            --red-hero-bg: linear-gradient(135deg, #450a0a 0%, #7f1d1d 40%, #b91c1c 100%);
            --font-main: 'Plus Jakarta Sans', sans-serif;
        }

        body {
            font-family: var(--font-main);
            background-color: #f8fafc;
            color: #1e293b;
            margin: 0;
            padding: 0 0 60px 0; /* Space for mobile bottom bar */
            overflow-x: hidden;
        }
        @media (min-width: 992px) {
            body {
                padding-bottom: 0;
            }
        }

        /* MOBILE BOTTOM STICKY NAV STYLE */
        .mobile-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #ffffff;
            border-top: 1px solid #fee2e2;
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 8px 0;
            z-index: 1040;
            box-shadow: 0 -4px 15px rgba(220, 38, 38, 0.05);
        }
        .mobile-bottom-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #78716c;
            text-decoration: none !important;
            font-size: 10px;
            font-weight: 700;
            flex: 1;
            gap: 3px;
            transition: color 0.2s ease;
        }
        .mobile-bottom-nav-item i {
            font-size: 18px;
            color: #a8a29e;
            transition: color 0.2s ease;
        }
        .mobile-bottom-nav-item:hover, .mobile-bottom-nav-item.active {
            color: #dc2626;
        }
        .mobile-bottom-nav-item:hover i, .mobile-bottom-nav-item.active i {
            color: #dc2626;
        }
        .mobile-cart-badge {
            position: absolute;
            top: -5px;
            right: -10px;
            background: #dc2626;
            color: #ffffff;
            border-radius: 50%;
            font-size: 9px;
            font-weight: 800;
            width: 15px;
            height: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #ffffff;
        }

        /* RED THEME TOP ANNOUNCEMENT BAR */
        .red-top-bar {
            background: #7f1d1d;
            color: #ffffff;
            padding: 7px 0;
            font-size: 12px;
            font-weight: 600;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .red-top-bar a {
            color: #fecdd3;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .red-top-bar a:hover {
            color: #ffffff;
        }

        /* MAIN RED HEADER */
        .red-header {
            background: #ffffff;
            box-shadow: 0 4px 20px rgba(185, 28, 28, 0.06);
            position: sticky;
            top: 0;
            z-index: 1020;
        }
        .red-header-top {
            padding: 16px 0;
            border-bottom: 1px solid #f1f5f9;
        }

        .red-logo-brand {
            font-size: 24px;
            font-weight: 900;
            color: #7f1d1d;
            text-decoration: none;
            letter-spacing: -0.5px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .red-logo-brand span.tag {
            background: #dc2626;
            color: #ffffff;
            font-size: 10px;
            font-weight: 800;
            padding: 2px 8px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* RED SEARCH BAR */
        .red-search-box {
            position: relative;
            max-width: 580px;
            width: 100%;
        }
        .red-search-input {
            width: 100%;
            height: 46px;
            padding: 0 55px 0 20px;
            border: 2px solid #fee2e2;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
            outline: none;
            transition: all 0.2s ease;
            background: #fffdfd;
        }
        .red-search-input:focus {
            border-color: #dc2626;
            box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
            background: #ffffff;
        }
        .red-search-btn {
            position: absolute;
            right: 4px;
            top: 4px;
            height: 38px;
            width: 44px;
            background: var(--red-gradient);
            color: #ffffff;
            border: none;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease;
        }
        .red-search-btn:hover {
            transform: scale(1.05);
        }

        /* RED NAV BAR */
        .red-nav-bar {
            background: var(--red-gradient);
            padding: 0;
            overflow: hidden;
        }
        .red-nav-menu {
            display: flex;
            align-items: center;
            justify-content: space-between;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 0;
            overflow: hidden;
        }
        .red-nav-link {
            display: block;
            padding: 13px 14px;
            color: #ffffff;
            font-size: 12px;
            font-weight: 800;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            white-space: nowrap;
            transition: background 0.2s ease;
        }
        .red-nav-link:hover, .red-nav-link.active {
            background: rgba(0, 0, 0, 0.2);
            color: #fef08a;
        }

        /* ACTION BADGES */
        .red-action-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #1e293b;
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
            position: relative;
            padding: 6px 12px;
            border-radius: 8px;
            transition: background 0.2s ease;
        }
        .red-action-item:hover {
            background: #fef2f2;
            color: #b91c1c;
        }
        .red-action-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #fef2f2;
            color: #dc2626;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            position: relative;
        }
        .red-badge-count {
            position: absolute;
            top: -4px;
            right: -4px;
            background: #dc2626;
            color: #ffffff;
            font-size: 10px;
            font-weight: 900;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #ffffff;
        }

        /* FOOTER RED STYLING */
        .red-footer {
            background: #111827;
            color: #9ca3af;
            font-size: 13px;
            padding-top: 50px;
            border-top: 4px solid #b91c1c;
        }
        .red-footer h5 {
            color: #ffffff;
            font-weight: 800;
            font-size: 15px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            padding-bottom: 8px;
        }
        .red-footer h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 3px;
            background: #dc2626;
            border-radius: 2px;
        }
        .red-footer a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .red-footer a:hover {
            color: #f87171;
        }
        .red-footer-bottom {
            background: #0b0f19;
            padding: 20px 0;
            margin-top: 40px;
            border-top: 1px solid #1f2937;
            font-size: 12px;
        }

        /* FLOATING WHATSAPP RED ACCENT */
        .btn-red-whatsapp {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 54px;
            height: 54px;
            background: #25d366;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            text-decoration: none;
            transition: transform 0.2s ease;
        }
        .btn-red-whatsapp:hover {
            transform: scale(1.1);
            color: #ffffff;
        }

        /* RICH TEXT / CORPORATE PAGES STYLING */
        .corporate-page-body {
            font-size: 15px;
            line-height: 1.85;
            color: #334155;
        }
        .corporate-page-body h1, .corporate-page-body h2, .corporate-page-body h3, .corporate-page-body h4, .corporate-page-body h5, .corporate-page-body h6 {
            color: #0f172a;
            font-weight: 800;
            margin-top: 1.6em;
            margin-bottom: 0.6em;
            line-height: 1.35;
        }
        .corporate-page-body h1 { font-size: 26px; }
        .corporate-page-body h2 { font-size: 22px; }
        .corporate-page-body h3 { font-size: 19px; }
        .corporate-page-body h4 { font-size: 17px; }
        .corporate-page-body p {
            margin-bottom: 1.2em;
        }
        .corporate-page-body ul {
            list-style-type: disc !important;
            padding-left: 28px !important;
            margin-bottom: 1.2em !important;
        }
        .corporate-page-body ol {
            list-style-type: decimal !important;
            padding-left: 28px !important;
            margin-bottom: 1.2em !important;
        }
        .corporate-page-body li {
            margin-bottom: 0.5em;
            list-style-position: outside;
        }
        .corporate-page-body strong, .corporate-page-body b {
            font-weight: 700;
            color: #0f172a;
        }
        .corporate-page-body a {
            color: #dc2626;
            text-decoration: underline;
        }
        .corporate-page-body a:hover {
            color: #991b1b;
        }
        .corporate-page-body blockquote {
            border-left: 4px solid #dc2626;
            padding: 12px 20px;
            background: #fef2f2;
            border-radius: 0 8px 8px 0;
            margin: 1.5em 0;
            font-style: italic;
            color: #475569;
        }
        .corporate-page-body table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5em 0;
            font-size: 14px;
        }
        .corporate-page-body table th, .corporate-page-body table td {
            border: 1px solid #e2e8f0;
            padding: 12px 16px;
            text-align: left;
        }
        .corporate-page-body table th {
            background: #f8fafc;
            font-weight: 700;
            color: #0f172a;
        }
        .corporate-page-body table tr:nth-child(even) td {
            background: #fdfdfd;
        }
        .corporate-page-body img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 1.5em 0;
        }