/* =========================================================
   RUDRA FIREWORKS - MAIN STYLESHEET (style.css)
   ========================================================= */

:root {
    --primary-navy: #08142E;
    --primary-blue: #1E3A8A;
    --accent-gold: #FFD54A;
    --accent-orange: #F97316;
    --accent-red: #DC2626;
    --success-green: #16A34A;
    
    --bg-white: #FFFFFF;
    --bg-cream: #FFF8E7;
    --bg-skyblue: #F0F9FF;
    --bg-lightgrey: #F8FAFC;
    --bg-yellow: #FEFCE8;
    --bg-blue-light: #EFF6FF;
    --footer-bg: #08142E;

    --text-heading: #08142E;
    --text-body: #444444;
    --text-muted: #64748B;
    --border-light: #E2E8F0;
    --border-gold: rgba(255, 213, 74, 0.4);

    --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --shadow-soft: 0 10px 30px rgba(8, 20, 46, 0.06);
    --shadow-hover: 0 20px 40px rgba(8, 20, 46, 0.14);
    --shadow-glow: 0 0 25px rgba(249, 115, 22, 0.4);
    --shadow-gold-glow: 0 0 25px rgba(255, 213, 74, 0.5);

    --radius-btn: 50px;
    --radius-card: 15px;
    --radius-img: 15px;
    --radius-input: 12px;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: var(--accent-orange);
}

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

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.35rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #ffffff;
}

/* Layout Containers & Sections */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.section-title-wrapper {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent-orange);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.4rem;
    color:#ffd54a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color:#000000;
}

.section-subtitle-dark {
    font-size: 1.1rem;
    color:#ffffff;
}

/* Buttons */
.btn {
    display: initial;
    align-items: center;
    justify-content: center;
    padding: 16px 35px;
    border-radius: var(--radius-btn);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.25);
}

.btn-primary:hover {
    background-color: var(--accent-orange);
    color: #FFFFFF !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background-color: var(--accent-orange);
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: #FFFFFF !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-gold-glow);
}

.btn-header-cta {
    background-color: var(--accent-orange);
    color: #FFFFFF !important;
    padding: 12px 28px;
    font-size: 0.95rem;
}

.btn-header-cta:hover {
    background-color: var(--primary-blue);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold-glow);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--accent-gold);
    color: var(--accent-gold) !important;
}

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--primary-navy) !important;
}

.full-width {
    width: 100%;
}

/* Header & Navigation Bar */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
    background-color: transparent;
}

.header-nav.scrolled {
    background-color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 80px;
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 90px;
    padding-top: 5px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.header-nav.scrolled .header-logo {
    height: 90px;
    padding-top: 5px;
}

.desktop-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-nav .nav-link {
    color: #000000;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
}

.header-nav.scrolled .desktop-nav .nav-link {
    color: var(--primary-navy);
}

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

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

.header-nav.scrolled .desktop-nav .nav-link:hover {
    color: var(--accent-orange);
}

/* Mobile Hamburger */
.hamburger-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
    z-index: 1002;
}

.hamburger-bar {
    width: 28px;
    height: 3px;
    background-color: #FFFFFF;
    border-radius: 2px;
    transition: var(--transition);
}

.header-nav.scrolled .hamburger-bar {
    background-color: var(--primary-navy);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(8, 20, 46, 0.6);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1001;
}

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

.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 340px;
    height: 100vh;
    background: #FFFFFF;
    z-index: 1002;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-nav-menu.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.mobile-logo {
    height: 48px;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 2.2rem;
    color: var(--primary-navy);
    cursor: pointer;
}

.mobile-nav-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
}

.mobile-nav-link:hover {
    color: var(--accent-orange);
}

/* Top Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange), var(--primary-blue));
    width: 0%;
    z-index: 1005;
    transition: width 0.1s ease-out;
}

/* Desktop Custom Cursor */
.custom-cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.custom-cursor-halo {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(255, 213, 74, 0.6);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, transform 0.15s ease-out;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #08142E 0%, #1E3A8A 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #FFFFFF;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

#loaderFireworksCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.loading-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.loading-logo-box {
    margin-bottom: 25px;
}

.loader-logo {
    height: 90px;
    animation: loaderLogoPulse 2s infinite ease-in-out;
}

@keyframes loaderLogoPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(255,213,74,0.4)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 25px rgba(255,213,74,0.8)); }
}

.loading-title {
    color: var(--accent-gold);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.loading-bar-container {
    width: 280px;
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 12px auto;
    border: 1px solid rgba(255, 213, 74, 0.3);
}

.loading-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold));
    border-radius: 10px;
    transition: width 0.1s linear;
}

.loading-percentage {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--success-green);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2.5s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.12);
    background-color: #128C7E;
    box-shadow: 0 12px 30px rgba(18, 140, 126, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--primary-navy);
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
    70% { box-shadow: 0 0 0 18px rgba(22, 163, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-orange);
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold-glow);
}

/* Section Divider Wave */
.footer-wave-divider {
    position: relative;
    top: 1px;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

/* Main Footer */
.main-footer {
    background-color: #166065;
    color: #ffffff;
    position: relative;
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 80px 20px 30px 20px;
}

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

.footer-logo {
    height: 175px;
    /* margin-bottom: 20px; */
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--accent-orange);
    transform: translateY(-4px) rotate(8deg);
    color: #FFFFFF;
}

.footer-heading {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 6px;
}

.footer-contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: #ffffff;
}

.info-icon {
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #64748B;
}

.footer-bottom strong {
    color: var(--accent-gold);
}








#loader{
  position:fixed;
  inset:0;
  z-index:10000;
  background:radial-gradient(ellipse at 50% 40%, #101c30 0%, #060910 70%);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:28px;
  transition:opacity .8s ease, visibility .8s ease;
}


#loader.hidden{
    opacity:0;
    visibility:hidden;
}


#loader canvas{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
}

.premium-loader-logo{
    position:relative;
    z-index:2;
    width: 300px;
    height:300px;
    filter:drop-shadow(0 0 18px rgba(207,165,68,.5));
    animation:loaderPulse 1.8s ease-in-out infinite;
}


@keyframes loaderPulse{
    0%,100%{transform:scale(1);
        filter:drop-shadow(0 0 12px rgba(207,165,68,.4));
    }

    50%{
        transform:scale(1.06);
        filter:drop-shadow(0 0 26px rgba(207,165,68,.75));
    }
}



.premium-loader-word{
    position:relative;
    z-index:2;
    letter-spacing:.5em;
    font-size:15px;
    color:#ddd;
    text-transform:uppercase;
}



.premium-loader-track{
    position:relative;
    z-index:2;
    width:220px;
    height:6px;
    background:rgba(255,255,255,.15);
    border-radius:20px;
    overflow:hidden;
}


.premium-loader-fill{
    width:0%;
    height:100%;
    border-radius:20px;
    background:linear-gradient(90deg,#ff9800,#ffd54f);
    transition:width .1s linear;
}






/* =========================================================
   PREMIUM INQUIRY FORM REDESIGN
   ========================================================= */


.inquiry-form-card {
    width: 100%;
    max-width: 1050px;
    margin: 40px auto 0;
    padding: 45px 50px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(20, 40, 80, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(20, 40, 80, 0.10);
    box-sizing: border-box;
}

/* Form rows */

.inquiry-form-card .form-row-2col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
    margin-bottom: 22px;
}

/* Form group */

.inquiry-form-card .form-group {
    width: 100%;
    margin-bottom: 0;
}

/* Labels */

.inquiry-form-card .form-label {
    display: block;
    margin-bottom: 9px;
    font-size: 14px;
    font-weight: 600;
    color: #172554;
    letter-spacing: 0.2px;
}

/* Input wrapper */

.inquiry-form-card .input-with-icon {
    position: relative;
    width: 100%;
}

/* Icons */

.inquiry-form-card .input-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    text-align: center;
    font-size: 17px;
    line-height: 1;
    z-index: 2;
}

/* All form controls */

.inquiry-form-card .form-control {
    width: 100%;
    min-height: 52px;
    padding: 0 16px 0 48px;
    border: 1px solid #d9e0eb;
    border-radius: 12px;
    background: #ffffff;
    color: #172554;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    transition: all 0.25s ease;
}

/* Placeholder */

.inquiry-form-card .form-control::placeholder {
    color: #9aa4b2;
}

/* Focus */

.inquiry-form-card .form-control:focus {
    border-color: #3156b3;
    box-shadow: 0 0 0 4px rgba(49, 86, 179, 0.10);
    background: #ffffff;
}

/* Select */

.inquiry-form-card select.form-control {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 42px;
    background-image:
        linear-gradient(45deg, transparent 50%, #64748b 50%),
        linear-gradient(135deg, #64748b 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 22px,
        calc(100% - 12px) 22px;
    background-size:
        6px 6px,
        6px 6px;
    background-repeat: no-repeat;
}

/* Quantity */

.inquiry-form-card input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.inquiry-form-card input[type="number"]::-webkit-inner-spin-button,
.inquiry-form-card input[type="number"]::-webkit-outer-spin-button {
    opacity: 0.5;
}

/* Textarea */

.inquiry-form-card textarea.form-control {
    min-height: 112px;
    padding-top: 15px;
    padding-bottom: 15px;
    resize: vertical;
    line-height: 1.5;
}

/* Textarea icon */

.inquiry-form-card .form-row-2col:last-of-type
.input-icon {
    top: 22px;
    transform: none;
}

/* Selected product badge */

.selected-product-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 8px 14px;
    border-radius: 30px;
    background: rgba(49, 86, 179, 0.08);
    color: #3156b3;
    font-size: 13px;
    font-weight: 600;
}

/* Submit area */

.inquiry-form-card .text-center {
    margin-top: 30px;
    text-align: center;
}

/* Submit button */

.inquiry-form-card .btn-primary {
    min-width: 190px;
    min-height: 52px;
    padding: 0 28px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #172554, #3156b3);
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(23, 37, 84, 0.20);
    transition: all 0.25s ease;
}

/* Button hover */

.inquiry-form-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(23, 37, 84, 0.28);
}

/* Button disabled */

.inquiry-form-card .btn-primary:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

/* Spinner */

.inquiry-form-card .btn-spinner {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 8px;
    vertical-align: -2px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: inquirySpinner 0.7s linear infinite;
}

@keyframes inquirySpinner {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .inquiry-form-card {
        margin: 25px 15px 0;
        padding: 30px 22px;
        width: calc(100% - 30px);
        border-radius: 18px;
    }

    .inquiry-form-card .form-row-2col {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 18px;
    }

    .inquiry-form-card .form-label {
        font-size: 13px;
    }

    .inquiry-form-card .form-control {
        min-height: 50px;
        font-size: 14px;
    }

    .inquiry-form-card .text-center {
        margin-top: 25px;
    }

    .inquiry-form-card .btn-primary {
        width: 100%;
        min-width: 0;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .inquiry-form-card {
        padding: 25px 17px;
        margin-top: 20px;
    }

    .inquiry-form-card .form-control {
        min-height: 48px;
        padding-left: 45px;
    }

    .inquiry-form-card .input-icon {
        left: 14px;
    }

}











/* =========================================================
   RUDRA ABOUT PAGE - PREMIUM CSS OVERRIDE
   HTML/PHP DOES NOT NEED TO BE CHANGED
   ========================================================= */


/* =========================================================
   ABOUT MAIN GRID
   ========================================================= */

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
   ABOUT IMAGE
   ========================================================= */

.about-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img-box {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    /* background:
        linear-gradient(
            135deg,
            #ff7518 0%,
            #ff9f1c 45%,
            #ffd166 100%
        );

    box-shadow:
        0 25px 60px rgba(8, 20, 46, 0.18); */

    border: 1px solid rgba(255, 255, 255, 0.7);
}


/* Glow effect */

.about-img-box::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(255,255,255,0.35),
            transparent 55%
        );

    pointer-events: none;
}


/* Logo itself */

.about-brand-img {
    width: 100% !important;
    height: 100% !important;
    max-width: 350px !important;

    object-fit: contain;

    position: relative;
    z-index: 2;

    filter:
        drop-shadow(0 15px 20px rgba(0,0,0,0.18));

    transition: transform 0.4s ease;
}



.about-img-box {
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    padding: 0 !important;
}

.about-brand-img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    display: block;
}











/* Hover */

.about-img-box:hover .about-brand-img {
    transform: scale(1.01);
}


/* =========================================================
   ABOUT CONTENT
   ========================================================= */

.about-content {
    max-width: 600px;
}

.about-content .section-tag {
    display: inline-block;
    margin-bottom: 12px;
    align-content: center;
}

.about-content .section-title {
    margin-bottom: 18px;
    line-height: 1.15;
}

.about-subheading {
    line-height: 1.4;
}

.about-content > p {
    color: #475569;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}


/* =========================================================
   MISSION + VISION
   ========================================================= */

.mission-vision-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 28px !important;
}

.mv-card {
    padding: 22px;
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.75);

    border: 1px solid rgba(30, 58, 138, 0.08);

    box-shadow:
        0 10px 30px rgba(8, 20, 46, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 35px rgba(8, 20, 46, 0.12);
}

.mv-card h4 {
    color: var(--primary-blue);
    font-size: 17px;
    margin-bottom: 8px;
}

.mv-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   FEATURE CARDS
   ========================================================= */

.features-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

    max-width: 1200px;

    margin: 65px auto 0;
}


/* Card */

.feature-card {
    min-height: 190px;

    padding: 28px 25px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.92);

    border: 1px solid rgba(30, 58, 138, 0.08);

    box-shadow:
        0 12px 35px rgba(8, 20, 46, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* Hover */

.feature-card:hover {
    transform: translateY(-7px);

    border-color: rgba(30, 58, 138, 0.18);

    box-shadow:
        0 20px 45px rgba(8, 20, 46, 0.12);
}


/* Icon */

.feature-card .card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(30, 58, 138, 0.08);
    font-size: 24px;

    margin-bottom: 18px;
}


/* Heading */

.feature-card h3 {
    font-size: 18px;
    color: var(--primary-blue);

    margin-bottom: 8px;
}


/* Description */

.feature-card p {
    color: #64748b;

    font-size: 14px;

    line-height: 1.65;

    margin: 0;
}


/* =========================================================
   STATISTICS SECTION
   ========================================================= */

.stats-section {
    /* margin-top: 100px;  */
}

.stats-counter-grid {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 30px;

    text-align: center;
}

.stat-item {
    padding: 20px;
}

.counter-number {
    font-size: 42px;
    font-weight: 800;

    line-height: 1.1;

    color: #ffffff;

    margin-bottom: 8px;
}

.counter-label {
    color: #cbd5e1;

    font-size: 14px;

    letter-spacing: 0.3px;
}


/* =========================================================
   PAGE BANNER
   ========================================================= */

