/* =========================
   Base / Layout
   ========================= */
html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Anek Gurmukhi', sans-serif;
    background-color: #EFEFEF;

    /* Footer stick */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-content {
    flex: 1;
}

/* =========================
   Header + Nav
   ========================= */
.site-header {
    background-color: #fff;
    position: fixed;
    top: 0;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.10);
    width: 100%;
}


.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.left-section {
    display: flex;
    align-items: center;
    gap: 35px;
}

.logo {
    width: 13%;
}

.logo-link {
    display: inline-flex;
    align-items: center;
}

.menu-icon {
    font-size: 25px;
    cursor: pointer;
    color: #001229;
    background: transparent;
    border: 0;
    padding: 3px;
    margin-top: -3px;
}

.menu-icon:hover {
    color: #8BAEC3;
}

/* main nav */
.main-nav {
    width: 100%;
    background: #fff;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    margin-left: 64px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.main-nav ul li a {
    font-family: 'Bebas Neue', sans-serif;
    text-decoration: none;
    color: #000;
    font-size: 20px;
    letter-spacing: 1.5px;
    font-weight: 400;
    text-transform: uppercase;
}

.main-nav ul li a:hover {
    color: #fd0000;
}

/* =========================
   Search (animated)
   ========================= */
.search-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.search-box {
    position: relative;
    width: 648px;
    height: 50px;
    background: #eee;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    padding-left: 38px;
    box-sizing: border-box;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.search-input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 16px;
    color: #0f172a;
    z-index: 3;
    padding-right: 14px;
    box-sizing: border-box;
}

.search-input::placeholder {
    opacity: 0;
}

.center-holder {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 4px;
    align-items: center;
    color: #777;
    pointer-events: none;
    transition: left 320ms cubic-bezier(.2, .9, .2, 1), transform 320ms;
    z-index: 2;
}

.search-box:focus-within .center-holder,
.search-box.has-value .center-holder {
    left: 18px;
    transform: translateY(-50%);
}

.center-holder svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
}

.fake-placeholder {
    font-size: 16px;
    position: relative;
    top: 2px;
    white-space: nowrap;
    transition: opacity 120ms linear, transform 220ms ease;
}

.search-box.has-value .fake-placeholder {
    opacity: 0;
    transform: translateY(-2px);
    visibility: hidden;
}

/* =========================
   Sidebar Navigation (Menu header + divided rows)
   ========================= */
/* ===== Sidebar (opens from LEFT) ===== */
.navigation {
    position: fixed;
    top: 0;
    left: -320px;
    /* hidden on the LEFT */
    width: 300px;
    height: 100%;
    background: #f6f6f6;
    box-shadow: 8px 0 24px rgba(0, 0, 0, 0.15);
    transition: right 320ms cubic-bezier(.2, .9, .2, 1);
    /* smoother */
    z-index: 3000;
    padding: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    will-change: left;
}

.navigation.navigation-open {
    right: 0;
}



/* ===== Backdrop ===== */
.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 250ms ease;
    z-index: 2500;
}

/* When menu is open */
.nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

/* Optional: prevent page scroll when menu open */
body.nav-lock {
    overflow: hidden;
}

/* Header row inside the menu */
.nav-head {
    height: 67px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.08),
        0 6px 12px rgba(0, 0, 0, 0.06);
    background: #ffffff;
}

.nav-title {
    font-size: 18px;
    font-weight: 700;
    color: #001229;
}

/* Close icon */
.close-icon {
    font-size: 28px;
    color: #001229;
    cursor: pointer;
    background: transparent;
    border: 0;
    padding: 0;
    line-height: 1;
}

.close-icon:hover {
    opacity: 0.7;
}

/* Menu list */
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Each row */
.nav-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Link style */
.nav-list li a {
    display: block;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #001229;
    text-decoration: none;
}

.nav-list li a:hover {
    background: #f4f6f8;
}

/* =========================
   Footer
   ========================= */
.novo-footer2 {
    margin-top: auto;
    color: #eaf2f6;
    background: #000000;
    border-top: 1px solid rgba(139, 174, 195, 0.18);
}

.novo-footer2__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 42px 20px 24px;
}

.novo-footer2__top {
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(234, 242, 246, 0.10);
}

.novo-footer2__brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.novo-footer2__logo {
    width: 150px;
    max-width: 100%;
    display: block;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.25));
}

.novo-footer2__tagline {
    margin: 0;
    max-width: 520px;
    line-height: 1.7;
    font-size: 14px;
    color: rgba(234, 242, 246, 0.75);
}

.novo-footer2__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding-top: 22px;
}

.novo-footer2__col h5 {
    margin: 0 0 10px;
    font-size: 14px;
    letter-spacing: 0.3px;
    color: #ffffff;
}

.novo-footer2__col a {
    display: block;
    margin: 10px 0;
    text-decoration: none;
    font-size: 14px;
    color: rgba(234, 242, 246, 0.78);
    transition: color 0.15s ease;
}

.novo-footer2__col a:hover {
    color: #8BAEC3;
}

.novo-footer2__bottom {
    border-top: 1px solid rgba(234, 242, 246, 0.10);
    padding: 14px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.novo-footer2__bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(234, 242, 246, 0.72);
}

.mobile-bar {
    display: none;
    /* hidden by default */
}

/* =========================
   Page Loader
   ========================= */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;

    /* semi-transparent overlay */
    background: rgba(255, 255, 255, 0.7);

    /* subtle blur effect (modern browsers) */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