.page-banner {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner h1 {
    margin-bottom: 10px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 992px) {

    .about-grid {
        grid-template-columns: 1fr;

        gap: 45px;

        max-width: 720px;
    }

    .about-image-wrapper {
        order: 1;
    }

    .about-content {
        order: 2;

        max-width: 100%;
    }

    .about-img-box {
        max-width: 460px;
    }

    .features-grid {
        grid-template-columns:
            repeat(2, 1fr);

        max-width: 720px;
    }

    .stats-counter-grid {
        grid-template-columns:
            repeat(2, 1fr);

        max-width: 700px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .about-grid {
        gap: 35px;
    }

    .about-img-box {
        max-width: 100%;

        border-radius: 18px;
    }

    .about-brand-img {
        width: 65% !important;
    }

    .about-content .section-title {
        font-size: 28px;
        text-align: center;
    }

    .about-subheading {
        font-size: 18px !important;
        text-align: center;
    }

    .about-content > p {
        font-size: 14px;
        line-height: 1.7;
        text-align: center;
    }


    /* Mission Vision */

    .mission-vision-box {
        grid-template-columns: 1fr;
    }

    .mv-card {
        padding: 20px;
    }


    /* Feature cards */

    .features-grid {
        grid-template-columns: 1fr;

        gap: 16px;

        margin-top: 45px;
    }

    .feature-card {
        min-height: auto;

        padding: 23px;
    }


    /* Statistics */

    .stats-counter-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 15px;
    }

    .counter-number {
        font-size: 32px;
    }

    .counter-label {
        font-size: 12px;
    }


    /* Banner */

    .page-banner {
        min-height: 250px;

        padding: 90px 20px 50px !important;
    }

    .page-banner h1 {
        font-size: 2rem !important;
    }
}







/* =========================================
   PRODUCT PAGE - BUTTON POSITION FIX
   ========================================= */

/* The button container */
.bg-white .container > div[style*="grid-template-columns"] > div:nth-child(2) > div[style*="display: flex"] {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 15px !important;
    width: 100% !important;
    margin-top: 20px !important;
    margin-bottom: 0 !important;
    position: static !important;
}

/* Send Inquiry + WhatsApp buttons */
.bg-white .container > div[style*="grid-template-columns"] > div:nth-child(2) > div[style*="display: flex"] .btn {
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    transform: none !important;
    float: none !important;

    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;

    margin: 0 !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    box-sizing: border-box !important;
}

/* Send Inquiry button */
.bg-white .container > div[style*="grid-template-columns"] > div:nth-child(2) > div[style*="display: flex"] .btn-secondary {
    padding: 14px 28px !important;
}

/* WhatsApp button */
.bg-white .container > div[style*="grid-template-columns"] > div:nth-child(2) > div[style*="display: flex"] .btn-outline {
    padding: 14px 25px !important;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .bg-white .container > div[style*="grid-template-columns"] > div:nth-child(2) > div[style*="display: flex"] {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .bg-white .container > div[style*="grid-template-columns"] > div:nth-child(2) > div[style*="display: flex"] .btn {
        width: auto !important;
    }
}









/* =========================================================
   PRODUCT CARD BUTTON FIX
   Keeps buttons INSIDE the card and prevents overlapping
   ========================================================= */

.product-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    overflow: hidden !important;
}

.product-body {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    justify-content: flex-start !important;
    padding: 25px !important;
    min-height: 0 !important;
}

.product-desc {
    margin-bottom: 15px !important;
}

.product-actions {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: 15px !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
}

.product-actions .btn {
    position: static !important;
    flex: 0 0 auto !important;
    width: auto !important;
    margin: 0 !important;
    padding: 10px 16px !important;
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
}

/* View Details button */
.product-actions .btn-outline {
    color: var(--secondary-blue) !important;
    border: 2px solid var(--secondary-blue) !important;
    background: transparent !important;
}

/* Send Inquiry button */
.product-actions .btn-primary,
.product-actions .btn-secondary {
    color: #FFFFFF !important;
}

/* Make sure links cannot become absolute/fixed */
.product-actions a {
    position: static !important;
    transform: none !important;
}

/* Desktop */
@media (min-width: 993px) {
    .product-actions {
        justify-content: flex-start !important;
        margin-top: 18px !important;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .product-actions {
        flex-wrap: wrap !important;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr !important;
    }

    .product-actions {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .product-actions .btn {
        width: 100% !important;
        justify-content: center !important;
    }
}








/* =========================================================
   PRODUCT CARD BUTTON FIX
   Prevent buttons from growing after browser Back/Forward
   ========================================================= */

.products-grid .product-card .product-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

/* Both product buttons */
.products-grid .product-card .product-actions .btn {
    display: inline-flex !important;
    flex: 0 0 auto !important;

    width: auto !important;
    min-width: 145px;
    max-width: 220px;

    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;

    padding: 10px 22px !important;
    margin: 0 !important;

    box-sizing: border-box !important;

    transform: none;
}

/* View Details */
.products-grid .product-card .product-actions .btn-outline {
    width: auto !important;
    height: 46px !important;
    min-height: 46px !important;
}

/* Send Inquiry */
.products-grid .product-card .product-actions .btn-secondary {
    width: auto !important;
    height: 46px !important;
    min-height: 46px !important;
}

/* Do NOT allow hover to enlarge product buttons */
.products-grid .product-card .product-actions .btn:hover {
    transform: translateY(-2px) !important;
}

/* Prevent focus/active state from changing the size */
.products-grid .product-card .product-actions .btn:focus,
.products-grid .product-card .product-actions .btn:active,
.products-grid .product-card .product-actions .btn:visited {
    width: auto !important;
    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;
    transform: none !important;
}

/* Keep text inside button */
.products-grid .product-card .product-actions .btn * {
    max-width: 100%;
}







/* =========================================================
   RUDRA PREMIUM PRODUCT GALLERY
   Unique classes - does not affect existing gallery CSS
========================================================= */

.rk-gallery-section {
    background: #f5f8fc;
    padding: 90px 0;
}


/* -------------------------
   SECTION HEADING
------------------------- */

.rk-gallery-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.rk-gallery-tag {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 30px;

    background: rgba(249, 115, 22, 0.10);
    color: #f97316;

    border: 1px solid rgba(249, 115, 22, 0.25);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    margin-bottom: 14px;
}

.rk-gallery-heading h2 {
    margin: 0 0 15px;

    color: #08142e;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.rk-gallery-heading h2 span {
    color: #1e3a8a;
}

.rk-gallery-heading p {
    margin: 0;

    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
}


/* -------------------------
   GRID
------------------------- */

.rk-gallery-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 24px;

    align-items: stretch;
}


/* -------------------------
   CARD
------------------------- */

.rk-gallery-card {
    position: relative;

    background: #ffffff;

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid #e7edf5;

    box-shadow: 0 8px 30px rgba(8, 20, 46, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.rk-gallery-card:hover {
    transform: translateY(-7px);

    border-color: rgba(30, 58, 138, 0.18);

    box-shadow: 0 18px 45px rgba(8, 20, 46, 0.13);
}


/* -------------------------
   IMAGE AREA
------------------------- */

.rk-gallery-image {
    position: relative;

    height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    background:
        linear-gradient(
            145deg,
            #f8fafc 0%,
            #ffffff 55%,
            #f1f5f9 100%
        );

    overflow: hidden;
}

.rk-gallery-image img {
    width: auto;
    height: 240px;

    max-width: 90%;

    object-fit: contain;

    display: block;

    transition:
        transform 0.45s ease;
}

.rk-gallery-card:hover .rk-gallery-image img {
    transform: scale(1.06);
}


/* -------------------------
   IMAGE HOVER
------------------------- */

.rk-gallery-hover {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(8, 20, 46, 0.48);

    opacity: 0;

    transition: opacity 0.3s ease;
}

.rk-gallery-card:hover .rk-gallery-hover {
    opacity: 1;
}

.rk-gallery-view {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    padding: 11px 18px;

    background: #ffffff;

    color: #1e3a8a;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


/* -------------------------
   CONTENT
------------------------- */

.rk-gallery-content {
    padding: 22px 22px 24px;
}

.rk-gallery-category {
    display: block;

    color: #f97316;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 8px;
}

.rk-gallery-content h3 {
    margin: 0 0 18px;

    color: #08142e;

    font-size: 20px;
    font-weight: 700;

    line-height: 1.3;

    min-height: 52px;
}


/* -------------------------
   BOTTOM ROW
------------------------- */

.rk-gallery-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding-top: 16px;

    border-top: 1px solid #edf1f5;
}

.rk-gallery-items {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: #64748b;

    font-size: 13px;
    font-weight: 600;

    white-space: nowrap;
}

.rk-gallery-items i {
    color: #f97316;
}


/* -------------------------
   VIEW DETAILS BUTTON
------------------------- */

.rk-gallery-btn {
    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    gap: 7px;

    width: auto !important;
    height: auto !important;

    min-width: 0 !important;

    padding: 9px 13px !important;

    margin: 0 !important;

    border-radius: 8px !important;

    background: transparent !important;

    color: #1e3a8a !important;

    border: 1px solid rgba(30, 58, 138, 0.18) !important;

    font-size: 12px !important;
    font-weight: 700 !important;

    line-height: 1.2 !important;

    text-decoration: none !important;

    box-shadow: none !important;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.rk-gallery-btn:hover {
    background: #1e3a8a !important;

    color: #ffffff !important;

    border-color: #1e3a8a !important;

    transform: none !important;
}

.rk-gallery-btn i {
    font-size: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .rk-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .rk-gallery-section {
        padding: 65px 0;
    }

    .rk-gallery-heading {
        margin-bottom: 35px;
    }

    .rk-gallery-heading h2 {
        font-size: 32px;
    }

    .rk-gallery-heading p {
        font-size: 14px;
    }

    .rk-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .rk-gallery-image {
        height: 240px;
        padding: 18px;
    }

    .rk-gallery-image img {
        height: 190px;
    }

    .rk-gallery-content {
        padding: 18px;
    }

    .rk-gallery-content h3 {
        font-size: 17px;
        min-height: auto;
    }

    .rk-gallery-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .rk-gallery-btn {
        width: auto !important;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

    .rk-gallery-grid {
        grid-template-columns: 1fr;
    }

    .rk-gallery-image {
        height: 280px;
    }

    .rk-gallery-image img {
        height: 225px;
    }

    .rk-gallery-heading h2 {
        font-size: 28px;
    }

}






/* =========================================================
   PREMIUM CONTACT LOCATION SECTION
========================================================= */

.rk-contact-location {
    padding: 90px 0;
    background: #f5f8fc;
}


/* Heading */

.rk-contact-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 55px;
}

.rk-contact-tag {
    display: inline-block;
    padding: 7px 18px;
    border: 1px solid rgba(30, 58, 138, 0.25);
    border-radius: 50px;
    background: rgba(30, 58, 138, 0.06);

    color: #1E3A8A;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.rk-contact-heading h2 {
    margin: 15px 0 12px;
    font-size: 42px;
    line-height: 1.2;
    color: #08142E;
    font-weight: 700;
}

.rk-contact-heading h2 span {
    color: #F97316;
}

.rk-contact-heading p {
    margin: 0 auto;
    max-width: 620px;

    color: #64748B;
    font-size: 16px;
    line-height: 1.7;
}


/* Main Grid */

.rk-contact-location-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 30px;

    align-items: stretch;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.rk-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.rk-contact-info-card {
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 23px 25px;

    background: #ffffff;
    border: 1px solid rgba(30, 58, 138, 0.08);

    border-radius: 18px;

    box-shadow: 0 8px 30px rgba(8, 20, 46, 0.06);

    transition: all 0.3s ease;
}


.rk-contact-info-card:hover {
    transform: translateY(-4px);

    border-color: rgba(249, 115, 22, 0.35);

    box-shadow: 0 15px 35px rgba(8, 20, 46, 0.10);
}


/* Icon */

.rk-contact-icon {
    width: 52px;
    height: 52px;

    min-width: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(30, 58, 138, 0.08);

    color: #1E3A8A;

    font-size: 20px;
}


.rk-contact-info-card:hover .rk-contact-icon {
    background: #1E3A8A;
    color: #ffffff;
}


/* Text */

.rk-contact-info-card h4 {
    margin: 0 0 5px;

    color: #08142E;

    font-size: 17px;
    font-weight: 700;
}


.rk-contact-info-card p {
    margin: 0;

    color: #64748B;

    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   MAP CARD
========================================================= */

.rk-contact-map {
    background: #ffffff;

    border-radius: 22px;

    padding: 12px;

    border: 1px solid rgba(30, 58, 138, 0.08);

    box-shadow: 0 12px 40px rgba(8, 20, 46, 0.08);

    overflow: hidden;
}


/* Map Header */

.rk-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 20px;
}


.rk-map-header span {
    display: block;

    margin-bottom: 4px;

    color: #F97316;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


.rk-map-header h3 {
    margin: 0;

    color: #08142E;

    font-size: 22px;
    font-weight: 700;
}


.rk-map-pin {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(249, 115, 22, 0.10);

    color: #F97316;

    font-size: 18px;
}


/* Map */

.rk-map-frame {
    width: 100%;
    height: 430px;

    overflow: hidden;

    border-radius: 16px;
}


.rk-map-frame iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .rk-contact-location {
        padding: 70px 0;
    }

    .rk-contact-location-grid {
        grid-template-columns: 1fr;
    }

    .rk-contact-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .rk-map-frame {
        height: 400px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .rk-contact-location {
        padding: 55px 0;
    }

    .rk-contact-heading {
        margin-bottom: 35px;
    }

    .rk-contact-heading h2 {
        font-size: 30px;
    }

    .rk-contact-heading p {
        font-size: 14px;
    }

    .rk-contact-info {
        grid-template-columns: 1fr;
    }

    .rk-contact-info-card {
        padding: 18px;
    }

    .rk-contact-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 17px;
    }

    .rk-contact-map {
        padding: 8px;
        border-radius: 18px;
    }

    .rk-map-header {
        padding: 15px;
    }

    .rk-map-header h3 {
        font-size: 19px;
    }

    .rk-map-frame {
        height: 320px;
        border-radius: 13px;
    }

}












/* =========================================
   PRODUCT DETAILS - MOBILE FIX
========================================= */

@media (max-width: 768px) {

    /* Main product section: image + details */
    .bg-white .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin-bottom: 40px !important;
    }

    /* Product image box */
    .bg-white .container > div[style*="grid-template-columns: 1fr 1fr"] > div:first-child {
        width: 100% !important;
        padding: 20px !important;
    }

    /* Product image */
    .bg-white .container > div[style*="grid-template-columns: 1fr 1fr"] img {
        max-width: 100% !important;
        max-height: 350px !important;
        height: auto !important;
    }

    /* Product title */
    .bg-white h2 {
        font-size: 1.8rem !important;
        line-height: 1.25 !important;
    }

    /* Product description */
    .bg-white p {
        font-size: 1rem !important;
    }

    /* Buttons */
    .bg-white .btn {
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    /* Item breakdown section */
    .bg-white .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* Item breakdown outer box */
    .bg-white .container > div[style*="grid-template-columns: 1fr 1fr"] {
        padding: 25px !important;
    }

    /* Official document image */
    .bg-white .container img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Mobile hero */
    .bg-navy {
        padding: 100px 20px 45px !important;
    }

    .bg-navy h1 {
        font-size: 2rem !important;
        line-height: 1.25 !important;
    }

    .bg-navy p {
        font-size: 0.95rem !important;
    }
}


/* Smaller phones */
@media (max-width: 480px) {

    .bg-navy {
        padding: 95px 15px 40px !important;
    }

    .bg-navy h1 {
        font-size: 1.7rem !important;
    }

    .bg-white .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .bg-white .container > div[style*="grid-template-columns: 1fr 1fr"] {
        padding: 20px !important;
    }

    .bg-white h2 {
        font-size: 1.6rem !important;
    }

    .bg-white h3 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
    }
}







/* =========================================
   MOBILE ONLY - REMOVE HORIZONTAL SCROLL
========================================= */

@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
    }

    * {
        max-width: 100%;
    }

    .container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

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







/* =========================================================
   PRODUCT PAGE - MOBILE RESPONSIVE FIX
   ========================================================= */

@media (max-width: 768px) {

    /* Product image + details section */
    .section .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin-bottom: 40px !important;
    }

    /* Product image */
    .section .container > div[style*="grid-template-columns: 1fr 1fr"] img {
        max-width: 100% !important;
        height: auto !important;
        max-height: 350px !important;
    }

    /* Product title */
    .section .container > div[style*="grid-template-columns: 1fr 1fr"] h2 {
        font-size: 1.7rem !important;
        line-height: 1.3 !important;
    }

    /* Product description */
    .section .container > div[style*="grid-template-columns: 1fr 1fr"] p {
        font-size: 0.95rem !important;
    }

    /* Product buttons */
    .section .container > div[style*="grid-template-columns: 1fr 1fr"] > div:last-child > div {
        flex-direction: column !important;
        width: 100% !important;
    }

    .section .container > div[style*="grid-template-columns: 1fr 1fr"] > div:last-child > div a {
        width: 100% !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    /* =====================================================
       CONTENTS & ITEMS BREAKDOWN
       ===================================================== */

    .section .container > div[style*="grid-template-columns: 1fr 1fr"]:last-child {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 20px !important;
    }

    /* Item summary */
    .section .container > div[style*="grid-template-columns: 1fr 1fr"]:last-child p {
        font-size: 0.9rem !important;
        line-height: 1.7 !important;
        padding: 18px !important;
        word-break: normal !important;
    }

    /* Official document image */
    .section .container > div[style*="grid-template-columns: 1fr 1fr"]:last-child img {
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;
    }

    /* Main breakdown heading */
    .section .container > div[style*="grid-template-columns: 1fr 1fr"]:last-child h3 {
        font-size: 1.45rem !important;
        line-height: 1.35 !important;
    }

    /* Product page section spacing */
    .section {
        overflow-x: hidden;
    }
}


/* =========================================================
   EXTRA SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    /* Product page banner */
    .bg-navy {
        padding: 100px 15px 45px !important;
    }

    .bg-navy h1 {
        font-size: 2rem !important;
        line-height: 1.25 !important;
    }

    .bg-navy p {
        font-size: 0.9rem !important;
    }

    /* Product image box */
    .section .container > div[style*="grid-template-columns: 1fr 1fr"] > div:first-child {
        padding: 18px !important;
    }

    /* Buttons */
    .btn {
        max-width: 100%;
    }

}








/* Product Grid - Mobile: 1 Product Per Row */
@media (max-width: 768px) {
    .product-grid-4col {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}








/* =========================================================
   CTA BANNER - DESKTOP CENTER ALIGNMENT
   ========================================================= */

@media (min-width: 769px) {

    .cta-banner {
        text-align: center !important;
    }

    .cta-banner .container {
        width: 100%;
        max-width: 1200px;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }

    .cta-banner h2 {
        width: 100%;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .cta-banner p {
        width: 100%;
        max-width: 700px;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }

    .cta-banner .cta-btn-group {
        width: 100%;
        display: flex;
        justify-content: center !important;
        align-items: center;
        gap: 15px;
    }

}








/* =========================================================
   CTA BANNER - CENTER ALIGNMENT
   DESKTOP + MOBILE
   ========================================================= */

.cta-banner {
    text-align: center !important;
}

.cta-banner .container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

.cta-banner h2 {
    width: 100%;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.cta-banner p {
    width: 100%;
    max-width: 700px;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

.cta-banner .cta-btn-group {
    width: 100%;
    display: flex;
    justify-content: center !important;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-banner .cta-btn-group .btn {
    text-align: center;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .cta-banner .container {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    .cta-banner h2 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    .cta-banner p {
        font-size: 0.95rem !important;
        line-height: 1.6;
    }

    .cta-banner .cta-btn-group {
        flex-direction: column;
        gap: 12px;
    }

    .cta-banner .cta-btn-group .btn {
        width: auto;
        min-width: 160px;
    }
}








/* Mobile only - Center About Rudra Fireworks tag */
@media (max-width: 768px) {
    .about-content .section-tag {
        display: block;
        width: fit-content;
        margin: 0 auto 12px;
        text-align: center;
    }
}











/* =========================================================
   PREMIUM CLEAN HERO SLIDER
   ========================================================= */

.premium-hero {
    position: relative;
    width: 100%;
    height: 720px;
    min-height: 650px;
    overflow: hidden;
    background: #08142E;
    color: #FFFFFF;
}


/* SLIDER */

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


/* EACH SLIDE */

.premium-hero-slide {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transform: translateX(30px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        visibility 0.7s ease;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(30, 58, 138, 0.35),
            transparent 35%
        ),
        #0e484d;
}


/* SLIDE ACTIVE */

.premium-hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


/* SUBTLE GOLD BORDER */

.premium-hero-slide::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    border: 1px solid background:rgba(254, 222, 4, 0.12);
border-radius:0%;

    right:8%;
    top:50%;

    transform:translateY(-50%);
}


/* CONTENT */

.premium-hero-content {
    position: relative;
    z-index: 3;

    width: 100%;
    /* max-width: 900px; */

    margin: 0 auto;

    padding: 40px 80px;

    text-align: center;
}


/* TAG */

.premium-hero-tag {
    display: inline-block;

    padding: 8px 18px;

    border: 1px solid rgba(255, 213, 74, 0.45);
    border-radius: 50px;

    color: #FFD54A;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 18px;
}


/* GOLD LINE */

.premium-hero-line {
    width: 55px;
    height: 3px;

    margin: 0 auto 25px;

    background: #F97316;

    border-radius: 10px;
}


/* HEADING */

.premium-hero-content h1 {
    margin: 0;

    color: #FFFFFF;

    font-size: clamp(42px, 5vw, 72px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1.5px;
}


/* GOLD PART */

.premium-hero-content h1 span {
    color: #FFD54A;
}


/* SUBTITLE */

.premium-hero-content p {
    max-width: 680px;

    margin: 25px auto 35px;

    color: #CBD5E1;

    font-size: 17px;

    line-height: 1.8;
}


/* BUTTONS */

.premium-hero-buttons {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}


/* COMMON BUTTON */

.premium-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 165px;

    padding: 14px 28px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}


/* PRIMARY */

.premium-btn-primary {
    background: #F97316;
    color: #FFFFFF;

    box-shadow:
        0 8px 25px rgba(249, 115, 22, 0.25);
}


.premium-btn-primary:hover {
    background: #FFD54A;
    color: #08142E;

    transform: translateY(-3px);
}


/* OUTLINE */

.premium-btn-outline {
    background: transparent;

    color: #FFFFFF;

    border: 1px solid rgba(255, 255, 255, 0.45);
}


.premium-btn-outline:hover {
    background: #FFFFFF;
    color: #08142E;

    transform: translateY(-3px);
}


/* BIG SLIDE NUMBER */

.premium-slide-number {
    position: absolute;

    right: 45px;
    bottom: 100px;

    color: rgba(255, 255, 255, 0.08);

    font-size: 130px;

    font-weight: 800;

    line-height: 1;

    user-select: none;
}


/* ARROWS */

.premium-hero-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 10;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(255, 213, 74, 0.35);

    background: rgba(255, 255, 255, 0.05);

    color: #FFFFFF;

    font-size: 22px;

    cursor: pointer;

    transition: all 0.3s ease;
}


.premium-hero-prev {
    left: 30px;
}


.premium-hero-next {
    right: 30px;
}


.premium-hero-arrow:hover {
    background: #F97316;

    border-color: #F97316;

    transform: translateY(-50%) scale(1.08);
}


/* BOTTOM */

.premium-hero-bottom {
    position: absolute;

    left: 50%;
    bottom: 30px;

    transform: translateX(-50%);

    z-index: 10;

    width: min(500px, 70%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 12px;
}


/* DOTS */

.premium-hero-dots {
    display: flex;

    align-items: center;

    gap: 9px;
}


.premium-hero-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.3);

    cursor: pointer;

    transition: all 0.3s ease;
}


.premium-hero-dot.active {
    width: 30px;

    border-radius: 20px;

    background: #FFD54A;
}


/* PROGRESS */

.premium-hero-progress {
    width: 100%;

    height: 2px;

    background: rgba(255, 255, 255, 0.12);

    overflow: hidden;
}


.premium-hero-progress div {
    width: 0%;
    height: 100%;

    background: #FFD54A;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .premium-hero {
        height: 650px;
        min-height: 600px;
    }

    .premium-hero-content {
        padding: 40px 70px;
    }

    .premium-hero-content h1 {
        font-size: 48px;
    }

    .premium-slide-number {
        font-size: 100px;
        right: 25px;
        bottom: 100px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .premium-hero {
        height: 620px;
        min-height: 620px;
    }


    .premium-hero-slide {
        /*background:*/
        /*    radial-gradient(*/
        /*        circle at 50% 20%,*/
        /*        rgba(30, 58, 138, 0.35),*/
        /*        transparent 45%*/
        /*    ),*/
        /*    #08142E;*/
    }


    .premium-hero-content {

        padding: 30px 45px 80px;

        max-width: 100%;

    }


    .premium-hero-tag {

        font-size: 10px;

        letter-spacing: 1.5px;

        padding: 7px 14px;

        margin-bottom: 15px;

    }


    .premium-hero-line {

        margin-bottom: 20px;

    }


    .premium-hero-content h1 {

        font-size: 34px;

        line-height: 1.15;

        letter-spacing: -0.5px;

    }


    .premium-hero-content p {

        font-size: 14px;

        line-height: 1.7;

        margin: 20px auto 28px;

    }


    .premium-hero-buttons {

        flex-direction: column;

        gap: 10px;

    }


    .premium-btn {

        width: 180px;

        padding: 12px 20px;

        font-size: 13px;

    }


    .premium-hero-arrow {

        width: 38px;

        height: 38px;

        font-size: 17px;

    }


    .premium-hero-prev {

        left: 10px;

    }


    .premium-hero-next {

        right: 10px;

    }


    .premium-slide-number {

        display: none;

    }


    .premium-hero-bottom {

        bottom: 18px;

        width: 65%;

    }

}


/* SMALL MOBILE */

@media (max-width: 400px) {

    .premium-hero {

        height: 590px;

        min-height: 590px;

    }


    .premium-hero-content {

        padding-left: 38px;

        padding-right: 38px;

    }


    .premium-hero-content h1 {

        font-size: 29px;

    }


    .premium-hero-content p {

        font-size: 13px;

    }

}







/* =========================================
   PREMIUM TESTIMONIAL SLIDER
========================================= */

.rk-testimonials {
    width: 100%;
    padding: 100px 20px;
    background: #f8f8f8;
    overflow: hidden;
}

.rk-testimonials-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.rk-testimonials-heading {
    text-align: center;
    margin-bottom: 55px;
}

.rk-testimonials-label {
    display: inline-block;
    margin-bottom: 12px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;

    color: #571c1e;
}

.rk-testimonials-heading h2 {
    margin: 0;

    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;

    color: #172554;
}

.rk-testimonials-heading p {
    max-width: 600px;
    margin: 15px auto 0;

    font-size: 16px;
    line-height: 1.7;

    color: #666;
}


/* =========================================
   SLIDER
========================================= */

.rk-testimonial-slider {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
}


/* =========================================
   TRACK
========================================= */

.rk-testimonial-track {
    position: relative;

    width: 100%;
    max-width: 850px;
    min-height: 430px;

    overflow: hidden;
}


/* =========================================
   SLIDE
========================================= */

.rk-testimonial-slide {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    padding: 10px 20px;

    opacity: 0;
    visibility: hidden;

    transform: translateX(50px);

    transition:
        opacity 0.6s ease,
        transform 0.6s ease,
        visibility 0.6s ease;
}

.rk-testimonial-slide.active {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);
}


/* =========================================
   CARD
========================================= */

.rk-testimonial-card {
    position: relative;

    width: 100%;
    height: 100%;

    padding: 55px 70px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: rgba(255, 255, 255, 0.95);

    border: 1px solid rgba(87, 28, 30, 0.08);

    border-radius: 24px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.08);

    overflow: hidden;
}


/* Top premium line */

.rk-testimonial-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #571c1e;
}


/* =========================================
   QUOTE
========================================= */

.rk-testimonial-quote {
    position: absolute;

    top: 20px;
    right: 35px;

    font-family: Georgia, serif;

    font-size: 100px;
    line-height: 1;

    color: rgba(87, 28, 30, 0.08);

    user-select: none;
}


/* =========================================
   STARS
========================================= */

.rk-testimonial-stars {
    margin-bottom: 20px;

    font-size: 18px;
    letter-spacing: 5px;

    color: #d19a28;
}


/* =========================================
   TEXT
========================================= */

.rk-testimonial-text {
    max-width: 720px;

    margin: 0 0 35px;

    font-size: 19px;
    line-height: 1.8;
    font-weight: 400;

    color: #444;
}


/* =========================================
   CLIENT
========================================= */

.rk-testimonial-client {
    display: flex;
    align-items: center;

    gap: 15px;
}


.rk-testimonial-avatar {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #571c1e;

    color: #fff;

    font-size: 14px;
    font-weight: 700;
}


.rk-testimonial-client h4 {
    margin: 0 0 4px;

    font-size: 16px;
    font-weight: 700;

    color: #172554;
}


.rk-testimonial-client span {
    font-size: 13px;

    color: #888;
}


/* =========================================
   ARROWS
========================================= */

.rk-testimonial-arrow {
    position: relative;
    z-index: 5;

    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(87, 28, 30, 0.15);
    border-radius: 50%;

    background: #fff;

    color: #571c1e;

    font-size: 22px;

    cursor: pointer;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.rk-testimonial-prev {
    margin-right: 15px;
}


.rk-testimonial-next {
    margin-left: 15px;
}


.rk-testimonial-arrow:hover {
    background: #571c1e;

    color: #fff;

    transform: scale(1.08);
}


.rk-testimonial-arrow:active {
    transform: scale(0.95);
}


/* =========================================
   DOTS
========================================= */

.rk-testimonial-dots {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 9px;

    margin-top: 30px;
}


.rk-testimonial-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: #ccc;

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}


.rk-testimonial-dot.active {
    width: 28px;

    border-radius: 10px;

    background: #571c1e;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .rk-testimonials {
        padding: 80px 20px;
    }

    .rk-testimonials-heading h2 {
        font-size: 36px;
    }

    .rk-testimonial-track {
        min-height: 450px;
    }

    .rk-testimonial-card {
        padding: 45px 50px;
    }

    .rk-testimonial-text {
        font-size: 17px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .rk-testimonials {
        padding: 65px 15px;
    }


    .rk-testimonials-heading {
        margin-bottom: 35px;
    }


    .rk-testimonials-label {
        font-size: 10px;
        letter-spacing: 2px;
    }


    .rk-testimonials-heading h2 {
        font-size: 28px;
    }


    .rk-testimonials-heading p {
        font-size: 14px;
    }


    .rk-testimonial-slider {
        display: block;
    }


    .rk-testimonial-track {
        min-height: 470px;
    }


    .rk-testimonial-slide {
        padding: 5px;
    }


    .rk-testimonial-card {
        padding: 45px 25px 30px;

        border-radius: 18px;
    }


    .rk-testimonial-quote {
        top: 10px;
        right: 20px;

        font-size: 70px;
    }


    .rk-testimonial-stars {
        margin-bottom: 15px;

        font-size: 15px;
        letter-spacing: 3px;
    }


    .rk-testimonial-text {
        margin-bottom: 25px;

        font-size: 15px;
        line-height: 1.7;
    }


    .rk-testimonial-arrow {
        position: absolute;

        top: 50%;

        width: 42px;
        height: 42px;

        font-size: 18px;

        transform: translateY(-50%);
    }


    .rk-testimonial-arrow:hover {
        transform: translateY(-50%) scale(1.05);
    }


    .rk-testimonial-prev {
        left: 10px;

        margin: 0;
    }


    .rk-testimonial-next {
        right: 10px;

        margin: 0;
    }


    .rk-testimonial-client {
        gap: 12px;
    }


    .rk-testimonial-avatar {
        width: 45px;
        height: 45px;

        font-size: 12px;
    }


    .rk-testimonial-client h4 {
        font-size: 14px;
    }


    .rk-testimonial-client span {
        font-size: 12px;
    }

}










/* =========================================================
   PREMIUM FIREWORKS TESTIMONIALS
   COMPACT 3 CARD SLIDER
========================================================= */

.rk-fireworks-testimonials {
    width: 100%;
    padding: 75px 20px;

    background: #f8f8f8;

    overflow: hidden;
}


/* =========================================================
   HEADING
========================================================= */

.rk-fw-heading {
    text-align: center;

    margin-bottom: 35px;
}

.rk-fw-heading span {
    display: block;

    margin-bottom: 8px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2.5px;

    color: #f97316;
}

.rk-fw-heading h2 {
    margin: 0;

    font-size: 38px;
    line-height: 1.2;

    font-weight: 700;

    color: #000000;
}

.rk-fw-heading p {
    margin: 10px auto 0;

    max-width: 800px;

    font-size: 17px;
    line-height: 1.6;

    color: #777;
}


/* =========================================================
   CAROUSEL
========================================================= */

.rk-fw-carousel {
    position: relative;

    width: 100%;
    max-width: 1250px;

    height: 365px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   STAGE
========================================================= */

.rk-fw-stage {
    position: relative;

    width: 100%;
    max-width: 1050px;

    height: 100%;
}


/* =========================================================
   CARD
========================================================= */

.rk-fw-card {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 390px;
    min-height: 270px;

    padding: 32px 38px;

    border-radius: 0 0 20px 20px;

    background: #fff;

    border: 1px solid rgba(87, 28, 30, 0.08);

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.09);

    transform:
        translate(-50%, -50%)
        scale(0.72);

    opacity: 0;

    z-index: 1;

    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.65s ease,
        filter 0.65s ease;
}


/* =========================================================
   CARD TOP LINE
========================================================= */

.rk-fw-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #1e3a8a;

    border-radius: 20px 20px 0 0;
}


/* =========================================================
   LEFT
========================================================= */

.rk-fw-card.rk-fw-left {
    transform:
        translate(calc(-50% - 370px), -50%)
        scale(0.72);

    opacity: 0.48;

    z-index: 2;
}


/* =========================================================
   CENTER
========================================================= */

.rk-fw-card.rk-fw-center {
    transform:
        translate(-50%, -50%)
        scale(1);

    opacity: 1;

    z-index: 5;

    box-shadow:
        0 25px 65px rgba(0, 0, 0, 0.14);
}


/* =========================================================
   RIGHT
========================================================= */

.rk-fw-card.rk-fw-right {
    transform:
        translate(calc(-50% + 370px), -50%)
        scale(0.72);

    opacity: 0.48;

    z-index: 2;
}


/* =========================================================
   HIDDEN
========================================================= */

.rk-fw-card.rk-fw-hidden-left {
    transform:
        translate(calc(-50% - 650px), -50%)
        scale(0.5);

    opacity: 0;

    z-index: 0;
}


.rk-fw-card.rk-fw-hidden-right {
    transform:
        translate(calc(-50% + 650px), -50%)
        scale(0.5);

    opacity: 0;

    z-index: 0;
}


/* =========================================================
   QUOTE
========================================================= */

.rk-fw-quote {
    position: absolute;

    top: 8px;
    right: 22px;

    font-family: Georgia, serif;

    font-size: 75px;
    line-height: 1;

    color: rgba(87, 28, 30, 0.07);

    pointer-events: none;
}


/* =========================================================
   STARS
========================================================= */

.rk-fw-stars {
    margin-bottom: 12px;

    font-size: 18px;

    letter-spacing: 3px;

    color: #d19a28;
}


/* =========================================================
   TEXT
========================================================= */

.rk-fw-card p {
    margin: 0 0 22px;

    font-size: 16px;

    line-height: 1.7;

    color: #555;
}


/* =========================================================
   CLIENT
========================================================= */

.rk-fw-client {
    display: flex;

    align-items: center;

    gap: 12px;
}


.rk-fw-avatar {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #1e3a8a;

    color: #fff;

    font-size: 14px;
    font-weight: 700;
}


.rk-fw-client h4 {
    margin: 0 0 2px;

    font-size: 18px;

    color: #172554;
}


.rk-fw-client span {
    font-size: 14px;

    color: #888;
}


/* =========================================================
   ARROWS
========================================================= */

.rk-fw-arrow {
    position: relative;

    z-index: 10;

    width: 46px;
    height: 46px;

    flex-shrink: 0;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(87, 28, 30, 0.15);

    border-radius: 50%;

    background: #fff;

    color: #1e3a89;

    font-size: 17px;

    cursor: pointer;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.08);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.rk-fw-prev {
    margin-right: 18px;
}


.rk-fw-next {
    margin-left: 18px;
}


.rk-fw-arrow:hover {
    background: #1e3a89;

    color: #fff;

    transform: scale(1.08);
}


/* =========================================================
   DOTS
========================================================= */

.rk-fw-dots {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    margin-top: 18px;
}


.rk-fw-dots button {
    width: 7px;
    height: 7px;

    padding: 0;
    margin-top: 50px;

    border: none;

    border-radius: 20px;

    background: #ccc;

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}


.rk-fw-dots button.active {
    width: 24px;

    background: #1e3a8a;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .rk-fw-card {
        width: 350px;
    }

    .rk-fw-card.rk-fw-left {
        transform:
            translate(calc(-50% - 285px), -50%)
            scale(0.70);
    }

    .rk-fw-card.rk-fw-right {
        transform:
            translate(calc(-50% + 285px), -50%)
            scale(0.70);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .rk-fireworks-testimonials {
        padding: 60px 15px;
    }


    .rk-fw-heading {
        margin-bottom: 25px;
    }


    .rk-fw-heading h2 {
        font-size: 27px;
    }


    .rk-fw-heading p {
        font-size: 13px;
    }


    .rk-fw-carousel {
        height: 330px;

        display: block;
    }


    .rk-fw-stage {
        height: 100%;
    }


    .rk-fw-card {
        width: calc(100% - 45px);

        min-height: 255px;

        padding: 28px 24px;
    }


    /* Center */

    .rk-fw-card.rk-fw-center {
        transform:
            translate(-50%, -50%)
            scale(1);
    }


    /* Hide side cards on small screens */

    .rk-fw-card.rk-fw-left {
        transform:
            translate(calc(-50% - 230px), -50%)
            scale(0.7);

        opacity: 0;
    }


    .rk-fw-card.rk-fw-right {
        transform:
            translate(calc(-50% + 230px), -50%)
            scale(0.7);

        opacity: 0;
    }


    .rk-fw-card p {
        font-size: 13px;

        line-height: 1.65;
    }


    .rk-fw-quote {
        font-size: 65px;
    }


    /* Mobile arrows */

    .rk-fw-arrow {
        position: absolute;

        top: 50%;

        width: 38px;
        height: 38px;

        font-size: 14px;

        transform: translateY(-50%);
    }


    .rk-fw-arrow:hover {
        transform: translateY(-50%) scale(1.05);
    }


    .rk-fw-prev {
        left: 3px;

        margin: 0;
    }


    .rk-fw-next {
        right: 3px;

        margin: 0;
    }

}











/* =========================================
   PRODUCT CARD BUTTON - FINAL FIX
   ========================================= */

.product-action-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

/* Normal button */
.product-action-btns .btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 130px !important;
    min-width: 130px !important;
    max-width: 130px !important;

    height: 52px !important;
    min-height: 52px !important;
    max-height: 52px !important;

    padding: 0 12px !important;
    margin: 0 !important;

    box-sizing: border-box !important;

    line-height: 1 !important;
    text-align: center !important;
    white-space: nowrap !important;
    text-indent: 0 !important;

    transform: none !important;
}

/* Hover */
.product-action-btns .btn:hover {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 130px !important;
    height: 52px !important;

    padding: 0 12px !important;
    margin: 0 !important;

    text-align: center !important;
    white-space: nowrap !important;

    transform: none !important;
}

/* Focus after clicking */
.product-action-btns .btn:focus,
.product-action-btns .btn:focus-visible {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 130px !important;
    height: 52px !important;

    padding: 0 12px !important;
    margin: 0 !important;

    text-align: center !important;
    white-space: nowrap !important;

    transform: none !important;
}

/* Click + Hover at the same time */
.product-action-btns .btn:focus:hover,
.product-action-btns .btn:active:hover {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 130px !important;
    height: 52px !important;

    padding: 0 12px !important;
    margin: 0 !important;

    box-sizing: border-box !important;

    text-align: center !important;
    white-space: nowrap !important;
    text-indent: 0 !important;
    line-height: 1 !important;

    transform: none !important;
}

/* Active / clicking */
.product-action-btns .btn:active {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 130px !important;
    height: 52px !important;

    padding: 0 12px !important;
    margin: 0 !important;

    text-align: center !important;
    white-space: nowrap !important;

    transform: none !important;
}








/* Premium Feature Icons */
.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        #FFF8E1,
        #FFFFFF
    );

    border: 1px solid #FACC15;

    color: #D97706;

    font-size: 32px;

    box-shadow:
        0 8px 25px rgba(217, 119, 6, 0.10);

    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: translateY(-6px) scale(1.05);

    background: linear-gradient(
        135deg,
        #FEF3C7,
        #FFFFFF
    );

    color: #1E3A8A;

    box-shadow:
        0 12px 30px rgba(30, 58, 138, 0.15);
}