/* Centered content */
.page-loader__inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo */
.page-loader__logo {
    width: 160px;
    max-width: 60%;
    opacity: 0.9;
    animation: loaderPulse 1.8s ease-in-out infinite;
}
.product-description-container2 {
  display: none;
}


/* Soft breathing animation */
@keyframes loaderPulse {
    0% {
        transform: scale(1);
        opacity: 0.85;
    }

    50% {
        transform: scale(1.04);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.85;
    }
}


/* =========================
   Responsive
   ========================= */
@media (min-width: 768px) {
    .menu-icon {
        display: none;
    }
}

@media (max-width: 900px) {
    .novo-footer2__links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    /* =========================
     Header layout
     ========================= */
    .site-header .header-container {
        padding-left: 12px;
        padding-right: 2px;
        /* pushes menu icon closer to edge */
    }

    .site-header .left-section {
        width: 100%;
        gap: 0;
        /* remove big desktop gap */
        align-items: center;
    }

    .site-header .logo {
        width: 35%;
        margin-bottom: 0;
        margin-left: 9px;
    }

    .site-header .menu-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* =========================
     Hide desktop-only elements
     ========================= */
    .search-wrapper,
    .search-box,
    .main-nav {
        display: none;
    }

    /* =========================
     Slider spacing
     ========================= */
    .slider-container {
        margin-top: 65px;
        height: 520px;
    }

    /* =========================
     About typography
     ========================= */
    .about-page h1 {
        font-size: 24px;
    }

    .about-page h2 {
        font-size: 20px;
    }

    .about-page p {
        font-size: 15px;
    }

    /* =========================
     Footer
     ========================= */
    .novo-footer2__links {
        grid-template-columns: 1fr;
    }

    .mobile-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        height: 64px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        background: #ffffff;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        z-index: 2000;
    }

    .mobile-bar__item {
        width: 25%;
        height: 100%;
        border: 0;
        background: transparent;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        text-decoration: none;
        color: #001229;
        font-family: 'Anek Gurmukhi', sans-serif;
        cursor: pointer;
    }

    .mobile-bar__icon {
        font-size: 18px;
        line-height: 1;
    }

    .mobile-bar__label {
        font-size: 11px;
        opacity: 0.85;
    }

    .mobile-bar__item:active {
        transform: translateY(1px);
    }

    /* IMPORTANT: give page space so content/footer isn't hidden behind bar */
    body {
        padding-bottom: 64px;
    }


    .mobile-bar__item--code .mobile-bar__icon {
        color: #000000;
        /* your brand teal */
    }

    .mobile-bar__item--code .mobile-bar__label {
        font-weight: 600;
    }

    .page-content {
        padding-bottom: 70px;
        /* space for the fixed mobile bar */
    }

    .novo-footer2 {
        padding-bottom: 70px;
        /* so the footer bottom is not hidden */
    }

    body {
        padding-bottom: 0;
        /* remove body padding if you had it */
    }

    .mobile-bar__item.active {
        color: #007c8a;
    }

    /* Reverse logo & menu icon order (mobile only) */
    .site-header .left-section {
        display: flex;
        align-items: center;
        width: 100%;
    }

    /* Menu icon on the LEFT */
    .site-header .menu-icon {
        order: 1;
        margin-left: 0;
        margin-right: auto;
        /* pushes logo away */
    }

    /* Logo on the RIGHT */
    .site-header .logo {
        order: 2;
        margin-left: auto;
        /* pushes logo to far right */
        margin-right: 6px;
        /* small breathing space */
        width: 38%;
    }

    .navigation {
        transition: left 320ms cubic-bezier(.2, .9, .2, 1);
        /* smoother */

    }

    .navigation.navigation-open {
        left: 0;
    }

}

/* =========================
   Search Result Popup (ISOLATED)
   ========================= */
.sr-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    /* higher than header, sidebar, loader */
}

.sr-hidden {
    display: none;
}

.sr-box {
    background: #ffffff;
    padding: 24px 32px;
    border-radius: 10px;
    text-align: center;
    min-width: 260px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    font-family: 'Anek Gurmukhi', sans-serif;
}

.sr-box p {
    margin: 0;
    font-size: 16px;
    color: #001229;
}

.sr-box button {
    margin-top: 16px;
    padding: 6px 22px;
    border: 0;
    border-radius: 6px;
    background: #001229;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.sr-box button:hover {
    opacity: 0.9;
}

/* =========================
   Photo Page Specific Styling
   ========================= */
/* Photo Page Styling */
.main-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 100px;
}


.left-column {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-image-container {
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.product-description-container {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    
}


.product-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #e74c3c;
    /* Example accent color */
    padding-bottom: 10px;
    display: inline-block;
}


.product-description {
    font-family: 'Anek Gurmukhi', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.product-specs {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #333;
}

.product-specs h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-specs ul {
    list-style: none;
    padding: 0;
}

.product-specs li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.product-specs li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-content {
        flex-direction: column;
        align-items: center;
    }

    .left-column,
    .product-image-container,
    .product-description-container {
        width: 100%;
        max-width: 100%;
    }
    .product-title2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #e74c3c;
    /* Example accent color */
    padding-bottom: 10px;
    display: inline-block;
    }
    .product-title {
    display: none;
    }
    
    .product-specs {
    margin-bottom: 25px;
    }
  
.product-description-container2 {
    display: block;
  }

.product-description-container {
    display: none;
  }
  
}