/* =========================================================
   HOMEPAGE FEATURED PRODUCTS - 3 CARD GRID
   ========================================================= */

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}


/* Product Card */

.featured-products-grid .product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}


/* Product Image */

.featured-products-grid .product-img-box {
    width: 100%;
    height: 260px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}


.featured-products-grid .product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}


.featured-products-grid .product-card:hover .product-img-box img {
    transform: scale(1.05);
}


/* Product Information */

.featured-products-grid .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}


.featured-products-grid .product-desc {
    flex: 1;
}


/* Items Count */

.featured-products-grid .product-items-count {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
}


.featured-products-grid .product-items-count i {
    margin-right: 6px;
}


/* Buttons */

.featured-products-grid .product-action-btns {
    margin-top: 20px;
}


/* View All Button */

.featured-products .margin-top-40 {
    margin-top: 40px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 992px) {

    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .featured-products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .featured-products-grid .product-img-box {
        height: 240px;
    }

}












/* =========================================================
   RUDRA ABOUT SECTION - MOBILE FIX
   ========================================================= */

@media only screen and (max-width: 768px) {

    #about.about-section {
        width: 100% !important;
        padding: 55px 0 !important;
        overflow: hidden !important;
    }

    #about.about-section > .container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 16px !important;
        box-sizing: border-box !important;
    }

    /* MAIN GRID */
    #about .about-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;

        width: 100% !important;
        max-width: 100% !important;

        gap: 30px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* =====================================================
       IMAGE
       ===================================================== */

    #about .about-image-wrapper {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        box-sizing: border-box !important;
    }

    #about .about-img-box {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;

        margin: 0 auto !important;
        padding: 0 !important;

        box-sizing: border-box !important;

        overflow: hidden !important;
    }

    #about .about-brand-img {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        object-fit: contain !important;

        box-sizing: border-box !important;
    }


    /* =====================================================
       CONTENT
       ===================================================== */

    #about .about-content {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        text-align: left !important;

        box-sizing: border-box !important;
    }


    /* TAG */

    #about .about-content .section-tag {
        display: inline-block !important;

        max-width: 100% !important;

        margin: 0 0 12px 0 !important;
    }


    /* TITLE */

    #about .about-content .section-title {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 0 14px 0 !important;
        padding: 0 !important;

        font-size: 28px !important;
        line-height: 1.2 !important;

        text-align: left !important;

        word-break: normal !important;
        overflow-wrap: break-word !important;
    }


    /* SUBHEADING */

    #about .about-subheading {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 0 15px 0 !important;
        padding: 0 !important;

        font-size: 18px !important;
        line-height: 1.45 !important;

        text-align: left !important;

        overflow-wrap: break-word !important;
    }


    /* DESCRIPTION */

    #about .about-content > p {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        font-size: 15px !important;
        line-height: 1.75 !important;

        text-align: left !important;

        overflow-wrap: break-word !important;
    }


    /* =====================================================
       MISSION / VISION
       ===================================================== */

    #about .mission-vision-box {
        display: flex !important;

        flex-direction: column !important;
        align-items: stretch !important;

        width: 100% !important;
        max-width: 100% !important;

        gap: 15px !important;

        margin: 24px 0 0 0 !important;
        padding: 0 !important;

        box-sizing: border-box !important;
    }


    #about .mv-card {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        min-width: 0 !important;

        margin: 0 !important;

        padding: 18px !important;

        box-sizing: border-box !important;
    }


    #about .mv-card h4 {
        margin: 0 0 8px 0 !important;

        font-size: 18px !important;
        line-height: 1.3 !important;
    }


    #about .mv-card p {
        width: 100% !important;

        margin: 0 !important;

        font-size: 14px !important;
        line-height: 1.65 !important;

        overflow-wrap: break-word !important;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media only screen and (max-width: 480px) {

    #about.about-section {
        padding: 45px 0 !important;
    }

    #about.about-section > .container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    #about .about-grid {
        gap: 25px !important;
    }

    #about .about-content .section-title {
        font-size: 26px !important;
    }

    #about .about-subheading {
        font-size: 17px !important;
    }

    #about .about-content > p {
        font-size: 15px !important;
    }

    #about .mv-card {
        padding: 16px !important;
    }
}
















/* =========================================
   PREMIUM NAVY + GOLD HEADER ICONS
   Existing class names preserved
   ========================================= */

.nav-actions-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Circular Navy Icon */
.header-icon-btn {
    width: 44px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    position: relative;

    background: #172554;
    color: #facc15;

    border: 1px solid rgba(250, 204, 21, 0.35);
    border-radius: 50%;

    text-decoration: none;

    box-shadow:
        0 4px 12px rgba(23, 37, 84, 0.20);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

/* Gold Icon */
.header-icon-btn i {
    color: #facc15;

    font-size: 18px;
    font-weight: 500;

    line-height: 1;

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}

/* Hover */
.header-icon-btn:hover {
    background: #facc15;
    color: #172554;

    border-color: #facc15;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(250, 204, 21, 0.30);
}

.header-icon-btn:hover i {
    color: #172554;
    transform: scale(1.08);
}

/* =========================================
   PREMIUM BADGE
   ========================================= */

.header-badge {
    position: absolute;

    top: -3px;
    right: -3px;

    min-width: 18px;
    height: 18px;

    padding: 0 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #facc15;
    color: #172554;

    border: 2px solid #172554;
    border-radius: 50%;

    font-size: 10px;
    font-weight: 700;

    line-height: 1;

    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.20);
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {

    .nav-actions-wrapper {
        gap: 8px;
    }

    .header-icon-btn {
        width: 40px;
        height: 40px;
    }

    .header-icon-btn i {
        font-size: 17px;
    }

    .header-badge {
        min-width: 16px;
        height: 16px;

        top: -3px;
        right: -3px;

        font-size: 9px;
    }
}









/* ==========================================
   PREMIUM NAV ICONS
   ========================================== */

.header-icon-btn {
    width: 46px;
    height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    position: relative;

    background: #172554;
    color: #facc15;

    border: 1px solid rgba(250, 204, 21, 0.65);
    border-radius: 50%;

    text-decoration: none;

    box-shadow:
        0 5px 16px rgba(23, 37, 84, 0.22),
        inset 0 1px 2px rgba(255,255,255,0.12);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* Wishlist */
.header-icon-btn .fa-heart {
    color: #000000;
    font-size: 20px;
}


/* Shopping bag SVG */
.premium-cart-icon {
    width: 25px;
    height: 25px;

    fill: none;
    stroke: #000000;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        transform 0.3s ease,
        stroke 0.3s ease;
}


/* ==========================================
   HOVER
   ========================================== */

.header-icon-btn:hover {
    background: #facc15;
    border-color: #facc15;

    transform: translateY(-2px);

    box-shadow:
        0 9px 22px rgba(23, 37, 84, 0.28);
}


/* Heart hover */
.header-icon-btn:hover .fa-heart {
    color: #172554;
}


/* Bag hover */
.header-icon-btn:hover .premium-cart-icon {
    stroke: #172554;
    transform: scale(1.08);
}


/* ==========================================
   BADGE
   ========================================== */

.header-badge {
    position: absolute;

    top: -4px;
    right: -4px;

    min-width: 18px;
    height: 18px;

    padding: 0 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #facc15;
    color: #172554;

    border: 2px solid #ffffff;
    border-radius: 50%;

    font-size: 10px;
    font-weight: 700;
    line-height: 1;

    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.18);
}


/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 768px) {

    .header-icon-btn {
        width: 40px;
        height: 40px;
    }

    .header-icon-btn .fa-heart {
        font-size: 17px;
    }

    .premium-cart-icon {
        width: 23px;
        height: 23px;
    }

    .header-badge {
        min-width: 16px;
        height: 16px;

        top: -3px;
        right: -3px;

        font-size: 9px;
    }
}









/* ==========================================
   PREMIUM SEARCH ICON
   ========================================== */

.header-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    border: none;
    outline: none;

    background: transparent;

    padding: 0;
}


/* Premium magnifying glass */
.premium-search-icon {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: #172554;

    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        transform 0.25s ease,
        stroke 0.25s ease,
        filter 0.25s ease;
}


/* Hover */
.header-search-btn:hover .premium-search-icon {
    stroke: #d99b00;

    transform: scale(1.12);

    filter: drop-shadow(
        0 2px 4px rgba(250, 204, 21, 0.35)
    );
}


/* Click */
.header-search-btn:active .premium-search-icon {
    transform: scale(0.95);
}


/* Mobile */
@media (max-width: 768px) {

    .premium-search-icon {
        width: 18px;
        height: 18px;
    }
}














/* ==========================================
   PREMIUM CATEGORY ICONS
   ========================================== */

.category-icon i {
    font-size: 26px;
    color: #facc15;

    transition:
        transform 0.3s ease,
        color 0.3s ease,
        filter 0.3s ease;
}

.category-card:hover .category-icon i {
    color: #ffffff;
    transform: scale(1.12);

    filter: drop-shadow(
        0 3px 6px rgba(250, 204, 21, 0.45)
    );
}












/* =========================================================
   FAST BEE CRACKERS - MOBILE MENU
   ========================================================= */

@media (max-width: 768px) {

    /* Mobile menu panel */
    .mobile-nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 88%;
        max-width: 390px;
        height: 100vh;

        background: #071633;
        color: #ffffff;

        z-index: 99999;

        overflow-y: auto;
        overflow-x: hidden;

        padding: 0;

        box-shadow: -10px 0 35px rgba(0, 0, 0, 0.35);

        transform: translateX(100%);
        transition: transform 0.35s ease;

        scrollbar-width: thin;
    }

    /* When menu is opened */
    .mobile-nav-menu.active {
        transform: translateX(0);
    }


    /* ---------------------------------------------------------
       MENU TOP AREA
       --------------------------------------------------------- */

    .mobile-nav-menu .mobile-menu-header {
        display: flex;
        align-items: center;
        gap: 8px;

        padding: 18px 14px;

        background: #071633;

        border-bottom: 1px solid rgba(255,255,255,0.12);

        position: sticky;
        top: 0;
        z-index: 10;
    }


    /* Search */
    .mobile-nav-menu .mobile-search {
        flex: 1;
        min-width: 0;
    }

    .mobile-nav-menu .mobile-search input {
        width: 100%;
        height: 44px;

        border: none;
        outline: none;

        border-radius: 25px;

        padding: 0 15px;

        font-size: 14px;

        background: #ffffff;
        color: #222;
    }


    /* Header icon buttons */
    .mobile-nav-menu .mobile-menu-icon {
        width: 42px;
        height: 42px;

        flex: 0 0 42px;

        border-radius: 50%;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 1px solid rgba(255,255,255,0.35);

        color: #ffffff;

        font-size: 19px;

        background: rgba(255,255,255,0.06);
    }


    /* Send inquiry button */
    .mobile-nav-menu .mobile-inquiry-btn {
        height: 44px;

        padding: 0 17px;

        border: none;
        border-radius: 25px;

        background: #ff7518;
        color: #ffffff;

        font-size: 14px;
        font-weight: 700;

        white-space: nowrap;
    }


    /* Close button */
    .mobile-nav-menu .mobile-close {
        width: 40px;
        height: 40px;

        flex: 0 0 40px;

        display: flex;
        align-items: center;
        justify-content: center;

        background: transparent;
        border: none;

        color: #ffffff;

        font-size: 28px;

        cursor: pointer;
    }


    /* ---------------------------------------------------------
       LOGIN / WELCOME
       --------------------------------------------------------- */

    .mobile-nav-menu .mobile-welcome {
        display: flex;
        align-items: center;

        gap: 13px;

        padding: 20px 20px 16px;
    }

    .mobile-nav-menu .mobile-user-icon {
        width: 52px;
        height: 52px;

        flex: 0 0 52px;

        border-radius: 50%;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 1px solid rgba(255,255,255,0.35);

        font-size: 24px;
    }

    .mobile-nav-menu .welcome-text {
        font-size: 13px;
        color: #ffffff;
    }

    .mobile-nav-menu .login-register {
        display: block;

        margin-top: 3px;

        color: #ffd22e;

        font-size: 15px;
        font-weight: 700;

        text-decoration: none;
    }


    /* ---------------------------------------------------------
       SECTION TITLE
       --------------------------------------------------------- */

    .mobile-nav-menu .mobile-section-title {
        display: flex;
        align-items: center;

        gap: 10px;

        padding: 10px 20px;

        color: #ffc928;

        font-size: 10px;
        font-weight: 800;

        letter-spacing: 1.5px;

        text-transform: uppercase;
    }

    .mobile-nav-menu .mobile-section-title::after {
        content: "";

        flex: 1;

        height: 1px;

        background: rgba(255,255,255,0.15);
    }


    /* ---------------------------------------------------------
       MAIN MENU
       --------------------------------------------------------- */

    .mobile-nav-menu ul {
        list-style: none;

        padding: 0;
        margin: 0;
    }

    .mobile-nav-menu li {
        margin: 0;
        padding: 0;
    }

    .mobile-nav-menu li a {
        display: flex;
        align-items: center;

        width: 100%;

        min-height: 52px;

        padding: 0 20px;

        color: #ffffff;

        text-decoration: none;

        font-size: 15px;
        font-weight: 500;

        transition: background 0.2s ease;
    }

    .mobile-nav-menu li a:hover {
        background: rgba(255,255,255,0.06);
    }


    /* Menu icons */
    .mobile-nav-menu li a .menu-icon {
        width: 30px;

        margin-right: 10px;

        display: inline-flex;
        align-items: center;
        justify-content: flex-start;

        font-size: 18px;
    }


    /* Right arrow */
    .mobile-nav-menu li a .menu-arrow {
        margin-left: auto;

        font-size: 17px;

        color: rgba(255,255,255,0.8);
    }


    /* ---------------------------------------------------------
       QUICK ACTIONS
       --------------------------------------------------------- */

    .mobile-quick-actions {
        display: grid;

        grid-template-columns: 1fr 1fr 1fr;

        gap: 8px;

        padding: 8px 20px 18px;
    }

    .mobile-quick-action {
        min-height: 76px;

        border: 1px solid rgba(255,255,255,0.15);

        border-radius: 10px;

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 6px;

        color: #ffffff;

        background: rgba(255,255,255,0.02);

        text-decoration: none;

        font-size: 12px;

        text-align: center;
    }

    .mobile-quick-action i {
        font-size: 21px;
    }

    .mobile-quick-action.inquiry {
        background: #ff7518;

        border-color: #ff7518;

        font-weight: 700;
    }


    /* ---------------------------------------------------------
       CONTACT / GET IN TOUCH
       --------------------------------------------------------- */

    .mobile-contact-box {
        margin: 6px 20px 25px;

        border: 1px solid rgba(255,255,255,0.16);

        border-radius: 12px;

        overflow: hidden;
    }

    .mobile-contact-item {
        display: flex;

        align-items: center;

        min-height: 65px;

        padding: 10px 14px;

        color: #ffffff;

        text-decoration: none;
    }

    .mobile-contact-item + .mobile-contact-item {
        border-top: 1px solid rgba(255,255,255,0.12);
    }

    .mobile-contact-icon {
        width: 40px;
        height: 40px;

        flex: 0 0 40px;

        display: flex;

        align-items: center;
        justify-content: center;

        font-size: 21px;
    }

    .mobile-contact-content {
        flex: 1;

        margin-left: 10px;
    }

    .mobile-contact-title {
        font-size: 14px;

        font-weight: 600;
    }

    .mobile-contact-subtitle {
        margin-top: 3px;

        font-size: 11px;

        color: rgba(255,255,255,0.65);
    }

    .mobile-contact-arrow {
        font-size: 18px;

        margin-left: 8px;
    }


    /* ---------------------------------------------------------
       MOBILE OVERLAY
       --------------------------------------------------------- */

    .mobile-nav-overlay {
        position: fixed;

        inset: 0;

        background: rgba(0,0,0,0.65);

        z-index: 99998;

        opacity: 0;
        visibility: hidden;

        transition: 0.3s ease;
    }

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


    /* ---------------------------------------------------------
       SMALL PHONES
       --------------------------------------------------------- */

    @media (max-width: 380px) {

        .mobile-nav-menu {
            width: 94%;
        }

        .mobile-nav-menu .mobile-menu-header {
            gap: 5px;

            padding: 14px 9px;
        }

        .mobile-nav-menu .mobile-inquiry-btn {
            padding: 0 10px;

            font-size: 12px;
        }

        .mobile-nav-menu .mobile-menu-icon {
            width: 37px;
            height: 37px;

            flex-basis: 37px;
        }

        .mobile-nav-menu .mobile-close {
            width: 34px;
            flex-basis: 34px;
        }

        .mobile-nav-menu li a {
            padding-left: 15px;
            padding-right: 15px;
        }

        .mobile-quick-actions {
            padding-left: 15px;
            padding-right: 15px;
        }

        .mobile-contact-box {
            margin-left: 15px;
            margin-right: 15px;
        }
    }
}












/* =========================================================
   MOBILE MENU - HIDDEN BY DEFAULT
   ========================================================= */

@media (max-width: 768px) {

    .mobile-nav-menu {
        position: fixed !important;
        top: 0;
        right: 0;

        width: 88%;
        max-width: 390px;
        height: 100vh;

        background: #071633;

        z-index: 99999;

        overflow-y: auto;

        /* HIDDEN BEFORE HAMBURGER CLICK */
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;

        transform: translateX(100%) !important;

        transition:
            transform 0.35s ease,
            opacity 0.35s ease,
            visibility 0.35s ease;
    }


    /* SHOW ONLY AFTER HAMBURGER CLICK */

    .mobile-nav-menu.active {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;

        transform: translateX(0) !important;
    }


    /* Overlay hidden by default */

    .mobile-nav-overlay {
        position: fixed !important;
        inset: 0;

        background: rgba(0, 0, 0, 0.65);

        z-index: 99998;

        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease;
    }


    /* Overlay visible after menu opens */

    .mobile-nav-overlay.active {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}











/* =========================================================
   FAST BEE - MOBILE MENU FIX
   ========================================================= */

@media (max-width: 768px) {

    /* =========================================
       HAMBURGER
       ========================================= */

    #hamburgerBtn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;

        width: 44px;
        height: 44px;

        padding: 0;
        border: 0;
        background: transparent;

        cursor: pointer;
        z-index: 100001;
    }

    #hamburgerBtn .hamburger-bar {
        display: block;
        width: 27px;
        height: 3px;

        background: #ffffff;
        border-radius: 5px;

        transition: all 0.3s ease;
    }


    /* =========================================
       MOBILE MENU
       HIDDEN BY DEFAULT
       ========================================= */

    #mobileMenu {
        display: block !important;

        position: fixed !important;

        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;

        width: 88% !important;
        max-width: 390px !important;
        height: 100vh !important;

        background: #071633 !important;

        z-index: 100000 !important;

        overflow-x: hidden !important;
        overflow-y: auto !important;

        /* IMPORTANT */
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;

        transform: translateX(100%) !important;

        transition:
            transform 0.35s ease,
            opacity 0.35s ease,
            visibility 0.35s ease !important;

        box-shadow: -10px 0 30px rgba(0,0,0,0.4);
    }


    /* =========================================
       MOBILE MENU OPEN
       ========================================= */

    #mobileMenu.active {
        visibility: visible !important;

        opacity: 1 !important;

        pointer-events: auto !important;

        transform: translateX(0) !important;
    }


    /* =========================================
       OVERLAY
       ========================================= */

    #mobileOverlay {
        display: block !important;

        position: fixed !important;

        inset: 0 !important;

        background: rgba(0,0,0,0.65) !important;

        z-index: 99999 !important;

        visibility: hidden !important;

        opacity: 0 !important;

        pointer-events: none !important;

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease !important;
    }


    #mobileOverlay.active {
        visibility: visible !important;

        opacity: 1 !important;

        pointer-events: auto !important;
    }


    /* =========================================
       MOBILE MENU HEADER
       ========================================= */

    #mobileMenu .mobile-nav-header {
        display: flex !important;

        align-items: center !important;

        justify-content: space-between !important;

        height: 70px !important;

        padding: 12px 18px !important;

        border-bottom: 1px solid rgba(255,255,255,0.12);

        background: #071633;
    }


    #mobileMenu .mobile-logo {
        width: 125px !important;

        max-width: 125px !important;

        height: auto !important;
    }


    /* =========================================
       CLOSE BUTTON
       ========================================= */

    #mobileCloseBtn {
        width: 42px !important;

        height: 42px !important;

        display: flex !important;

        align-items: center !important;

        justify-content: center !important;

        border: 1px solid rgba(255,255,255,0.3) !important;

        border-radius: 50% !important;

        background: rgba(255,255,255,0.05) !important;

        color: #ffffff !important;

        font-size: 30px !important;

        line-height: 1 !important;

        cursor: pointer !important;
    }


    /* =========================================
       SEARCH
       ========================================= */

    #mobileMenu > div[style*="padding"] {
        padding: 15px 18px !important;
    }

    #mobileMenu > div[style*="padding"] form {
        display: flex !important;

        gap: 7px !important;
    }

    #mobileMenu > div[style*="padding"] input {
        min-width: 0 !important;

        height: 42px !important;

        padding: 8px 14px !important;

        border: none !important;

        border-radius: 22px !important;

        outline: none !important;
    }

    #mobileMenu > div[style*="padding"] button {
        height: 42px !important;

        padding: 8px 15px !important;

        border-radius: 22px !important;

        white-space: nowrap !important;
    }


    /* =========================================
       MOBILE LINKS
       ========================================= */

    #mobileMenu .mobile-nav-list {
        list-style: none !important;

        padding: 5px 0 0 !important;

        margin: 0 !important;
    }


    #mobileMenu .mobile-nav-list li {
        margin: 0 !important;

        padding: 0 !important;
    }


    #mobileMenu .mobile-nav-list li a {
        display: flex !important;

        align-items: center !important;

        min-height: 53px !important;

        padding: 0 22px !important;

        color: #ffffff !important;

        text-decoration: none !important;

        font-size: 15px !important;

        border-bottom: 1px solid rgba(255,255,255,0.08);

        transition: background 0.2s ease;
    }


    #mobileMenu .mobile-nav-list li a:hover {
        background: rgba(255,255,255,0.07) !important;
    }


    /* =========================================
       SEND INQUIRY
       ========================================= */

    #mobileMenu .mobile-cta-box {
        padding: 20px !important;
    }


    #mobileMenu .mobile-cta-box .full-width {
        display: flex !important;

        align-items: center !important;

        justify-content: center !important;

        width: 100% !important;

        min-height: 48px !important;

        border-radius: 25px !important;

        background: #ff7518 !important;

        color: #ffffff !important;

        text-decoration: none !important;

        font-weight: 700 !important;
    }


    /* =========================================
       PREVENT PAGE SCROLL WHEN MENU OPEN
       ========================================= */

    body.mobile-menu-open {
        overflow: hidden !important;
    }
}


/* =============================================
   DESKTOP - ALWAYS HIDE MOBILE MENU
   ============================================= */

@media (min-width: 769px) {

    #mobileMenu,
    #mobileOverlay {
        display: none !important;
    }
}












/* =========================================================
   FAST BEE - MOBILE MENU FINAL FIX
   ========================================================= */

@media (max-width: 768px) {

    /* -----------------------------------------
       HAMBURGER BUTTON
       ----------------------------------------- */

    #hamburgerBtn {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;

        width: 44px;
        height: 44px;

        padding: 0;
        margin: 0;

        border: none;
        background: transparent;

        cursor: pointer;
        z-index: 100001;
    }

    #hamburgerBtn .hamburger-bar {
        display: block !important;

        width: 27px;
        height: 3px;

        background: #ffffff;

        border-radius: 5px;
    }


    /* -----------------------------------------
       MOBILE MENU
       HIDDEN BY DEFAULT
       ----------------------------------------- */

    #mobileMenu {
        display: none !important;

        position: fixed !important;

        top: 0 !important;
        right: 0 !important;

        width: 88% !important;
        max-width: 390px !important;
        height: 100vh !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #071633 !important;

        z-index: 100000 !important;

        overflow-x: hidden !important;
        overflow-y: auto !important;

        box-shadow: -10px 0 35px rgba(0, 0, 0, 0.4);
    }


    /* -----------------------------------------
       MOBILE MENU - OPEN
       ----------------------------------------- */

    #mobileMenu.active {
        display: block !important;
    }


    /* -----------------------------------------
       OVERLAY
       HIDDEN BY DEFAULT
       ----------------------------------------- */

    #mobileOverlay {
        display: none !important;

        position: fixed !important;

        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;

        width: 100% !important;
        height: 100% !important;

        background: rgba(0, 0, 0, 0.65) !important;

        z-index: 99999 !important;
    }


    #mobileOverlay.active {
        display: block !important;
    }


    /* -----------------------------------------
       MOBILE HEADER
       ----------------------------------------- */

    #mobileMenu .mobile-nav-header {
        display: flex !important;

        align-items: center !important;
        justify-content: space-between !important;

        width: 100% !important;
        height: 70px !important;

        padding: 12px 18px !important;

        box-sizing: border-box !important;

        background: #071633 !important;

        border-bottom: 1px solid rgba(255,255,255,0.12);
    }


    #mobileMenu .mobile-logo {
        width: 125px !important;
        height: auto !important;
    }


    /* -----------------------------------------
       CLOSE BUTTON
       ----------------------------------------- */

    #mobileCloseBtn {
        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        width: 42px !important;
        height: 42px !important;

        padding: 0 !important;

        border: 1px solid rgba(255,255,255,0.35) !important;

        border-radius: 50% !important;

        background: transparent !important;

        color: #ffffff !important;

        font-size: 30px !important;
        line-height: 1 !important;

        cursor: pointer !important;
    }


    /* -----------------------------------------
       SEARCH AREA
       ----------------------------------------- */

    #mobileMenu .mobile-search-area {
        padding: 15px 18px !important;
    }


    #mobileMenu .mobile-search-area form {
        display: flex !important;
        gap: 8px !important;
    }


    #mobileMenu .mobile-search-area input {
        flex: 1 !important;

        min-width: 0 !important;

        height: 42px !important;

        padding: 8px 14px !important;

        border: none !important;

        border-radius: 22px !important;

        outline: none !important;
    }


    #mobileMenu .mobile-search-area button {
        height: 42px !important;

        padding: 8px 15px !important;

        border: none !important;

        border-radius: 22px !important;

        white-space: nowrap !important;
    }


    /* -----------------------------------------
       MOBILE NAV LINKS
       ----------------------------------------- */

    #mobileMenu .mobile-nav-list {
        list-style: none !important;

        padding: 5px 0 0 !important;
        margin: 0 !important;
    }


    #mobileMenu .mobile-nav-list li {
        list-style: none !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    #mobileMenu .mobile-nav-link {
        display: flex !important;

        align-items: center !important;

        min-height: 54px !important;

        width: 100% !important;

        padding: 0 22px !important;

        box-sizing: border-box !important;

        color: #ffffff !important;

        background: transparent !important;

        border-bottom: 1px solid rgba(255,255,255,0.08) !important;

        text-decoration: none !important;

        font-size: 15px !important;
        font-weight: 500 !important;
    }


    #mobileMenu .mobile-nav-link:hover {
        background: rgba(255,255,255,0.07) !important;
    }


    /* -----------------------------------------
       SEND INQUIRY
       ----------------------------------------- */

    #mobileMenu .mobile-cta-box {
        padding: 20px !important;
    }


    #mobileMenu #mobileInquiryBtn {
        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;

        min-height: 48px !important;

        border-radius: 25px !important;

        background: #ff7518 !important;

        color: #ffffff !important;

        text-decoration: none !important;

        font-weight: 700 !important;
    }


    /* -----------------------------------------
       STOP PAGE SCROLL WHEN MENU OPEN
       ----------------------------------------- */

    body.mobile-menu-open {
        overflow: hidden !important;
    }
}


/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 769px) {

    #mobileMenu,
    #mobileOverlay {
        display: none !important;
    }
}












/* =========================================================
   FAST BEE - MOBILE HEADER WITH LOGO
   ========================================================= */

@media (max-width: 768px) {

    #mainHeader .nav-container {
        width: 100% !important;
        max-width: 100% !important;

        display: flex !important;
        align-items: center !important;

        padding: 8px 10px !important;
        gap: 7px !important;

        box-sizing: border-box !important;
    }

    /* LOGO - LEFT SIDE */
    #mainHeader .brand-logo {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 42px !important;
        min-width: 42px !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    #mainHeader .header-logo {
        display: block !important;

        width: 60px !important;
        height: 60px !important;

        max-width: 60px !important;
        max-height: 60px !important;

        object-fit: contain !important;
    }


    /* SEARCH */
    #mainHeader .header-search-box {
        display: flex !important;

        flex: 1 1 auto !important;

        width: auto !important;
        min-width: 0 !important;

        margin: 0 !important;
    }

    #mainHeader .header-search-input {
        width: 100% !important;
        min-width: 0 !important;

        height: 40px !important;

        padding: 0 10px !important;

        font-size: 12px !important;
    }

    #mainHeader .header-search-btn {
        width: 36px !important;
        min-width: 36px !important;
    }


    /* HIDE DESKTOP NAV */
    #mainHeader .desktop-nav {
        display: none !important;
    }


    /* WISHLIST + CART */
    #mainHeader .nav-actions-wrapper {
        display: flex !important;
        align-items: center !important;

        /*gap: 4px !important;*/

        margin: 0 !important;
        padding: 0 !important;

        flex-shrink: 0 !important;
    }

    #mainHeader .header-icon-btn {
        /*width: 36px !important;*/
        /*min-width: 36px !important;*/

        /*height: 40px !important;*/

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    /* HIDE SEND INQUIRY ON MOBILE */
    #mainHeader #headerInquiryBtn {
        display: none !important;
    }


    /* HAMBURGER */
    #mainHeader #hamburgerBtn {
        display: flex !important;

        width: 40px !important;
        min-width: 40px !important;

        height: 40px !important;

        margin: 0 !important;
        padding: 0 !important;

        flex-shrink: 0 !important;

        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;

        gap: 5px !important;

        border: none !important;
        background: transparent !important;

        z-index: 100001 !important;
    }

    #mainHeader #hamburgerBtn .hamburger-bar {
        display: block !important;

        width: 25px !important;
        height: 3px !important;

        background: #000000 !important;

        border-radius: 3px !important;
    }
}


/* =========================================================
   SMALL MOBILE - 390px AND BELOW
   ========================================================= */

@media (max-width: 390px) {

    #mainHeader .nav-container {
        padding: 7px 7px !important;
        gap: 4px !important;
    }

    #mainHeader .brand-logo {
        width: 36px !important;
        min-width: 36px !important;
    }

    #mainHeader .header-logo {
        width: 34px !important;
        height: 34px !important;
    }

    #mainHeader .header-icon-btn {
        width: 33px !important;
        min-width: 33px !important;
    }

    #mainHeader #hamburgerBtn {
        width: 36px !important;
        min-width: 36px !important;
    }

    #mainHeader #hamburgerBtn .hamburger-bar {
        width: 23px !important;
    }
}












/* =========================================================
   MOBILE HAMBURGER - VISIBLE ON WHITE HEADER
   ========================================================= */

@media (max-width: 768px) {

    /* Normal state - white hamburger */
    #mainHeader #hamburgerBtn .hamburger-bar {
        background: #ffffff !important;
        transition: background 0.25s ease;
    }

    /* When header becomes white while scrolling */
    #mainHeader.scrolled #hamburgerBtn .hamburger-bar,
    #mainHeader.sticky.scrolled #hamburgerBtn .hamburger-bar,
    #mainHeader.header-scrolled #hamburgerBtn .hamburger-bar {
        background: #0b1835 !important;
    }

}















/* =========================================================
   FAST BEE MOBILE MENU - HAMBURGER / CLOSE FIX
   ========================================================= */

@media (max-width: 768px) {

    /* HAMBURGER - normal/closed state */
    #mainHeader #hamburgerBtn {
        display: flex !important;
        position: relative !important;
        z-index: 100002 !important;
    }

    /* CLOSE BUTTON - hidden by default */
    #mainHeader #mobileMenu .mobile-close-btn {
        display: none !important;
    }

    /* -----------------------------------------------------
       WHEN MOBILE MENU IS OPEN
       ----------------------------------------------------- */

    #mainHeader.menu-open #hamburgerBtn {
        display: none !important;
    }

    #mainHeader.menu-open #mobileMenu .mobile-close-btn {
        display: flex !important;

        width: 40px !important;
        height: 40px !important;

        align-items: center !important;
        justify-content: center !important;

        margin: 0 !important;
        padding: 0 !important;

        border: none !important;
        background: transparent !important;

        color: #ffffff !important;

        font-size: 34px !important;
        line-height: 1 !important;

        cursor: pointer !important;

        position: relative !important;
        z-index: 100005 !important;
    }


    /* Mobile menu itself */
    #mainHeader .mobile-nav-menu {
        z-index: 100004 !important;
    }

    #mainHeader .mobile-nav-overlay {
        z-index: 100003 !important;
    }
}













/* =========================================================
   FAST BEE - FINAL MOBILE MENU BUTTON FIX
   CSS ONLY - DO NOT CHANGE JAVASCRIPT
   ========================================================= */

@media screen and (max-width: 768px) {

    /* -----------------------------------------
       HAMBURGER BUTTON
       ----------------------------------------- */

    #mainHeader #hamburgerBtn {
        width: 36px !important;
        height: 36px !important;

        min-width: 36px !important;
        min-height: 36px !important;

        padding: 0 !important;
        margin: 0 !important;

        display: flex !important;
        flex-direction: column !important;

        align-items: center !important;
        justify-content: center !important;

        gap: 5px !important;

        position: relative !important;
        z-index: 100 !important;

        border: none !important;
        background: transparent !important;

        flex-shrink: 0 !important;
    }


    /* Hamburger lines */

    #mainHeader #hamburgerBtn .hamburger-bar {
        display: block !important;

        width: 25px !important;
        height: 3px !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #000000 !important;

        border-radius: 3px !important;

        transition: none !important;
    }


    /* -----------------------------------------
       MOBILE MENU
       ----------------------------------------- */

    #mainHeader #mobileMenu {
        position: fixed !important;

        z-index: 9999 !important;
    }


    /* -----------------------------------------
       OVERLAY
       ----------------------------------------- */

    #mainHeader #mobileOverlay {
        position: fixed !important;

        z-index: 9998 !important;
    }


    /* -----------------------------------------
       IMPORTANT:
       When menu is OPEN, hide hamburger.
       This prevents hamburger + X overlapping.
       ----------------------------------------- */

    #mainHeader:has(#mobileMenu.active) #hamburgerBtn {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }


    /* -----------------------------------------
       CLOSE X BUTTON
       ----------------------------------------- */

    #mainHeader #mobileCloseBtn {
        width: 38px !important;
        height: 38px !important;

        min-width: 38px !important;
        min-height: 38px !important;

        padding: 0 !important;
        margin: 0 !important;

        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        position: relative !important;
        z-index: 10001 !important;

        border: none !important;
        background: transparent !important;

        color: #ffffff !important;

        font-size: 32px !important;
        font-weight: 300 !important;

        line-height: 1 !important;
    }


    /* -----------------------------------------
       MOBILE MENU HEADER
       ----------------------------------------- */

    #mainHeader #mobileMenu .mobile-nav-header {
        display: flex !important;

        align-items: center !important;
        justify-content: space-between !important;

        min-height: 70px !important;

        padding: 10px 16px !important;
    }


    /* Logo inside mobile menu */

    #mainHeader #mobileMenu .mobile-logo {
        max-width: 150px !important;
        max-height: 50px !important;

        width: auto !important;
        height: auto !important;

        object-fit: contain !important;
    }

}














/* =========================================================
   FAST BEE - MOBILE CART FIX
   Do not remove existing cart CSS
   ========================================================= */

@media (max-width: 767px) {

    /* Cart page container */
    #cartContainer {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Main cart + summary layout */
    #cartContainer > div {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Cart white card */
    #cartContainer > div > div:first-child {
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px !important;
        margin: 0 0 18px 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Cart heading */
    #cartContainer h2 {
        font-size: 1.15rem !important;
        line-height: 1.3 !important;
    }

    /* Cart header */
    #cartContainer > div > div:first-child > div:first-child {
        margin-bottom: 12px !important;
        padding-bottom: 10px !important;
    }

    /* Table wrapper */
    #cartContainer .table-responsive {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        border-radius: 10px !important;
    }

    /* Cart table */
    #cartContainer .table-cart {
        width: 720px !important;
        min-width: 720px !important;
        table-layout: auto !important;
    }

    #cartContainer .table-cart th,
    #cartContainer .table-cart td {
        padding: 10px 8px !important;
        font-size: 0.85rem !important;
        white-space: normal !important;
    }

    /* Product column */
    #cartContainer .table-cart td:nth-child(2) {
        min-width: 230px !important;
    }

    /* Product image */
    #cartContainer .cart-item-img {
        width: 55px !important;
        height: 55px !important;
        flex-shrink: 0 !important;
    }

    /* Product name */
    #cartContainer .table-cart td:nth-child(2) div {
        max-width: 180px;
    }

    /* Quantity control */
    #cartContainer .qty-control {
        display: inline-flex !important;
        align-items: center !important;
        white-space: nowrap !important;
    }

    #cartContainer .qty-btn {
        width: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
        font-size: 18px !important;
    }

    #cartContainer .qty-input {
        width: 38px !important;
        min-width: 38px !important;
        height: 34px !important;
        font-size: 15px !important;
    }

    /* Remove button */
    #cartContainer .table-cart td:last-child button {
        white-space: nowrap !important;
        padding: 7px 10px !important;
        font-size: 0.78rem !important;
    }

    /* Continue Shopping */
    #cartContainer > div > div:first-child > div:last-child {
        margin-top: 15px !important;
        width: 100% !important;
    }

    #cartContainer > div > div:first-child > div:last-child a {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
        text-align: center !important;
        padding: 12px 10px !important;
    }

    /* Order Summary */
    #cartContainer .order-summary-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 18px !important;
        margin: 0 !important;
    }

    #cartContainer .order-summary-card h3 {
        font-size: 1.05rem !important;
    }

    /* Summary rows */
    #cartContainer .order-summary-card > div {
        max-width: 100% !important;
    }

    /* Checkout button */
    #cartContainer .order-summary-card a,
    #cartContainer .order-summary-card button {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        display: block !important;
        text-align: center !important;
    }

    /* Prevent horizontal page scrolling */
    body {
        overflow-x: hidden !important;
    }
}























/* =========================================================
   CHECKOUT MOBILE FIX
   Customer Details ABOVE Order Summary
   ========================================================= */

@media (max-width: 768px) {

    /* Main checkout layout - one column */
    #checkoutContainer > div {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
    }

    /* Customer details card */
    #checkoutContainer > div > div:first-child {
        width: 100% !important;
        min-width: 0 !important;
        padding: 20px !important;
        box-sizing: border-box !important;
    }

    /* Order summary comes BELOW customer details */
    #checkoutContainer > div > div:last-child {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    /* Customer name + mobile number */
    #checkoutContainer #checkoutForm > div {
        grid-template-columns: 1fr !important;
    }

    /* All checkout inputs */
    #checkoutContainer input,
    #checkoutContainer textarea,
    #checkoutContainer select {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Headings */
    #checkoutContainer h2,
    #checkoutContainer h3 {
        line-height: 1.35 !important;
    }

    /* Summary card */
    #checkoutContainer .order-summary-card {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important;
    }

    /* Order summary rows */
    #checkoutContainer .order-summary-card > div {
        max-width: 100% !important;
    }

    /* Place order button */
    #checkoutContainer #submitOrderBtn {
        width: 100% !important;
        box-sizing: border-box !important;
    }
}


/* Extra-small phones */
@media (max-width: 480px) {

    #checkoutContainer {
        width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        box-sizing: border-box !important;
    }

    #checkoutContainer > div {
        gap: 16px !important;
    }

    #checkoutContainer > div > div:first-child,
    #checkoutContainer .order-summary-card {
        padding: 16px !important;
        border-radius: 12px !important;
    }

    #checkoutContainer h2 {
        font-size: 1.15rem !important;
    }

    #checkoutContainer h3 {
        font-size: 1.1rem !important;
    }
}











.why-grid p {
    margin-bottom: 1rem;
    color: #000000;
    
}











/* =========================================================
   PREMIUM CUSTOM MOUSE CURSOR
   ========================================================= */

/* Small center dot */
#cursorDot {
    position: fixed !important;

    width: 7px !important;
    height: 7px !important;

    left: 0;
    top: 0;

    background: #ffd54a;

    border-radius: 50%;

    pointer-events: none !important;

    z-index: 999999 !important;

    transform: translate(-50%, -50%);

    display: block;
}


/* Outer golden circle */
#cursorHalo {
    position: fixed !important;

    width: 36px !important;
    height: 36px !important;

    left: 0;
    top: 0;

    border: 1px solid rgba(255, 213, 74, 0.6);

    border-radius: 50%;

    pointer-events: none !important;

    z-index: 999998 !important;

    transform: translate(-50%, -50%);

    transition:
        width 0.2s ease,
        height 0.2s ease,
        border-color 0.2s ease;

    display: block;
}


/* Cursor when hovering clickable elements */
#cursorHalo.cursor-hover {
    width: 55px !important;
    height: 55px !important;

    border-color: rgba(249, 115, 22, 0.8);
}


/* Don't use the normal mouse pointer on desktop */
@media (min-width: 1025px) {

    html,
    body,
    a,
    button,
    input,
    select,
    textarea {
        cursor: none !important;
    }

}


/* Keep normal cursor on mobile/tablet */
@media (max-width: 1024px) {

    #cursorDot,
    #cursorHalo {
        display: none !important;
    }

}









/* =========================================================
   EXPLORE BY CATEGORY - ICONS ONLY
   ========================================================= */

#categories i.fa-solid::before,
#categories i.fa-regular::before,
#categories i.fa-brands::before {
    color: #1e3a8a !important;
}






.faq-body p {
    color: #000000;
}












/* =========================================================
   RUDRA / FAST BEE
   CONTACT SECTION - FINAL LAYOUT
   LEFT CONTACT BOXES + RIGHT MAP
   ========================================================= */

/* MAIN TWO-COLUMN LAYOUT */
.contact-grid {
    width: 100% !important;

    display: grid !important;

    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr) !important;

    gap: 50px !important;

    align-items: stretch !important;

    box-sizing: border-box !important;
}


/* =========================================================
   LEFT SIDE - CONTACT BOXES
   ========================================================= */

.contact-cards-wrapper {
    width: 100% !important;

    display: grid !important;

    grid-template-columns: 1fr 1fr !important;

    gap: 18px !important;

    align-content: start !important;

    box-sizing: border-box !important;
}


/* CONTACT CARD */
.contact-cards-wrapper .contact-card {
    width: 100% !important;

    min-height: 150px !important;

    margin: 0 !important;

    padding: 12px !important;

    background: #ffffff !important;

    border-radius: 18px !important;

    border: 1px solid rgba(30, 58, 138, 0.10) !important;

    box-shadow: 0 10px 30px rgba(8, 20, 46, 0.08) !important;

    box-sizing: border-box !important;

    display: flex !important;

    flex-direction: column !important;

    justify-content: flex-start !important;

    align-items: flex-start !important;

    overflow: hidden !important;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease !important;
}


/* CARD HOVER */
.contact-cards-wrapper .contact-card:hover {
    transform: translateY(-4px) !important;

    box-shadow: 0 15px 35px rgba(8, 20, 46, 0.12) !important;
}


/* =========================================================
   PREMIUM BLUE ICON
   ========================================================= */

.contact-cards-wrapper .contact-card .card-icon {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 auto 15px auto !important;

    border-radius: 14px !important;

    background: rgba(30, 58, 138, 0.08) !important;

    color: #1E3A8A !important;

    font-size: 22px !important;

    line-height: 1 !important;
    box-sizing: border-box !important;
}

/* ICON ITSELF */
.contact-cards-wrapper .contact-card .card-icon i {
    color: #1E3A8A !important;
    font-size: 22px !important;
    line-height: 1 !important;
}



/* Keep text centered */
.contact-cards-wrapper .contact-card {
    align-items: center !important;
    text-align: center !important;
}

.contact-cards-wrapper .contact-card .card-content {
    width: 100% !important;
    text-align: center !important;
}





/* WHATSAPP */
.contact-cards-wrapper .contact-card .card-icon .fa-whatsapp {
    color: #1E3A8A !important;

    font-size: 23px !important;
}


/* =========================================================
   CARD TEXT
   ========================================================= */

.contact-cards-wrapper .contact-card .card-content {
    width: 100% !important;
}


.contact-cards-wrapper .contact-card h3 {
    margin: 0 0 7px 0 !important;

    color: #08142E !important;

    font-size: 17px !important;

    font-weight: 700 !important;

    line-height: 1.3 !important;
}


.contact-cards-wrapper .contact-card p {
    margin: 0 !important;

    color: #64748B !important;

    font-size: 14px !important;

    line-height: 1.6 !important;

    word-break: normal !important;
}


/* =========================================================
   RIGHT SIDE - MAP
   ========================================================= */

.contact-map-wrapper {
    width: 100% !important;

    min-width: 0 !important;

    height: 100% !important;

    box-sizing: border-box !important;
}


.contact-map-card {
    width: 100% !important;

    height: 100% !important;

    min-height: 100% !important;

    margin: 0 !important;

    padding: 12px !important;

    background: #ffffff !important;

    border-radius: 22px !important;

    border: 1px solid rgba(30, 58, 138, 0.08) !important;

    box-shadow: 0 12px 40px rgba(8, 20, 46, 0.08) !important;

    box-sizing: border-box !important;

    overflow: hidden !important;
}


/* MAP HEADING */
.contact-map-card .map-heading {
    width: 100% !important;

    display: flex !important;

    align-items: center !important;

    gap: 14px !important;

    padding: 15px 12px 18px !important;

    box-sizing: border-box !important;
}


/* MAP ICON */
.contact-map-card .map-icon {
    width: 46px !important;
    height: 46px !important;

    min-width: 46px !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;

    background: rgba(30, 58, 138, 0.08) !important;

    color: #1E3A8A !important;

    font-size: 19px !important;
}


.contact-map-card .map-icon i {
    color: #1E3A8A !important;

    font-size: 19px !important;
}


.contact-map-card .map-heading span {
    display: block !important;

    margin: 0 0 4px 0 !important;

    color: #1E3A8A !important;

    font-size: 11px !important;

    font-weight: 700 !important;

    letter-spacing: 1.5px !important;
}


.contact-map-card .map-heading h3 {
    margin: 0 !important;

    color: #08142E !important;

    font-size: 22px !important;

    font-weight: 700 !important;
}


/* MAP */
.contact-map-card .map-frame {
    width: 100% !important;

    height: 430px !important;

    overflow: hidden !important;

    border-radius: 16px !important;

    box-sizing: border-box !important;
}


.contact-map-card .map-frame iframe {
    width: 100% !important;

    height: 100% !important;

    display: block !important;

    border: 0 !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 992px) {

    .contact-grid {
        grid-template-columns: 1fr !important;

        gap: 25px !important;
    }

    .contact-cards-wrapper {
        grid-template-columns: 1fr 1fr !important;
    }

    .contact-map-wrapper {
        height: auto !important;
    }

    .contact-map-card {
        height: auto !important;
        min-height: 0 !important;
    }

    .contact-map-card .map-frame {
        height: 400px !important;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .contact-grid {
        display: grid !important;

        grid-template-columns: 1fr !important;

        gap: 20px !important;
    }

    .contact-cards-wrapper {
        display: grid !important;

        grid-template-columns: 1fr !important;

        gap: 15px !important;
    }

    .contact-cards-wrapper .contact-card {
        min-height: 0 !important;

        padding: 20px !important;
    }

    .contact-cards-wrapper .contact-card .card-icon {
        width: 50px !important;
        height: 50px !important;

        min-width: 50px !important;

        margin-bottom: 13px !important;
    }

    .contact-cards-wrapper .contact-card .card-icon i {
        font-size: 21px !important;
    }

    .contact-map-card {
        padding: 10px !important;
    }

    .contact-map-card .map-frame {
        height: 350px !important;
    }
}









.admin-card p {
    margin-bottom: 1rem;
    color: #000000;
}











/* ==========================================
   FAST BEE CRACKERS - STATIC HERO BANNER
========================================== */

.premium-hero {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #16001f;
}

.premium-banner-link {
    display: block;
    width: 100%;
    line-height: 0;
}

.premium-banner-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}















/* ==========================================
   NAVBAR ABOVE STATIC HERO BANNER
========================================== */

/* Keep navbar in its own layer */
header,
.navbar,
.main-navbar,
.site-header {
    position: relative;
    z-index: 1000;
}

/* Static hero starts BELOW navbar */
.premium-hero {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #16001f;
}

/* Banner */
.premium-banner-link {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.premium-banner-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}











/* ==========================================
   FAST BEE - NAVBAR ABOVE HERO
========================================== */

.header-nav {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
}

/* Static banner */
.premium-hero {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
}

/* Banner image */
.premium-banner-link {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.premium-banner-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}













/* ==========================================
   FIX NAVBAR MENU TEXT VISIBILITY
========================================== */

.header-nav .nav-menu a {
    color: #111111 !important;
}

.header-nav .nav-menu a:hover {
    color: #f28c00 !important;
}

/* Active menu */
.header-nav .nav-menu a.active {
    color: #f28c00 !important;
}














/* =========================================================
   FAST BEE - PREMIUM NAVBAR DESIGN
   ========================================================= */

/* Main navbar */
.header-nav {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #fffdf8 100%
    ) !important;

    border-bottom: 1px solid rgba(234, 142, 20, 0.25) !important;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 183, 50, 0.15) !important;

    position: relative;
    z-index: 9999;
}


/* Navbar container */
.header-nav .nav-container {
    /* min-height: 100px; */
    padding-left: 28px;
    padding-right: 28px;
}


/* =========================================================
   NAVIGATION LINKS
   ========================================================= */

.header-nav .nav-menu a {
    position: relative;

    color: #171717 !important;

    font-weight: 600 !important;
    font-size: 16px !important;

    padding: 12px 17px !important;

    border-radius: 12px;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}


/* Hover */
.header-nav .nav-menu a:hover {
    color: #e87508 !important;

    background: rgba(255, 173, 32, 0.10);

    transform: translateY(-1px);
}


/* =========================================================
   PREMIUM ACTIVE LINK
   ========================================================= */

.header-nav .nav-menu a.active {
    color: #e87508 !important;

    background: rgba(255, 173, 32, 0.10);
}


/* Gold/orange active line */
.header-nav .nav-menu a.active::after {
    content: "";

    position: absolute;

    left: 18px;
    right: 18px;
    bottom: 3px;

    height: 3px;

    border-radius: 10px;

    background: linear-gradient(
        90deg,
        #e87508,
        #ffbd25
    );
}


/* =========================================================
   SEARCH BOX
   ========================================================= */

.header-nav .search-box {
    border: 1px solid rgba(20, 30, 60, 0.18) !important;

    background: #ffffff !important;

    border-radius: 30px !important;

    box-shadow:
        0 3px 12px rgba(0, 0, 0, 0.05);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.header-nav .search-box:focus-within {
    border-color: #e87508 !important;

    box-shadow:
        0 0 0 4px rgba(232, 117, 8, 0.10),
        0 4px 15px rgba(0, 0, 0, 0.06);
}


/* =========================================================
   WISHLIST + CART
   ========================================================= */

.header-nav .header-icon,
.header-nav .icon-button {
    background: #ffffff !important;

    border: 1px solid rgba(0, 0, 0, 0.06) !important;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.header-nav .header-icon:hover,
.header-nav .icon-button:hover {
    transform: translateY(-2px);

    border-color: rgba(232, 117, 8, 0.35) !important;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   SEND INQUIRY BUTTON
   ========================================================= */

.header-nav .inquiry-btn {
    background: linear-gradient(
        135deg,
        #ffb300,
        #f28a00
    ) !important;

    color: #111111 !important;

    border: none !important;

    border-radius: 30px !important;

    font-weight: 700 !important;

    box-shadow:
        0 5px 15px rgba(242, 138, 0, 0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.header-nav .inquiry-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 22px rgba(242, 138, 0, 0.35);
}


/* =========================================================
   PREMIUM GOLD LINE UNDER NAVBAR
   ========================================================= */

.header-nav::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        #e87508 20%,
        #ffb300 50%,
        #e87508 80%,
        transparent
    );

    opacity: 0.75;
}
















/* =========================================================
   FAST BEE - MOBILE NAVBAR + STATIC HERO FIX
   ========================================================= */

@media (max-width: 768px) {

    /* -----------------------------
       MOBILE NAVBAR
    ----------------------------- */

    .header-nav {
        width: 100% !important;
        height: auto !important;
        min-height: 78px !important;
        background: #ffffff !important;
        position: relative !important;
        z-index: 9999 !important;
    }

    .header-nav .nav-container {
        width: 100% !important;
        min-height: 78px !important;
        height: auto !important;

        padding: 8px 10px !important;

        display: flex !important;
        align-items: center !important;

        gap: 8px !important;

        box-sizing: border-box !important;
    }


    /* LOGO */

    .header-nav .brand-logo {
        flex: 0 0 auto !important;
        width: 62px !important;
        max-width: 62px !important;
    }

    .header-nav .header-logo {
        display: block !important;
        width: 62px !important;
        height: auto !important;
    }


    /* SEARCH */

    .header-nav .header-search-box {
        flex: 1 1 auto !important;

        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;

        margin: 0 !important;
    }

    .header-nav .header-search-input {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }


    /* HIDE DESKTOP MENU */

    .header-nav .desktop-nav {
        display: none !important;
    }


    /* WISHLIST + CART */

    .header-nav .nav-actions-wrapper {
        display: flex !important;
        align-items: center !important;

        gap: 5px !important;

        flex: 0 0 auto !important;
    }

    .header-nav .header-icon-btn {
        width: 42px !important;
        height: 42px !important;

        min-width: 42px !important;
        padding: 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }


    /* HIDE SEND INQUIRY ON MOBILE */

    .header-nav .d-none-mobile {
        display: none !important;
    }


    /* -----------------------------
       HAMBURGER
    ----------------------------- */

    .header-nav .hamburger-toggle {
        display: flex !important;

        flex: 0 0 42px !important;

        width: 42px !important;
        height: 42px !important;

        min-width: 42px !important;
        min-height: 42px !important;

        margin: 0 !important;
        padding: 8px !important;

        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;

        gap: 5px !important;

        background: #ffffff !important;

        border: 1px solid #dddddd !important;
        border-radius: 10px !important;

        cursor: pointer !important;

        position: relative !important;
        z-index: 10000 !important;
    }


    /* HAMBURGER LINES */

    .header-nav .hamburger-toggle .hamburger-bar {
        display: block !important;

        width: 22px !important;
        height: 2px !important;

        background: #111111 !important;

        border-radius: 3px !important;
    }


    /* -----------------------------
       REMOVE OLD HERO HEIGHT
    ----------------------------- */

    .premium-hero {
        width: 100% !important;

        height: auto !important;
        min-height: 0 !important;

        max-height: none !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow: hidden !important;
    }


    /* REMOVE OLD SLIDER HEIGHT RULES */

    .premium-hero-slider {
        width: 100% !important;

        height: auto !important;
        min-height: 0 !important;

        max-height: none !important;

        position: relative !important;
    }


    /* STATIC BANNER */

    .premium-banner-link {
        display: block !important;

        width: 100% !important;

        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        line-height: 0 !important;
    }


    .premium-banner-image {
        display: block !important;

        width: 100% !important;
        height: auto !important;

        min-height: 0 !important;
        max-height: none !important;

        object-fit: contain !important;
    }

}











/* =========================================================
   FAST BEE - MOBILE NAVBAR FIXED / STICKY
   ========================================================= */

@media (max-width: 768px) {

    /* FIX NAVBAR TO TOP */
    #mainHeader.header-nav {
        position: fixed !important;

        top: 0 !important;
        left: 0 !important;
        right: 0 !important;

        width: 100% !important;
        height: 78px !important;
        min-height: 78px !important;

        margin: 0 !important;

        background: #ffffff !important;

        z-index: 99999 !important;

        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.12) !important;
    }


    /* KEEP NAV CONTENT INSIDE HEADER */
    #mainHeader .nav-container {
        height: 78px !important;
        min-height: 78px !important;

        display: flex !important;
        align-items: center !important;

        box-sizing: border-box !important;
    }


    /* HAMBURGER ALWAYS ABOVE EVERYTHING */
    #mainHeader .hamburger-toggle {
        position: relative !important;

        z-index: 100000 !important;

        display: flex !important;

        width: 42px !important;
        height: 42px !important;

        min-width: 42px !important;
        min-height: 42px !important;

        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;

        gap: 5px !important;

        background: #ffffff !important;

        border: 1px solid #dddddd !important;
        border-radius: 10px !important;
    }


    /* HAMBURGER LINES */
    #mainHeader .hamburger-toggle .hamburger-bar {
        display: block !important;

        width: 22px !important;
        height: 2px !important;

        background: #111111 !important;

        border-radius: 5px !important;
    }


    /* =====================================================
       IMPORTANT:
       GIVE PAGE SPACE FOR FIXED HEADER
       ===================================================== */

    body {
        padding-top: 78px !important;
    }


    /* HERO MUST NOT GO UNDER NAVBAR */
    .premium-hero {
        margin-top: 0 !important;
    }


    /* STATIC BANNER */
    .premium-banner-link {
        display: block !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        line-height: 0 !important;
    }


    .premium-banner-image {
        display: block !important;

        width: 100% !important;
        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;
    }

}















/* =========================================================
   FAST CRACKERS - PRODUCT DETAILS MOBILE FIX
   Does not change desktop layout
   ========================================================= */

@media (max-width: 768px) {

    /* Prevent horizontal overflow */
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
    }

    /* Product banner */
    .page-banner {
        padding: 70px 15px 30px !important;
    }

    .page-banner h1 {
        font-size: 1.65rem !important;
        line-height: 1.25 !important;
        margin: 10px 0 0 !important;
        word-break: break-word;
    }

    .page-banner .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
    }


    /* Main product section */
    .section-padding {
        padding: 25px 12px !important;
    }


    /* MAIN PRODUCT CARD
       Change 2 columns -> 1 column */
    .product-detail-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 22px !important;

        width: 100% !important;
        max-width: 100% !important;

        padding: 15px !important;
        margin: 0 !important;

        box-sizing: border-box !important;
        border-radius: 14px !important;
    }


    /* Product image area */
    .product-detail-grid > div:first-child {
        width: 100% !important;
        max-width: 100% !important;

        padding: 15px !important;
        margin: 0 !important;

        box-sizing: border-box !important;
        overflow: hidden !important;
    }


    /* Product image */
    .product-detail-grid > div:first-child img {
        display: block !important;

        width: 100% !important;
        max-width: 280px !important;
        height: auto !important;
        max-height: 300px !important;

        object-fit: contain !important;

        margin: 15px auto 5px !important;
    }


    /* Discount badge */
    .product-detail-grid .discount-badge {
        left: 12px !important;
        top: 12px !important;

        font-size: 0.78rem !important;
        padding: 5px 10px !important;
    }


    /* Wishlist button */
    .product-detail-grid .wishlist-toggle-btn {
        top: 12px !important;
        right: 12px !important;

        width: 38px !important;
        height: 38px !important;

        font-size: 1.15rem !important;
    }


    /* Product information column */
    .product-detail-grid > div:last-child {
        width: 100% !important;
        max-width: 100% !important;

        min-width: 0 !important;

        box-sizing: border-box !important;
        padding: 0 !important;
    }


    /* Category */
    .product-detail-grid > div:last-child > span {
        display: block !important;

        font-size: 0.78rem !important;
        letter-spacing: 0.8px !important;

        margin-bottom: 6px !important;
    }


    /* Product title */
    .product-detail-grid h2 {
        font-size: 1.45rem !important;
        line-height: 1.3 !important;

        margin: 5px 0 12px !important;

        word-break: break-word !important;
    }


    /* Description */
    .product-detail-grid p {
        font-size: 0.92rem !important;
        line-height: 1.6 !important;

        margin-bottom: 18px !important;
    }


    /* =====================================================
       PRICE BOX
       ===================================================== */

    .product-detail-grid > div:last-child > div {
        max-width: 100%;
        box-sizing: border-box;
    }


    /* Pricing box */
    .product-detail-grid > div:last-child > div[style*="background: #fff8e6"] {
        padding: 15px !important;
        margin-bottom: 20px !important;

        width: 100% !important;
        box-sizing: border-box !important;
    }


    /* Price contents */
    .product-detail-grid > div:last-child > div[style*="background: #fff8e6"] > div:first-child {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;

        gap: 7px !important;
    }


    /* Original price */
    .product-detail-grid > div:last-child > div[style*="background: #fff8e6"] > div:first-child > div:first-child {
        font-size: 0.9rem !important;
        width: 100% !important;
    }


    /* Selling price */
    .product-detail-grid > div:last-child > div[style*="background: #fff8e6"] > div:first-child > div:last-child {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;

        width: 100% !important;
    }


    /* Saving text */
    .product-detail-grid > div:last-child > div[style*="background: #fff8e6"] > div:last-child {
        font-size: 0.78rem !important;
        line-height: 1.5 !important;

        margin-top: 8px !important;
    }


    /* =====================================================
       QUANTITY + BUTTONS
       ===================================================== */

    .product-detail-grid .qty-control {
        width: 100% !important;
        max-width: 150px !important;

        justify-content: center !important;
        box-sizing: border-box !important;
    }


    /* Action area */
    .product-detail-grid > div:last-child > div[style*="margin-bottom: 25px"] {
        display: flex !important;

        flex-direction: column !important;
        align-items: stretch !important;

        gap: 12px !important;

        width: 100% !important;
        margin-bottom: 20px !important;
    }


    /* Quantity control */
    .product-detail-grid .qty-control {
        height: 44px !important;
        margin: 0 auto !important;
    }


    /* Add to cart */
    .product-detail-grid .btn-add-cart-detail {
        width: 100% !important;
        height: 46px !important;

        padding: 0 15px !important;

        box-sizing: border-box !important;
    }


    /* Buy now */
    .product-detail-grid .btn-buy-now {
        width: 100% !important;
        height: 46px !important;

        padding: 0 15px !important;

        box-sizing: border-box !important;
    }


    /* =====================================================
       PRODUCT HIGHLIGHTS
       ===================================================== */

    .product-detail-grid > div:last-child > div[style*="grid-template-columns"] {
        display: grid !important;

        grid-template-columns: 1fr !important;

        gap: 10px !important;

        width: 100% !important;
    }


    .product-detail-grid > div:last-child > div[style*="grid-template-columns"] > div {
        width: 100% !important;

        padding: 11px 12px !important;

        box-sizing: border-box !important;

        font-size: 0.82rem !important;
        line-height: 1.45 !important;
    }


    /* =====================================================
       BOX CONTENTS
       ===================================================== */

    .section-padding .table-responsive {
        width: 100% !important;
        overflow-x: auto !important;

        -webkit-overflow-scrolling: touch;
    }


    .section-padding .table-responsive table {
        min-width: 500px;
    }


    /* Box contents card */
    .section-padding .table-responsive + * {
        max-width: 100%;
    }


    /* =====================================================
       RELATED PRODUCTS
       ===================================================== */

    .shop-product-grid {
        width: 100% !important;
        max-width: 100% !important;

        grid-template-columns: 1fr !important;

        gap: 18px !important;
    }


    .shop-product-grid .product-card {
        width: 100% !important;
        max-width: 100% !important;

        box-sizing: border-box !important;
    }


    /* Related product images */
    .shop-product-grid .product-card-image {
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }


    /* Related heading */
    .section-padding h3 {
        font-size: 1.2rem !important;
    }

}


/* =========================================================
   SMALL PHONES - 320px to 380px
   ========================================================= */

@media (max-width: 380px) {

    .page-banner {
        padding: 65px 10px 25px !important;
    }

    .page-banner h1 {
        font-size: 1.4rem !important;
    }

    .product-detail-grid {
        padding: 10px !important;
        gap: 18px !important;
    }

    .product-detail-grid > div:first-child {
        padding: 10px !important;
    }

    .product-detail-grid > div:first-child img {
        max-width: 240px !important;
        max-height: 260px !important;
    }

    .product-detail-grid h2 {
        font-size: 1.3rem !important;
    }

    .product-detail-grid > div:last-child > div[style*="background: #fff8e6"] {
        padding: 12px !important;
    }

    .product-detail-grid > div:last-child > div[style*="background: #fff8e6"] > div:first-child > div:last-child {
        font-size: 1.35rem !important;
    }

}