@media (max-width: 767px) {
    /* 1. Make the main header container dark and give it extra bottom space */
    header.main-header {
        background-color: rgb(21, 21, 21) !important;
        padding-bottom: 24px !important; /* Creates the dark background behind the curves */
        margin-bottom: -24px !important; /* THE TRICK: Pulls the next elements up naturally without breaking their sticky physics */
    }

    /* 2. Keep your slim announcement bar styling and white text */
    .header-top.space-bg {
        background-color: transparent !important;
    }

    .ae-anno-announcement-wrapper {
        background-color: transparent !important; 
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
      --text-color: #ffffff !important;
    }

    /* 3. Add the curves to your navigation bars without touching their position properties */
    #header-sticky, 
    #header-tab-sticky, 
    #header-mob-sticky {
        background-color: #ffffff !important;
        border-top-left-radius: 17px !important;  /* Creates the left curve */
        border-top-right-radius: 17px !important; /* Creates the right curve */
    }
}
@media (min-width: 768px) {
    /* Destroys the entire top row (announcement + social icons) on desktop */
    .header-top.space-bg {
        display: none !important;
    }
}


/* =================================================================
   HERO SECTION — "Shop Smarter Today!" — Elevated Version
   ==@media (min-width: 768px) {
    .ae-anno-announcement-wrapper {
        display: none !important;
    }
}=============================================================== */

.oria-homepage-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 20px 20px;
    position: relative;
    overflow: hidden;
}
/* ---- Drifting gradient blobs behind the whole section ---- */
.oria-homepage-layout::before,
.oria-homepage-layout::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.18;
}
.oria-homepage-layout::before {
    width: 280px; height: 280px;
    background: radial-gradient(circle, #38bdf8, transparent 70%);
    top: -80px; left: -60px;
    animation: oria-blob-drift-a 14s ease-in-out infinite alternate;
}
.oria-homepage-layout::after {
    width: 220px; height: 220px;
    background: radial-gradient(circle, #0ea5e9, transparent 70%);
    bottom: -60px; right: 5%;
    animation: oria-blob-drift-b 11s ease-in-out infinite alternate;
}
@keyframes oria-blob-drift-a {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(30px, 20px) scale(1.15); }
}
@keyframes oria-blob-drift-b {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-25px, -15px) scale(1.1); }
}
.our-story-section {
    max-width: 700px;
    position: relative;
    z-index: 1;
}
/* Give hero content proper clearance from the categories sidebar on
   desktop, so text never overlaps it */
@media (min-width: 992px) {
    .our-story-section {
        margin-left: 300px;
        padding-top: 30px;
    }
}
/* ---- Floating decorative icon shapes — anchored near the title
        only (not spanning the full section), so they never drift
        into the paragraph text on tall/wide layouts ---- */
.hero-title {
    position: relative;
}
.hero-title::before,
.hero-title::after {
    content: "";
    position: absolute;
    z-index: -1;
    opacity: 0.18;
    pointer-events: none;
}
/* small bolt shape, upper right of the headline, slow float */
.hero-title::before {
    width: 14px; height: 22px;
    top: -18px; right: -8px;
    background: #0ea5e9;
    clip-path: polygon(60% 0%, 0% 60%, 45% 60%, 40% 100%, 100% 40%, 55% 40%);
    animation: oria-float-a 5s ease-in-out infinite alternate;
}
/* small rounded square, just above the headline, slow float, opposite phase */
.hero-title::after {
    width: 16px; height: 16px;
    top: -22px; left: 30%;
    background: #38bdf8;
    border-radius: 6px;
    transform: rotate(20deg);
    animation: oria-float-b 6.5s ease-in-out infinite alternate;
}
@keyframes oria-float-a {
    from { transform: translateY(0) rotate(0deg); }
    to   { transform: translateY(8px) rotate(12deg); }
}
@keyframes oria-float-b {
    from { transform: translateY(0) rotate(20deg); }
    to   { transform: translateY(-6px) rotate(32deg); }
}
/* ---- Headline, staggered fade-in on load ---- */
.hero-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
    opacity: 0;
    animation: oria-fade-up 0.6s ease forwards;
    animation-delay: 0.05s;
}
@media (max-width: 600px) {
    .hero-title { font-size: 32px; }
}
@keyframes oria-fade-up {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* ---- "Smarter" highlight box: a clean parallelogram outline
        (built via clip-path, not skew — avoids overflow glitches),
        echoing the slanted stripes in the logo. Fades/scales in on
        load, glows on hover via drop-shadow (which respects the
        clipped shape, unlike box-shadow). ---- */
.circle-highlight {
    display: inline-block;
    position: relative;
    color: inherit;
    padding: 3px 10px;
    opacity: 0;
    transform: scale(0.9);
    animation: oria-highlight-in 0.4s ease forwards;
    animation-delay: 0.5s;
    transition: filter 0.25s ease;
}
.circle-highlight::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: #38bdf8;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.circle-highlight::after {
    content: "";
    position: absolute;
    inset: 2.5px;
    z-index: -1;
    background: #ffffff;
    clip-path: polygon(6.5px 0, 100% 0, calc(100% - 6.5px) 100%, 0 100%);
}
@keyframes oria-highlight-in {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}
.circle-highlight:hover {
    filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.6));
}
/* ---- Button row: "About us" + "Read our Blog", clean edges,
        sliding fill on hover ---- */
.oria-hero-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 4px 0 28px 0;
    opacity: 0;
    animation: oria-fade-up 0.6s ease forwards;
    animation-delay: 0.25s;
}
.story-btn,
.oria-blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
    border: 1.5px solid #0f172a;
    border-radius: 6px;
    padding: 7px 14px;
    font-size: 14.5px;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    margin: 0;
    z-index: 0;
}
.story-btn::before,
.oria-blog-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #0f172a;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}
.story-btn:hover::before,
.oria-blog-btn:hover::before {
    transform: scaleX(1);
}
.story-btn:hover,
.oria-blog-btn:hover {
    color: #ffffff;
}
/* Secondary button: subtle outline instead of solid border, so
   "About us" reads as the primary action */
.oria-blog-btn {
    border-color: #cbd5e1;
    color: #475569;
}
.oria-blog-btn::before {
    background: #0ea5e9;
}
.oria-blog-btn:hover {
    color: #ffffff;
    border-color: #0ea5e9;
}

/* ---- Body paragraphs, fade in slightly after the button ---- */
.story-content {
    position: relative;
    z-index: 1;
}
.story-content p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #334155;
    margin: 0 0 18px 0;
    opacity: 0;
    animation: oria-fade-up 0.6s ease forwards;
}
.story-content p:nth-of-type(1) { animation-delay: 0.4s; }
.story-content p:nth-of-type(2) { animation-delay: 0.5s; }
.story-content strong {
    color: #0f172a;
}
/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .oria-homepage-layout::before,
    .oria-homepage-layout::after,
    .our-story-section::before,
    .our-story-section::after,
    .hero-title,
    .story-btn,
    .story-content p {
        animation: none !important;
        opacity: 1 !important;
    }
    .circle-highlight::before,
    .circle-highlight::after {
        width: 100% !important;
        height: 100% !important;
        animation: none !important;
    }
}

/* =================================================================
   Google Review Widget CSS
   ================================================================= */

.oria-reviews-section {
    padding: 50px 15px;
    background: #f8fafc;
}
.oria-reviews-container {
    max-width: 1100px;
    margin: 0 auto;
}
.oria-reviews-header {
    text-align: center;
    margin-bottom: 32px;
}
.oria-reviews-title {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}
.oria-reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.oria-reviews-score {
    font-size: 20px;
    font-weight: 700;
    color: #0ea5e9;
}
.star { color: #e2e8f0; font-size: 16px; }
.star.filled { color: #fbbf24; }
.oria-reviews-count { font-size: 13px; color: #64748b; }
/* --- SLIDER LAYOUT CHANGES ONLY (FIXED FOR DESKTOP) --- */
.oria-reviews-grid,
.oria-reviews-slider {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
}
/* Hide scrollbar on mobile/tablet touch screens */
@media (max-width: 768px) {
    .oria-reviews-grid,
    .oria-reviews-slider {
        scrollbar-width: none;
    }
    .oria-reviews-grid::-webkit-scrollbar,
    .oria-reviews-slider::-webkit-scrollbar {
        display: none;
    }
}
/* Show a sleek, custom scrollbar on Desktop so mouse users can slide */
@media (min-width: 769px) {
    .oria-reviews-grid,
    .oria-reviews-slider {
        scrollbar-width: thin;
        scrollbar-color: #cbd5e1 #f1f5f9;
    }
    .oria-reviews-grid::-webkit-scrollbar,
    .oria-reviews-slider::-webkit-scrollbar {
        height: 8px;
    }
    .oria-reviews-grid::-webkit-scrollbar-track,
    .oria-reviews-slider::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 10px;
    }
    .oria-reviews-grid::-webkit-scrollbar-thumb,
    .oria-reviews-slider::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 10px;
    }
    .oria-reviews-grid::-webkit-scrollbar-thumb:hover,
    .oria-reviews-slider::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }
}
.oria-review-card {
    flex: 0 0 auto;
    width: 280px; /* Keeps cards a fixed width so they slide side-by-side */
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px;
}
/* ------------------------------------------------------ */
.oria-review-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.oria-review-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.oria-review-avatar-fallback {
    display: flex; align-items: center; justify-content: center;
    background: #eefbff; color: #0ea5e9; font-weight: 700;
}
.oria-review-author { font-weight: 600; font-size: 14px; color: #0f172a; }
.oria-review-text { font-size: 13.5px; color: #475569; line-height: 1.5; margin: 0 0 10px 0; }
.oria-review-time { font-size: 12px; color: #94a3b8; }
.oria-reviews-cta {
    display: block;
    text-align: center;
    margin-top: 28px;
    color: #0ea5e9;
    font-weight: 600;
    text-decoration: none;
}

/* =================================================================
   Hide breadcrumb section
   ================================================================= */
.breadcrumb__area {
    display: none !important;
}


/* -----------------------------------------------------------------
   "WHAT'S IN THE BOX" SECTION — icons + layout
   ----------------------------------------------------------------- */
.oria-witb-section {
    padding: 40px 15px;
    background: #ffffff;
}
.oria-witb-container {
    max-width: 1000px;
    margin: 0 auto;
}
.oria-witb-tab-cutout {
    display: block;
    width: 60px;
    height: 4px;
    background-color: #52c9ee;
    margin: 0 auto 20px auto;
    border-radius: 2px;
}
.oria-witb-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}
.oria-witb-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
@media (min-width: 768px) {
    .oria-witb-items-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}
.oria-witb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
}
.oria-witb-item p {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 10px 0 0 0;
    line-height: 1.3;
}
 
/* The circle itself: flex-centered container, positioned so the
   absolutely-positioned accent pieces (bag handle, laptop base,
   mouse scroll-line) have something to anchor to */
.oria-witb-icon-circle {
    width: 50px;
    height: 50px;
    background-color: #eefbff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}
 
/* =========== ICON 1 — Laptop (Professionally Tested Laptop) =========== */
.oria-witb-item:nth-child(1) .oria-witb-icon-circle::before {
    content: "";
    display: block;
    width: 20px;
    height: 14px;
    border: 2px solid #0ea5e9;
    border-radius: 2px;
}
.oria-witb-item:nth-child(1) .oria-witb-icon-circle::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 14px;
    width: 26px;
    height: 2px;
    background: #0ea5e9;
    border-radius: 1px;
    transform: translateX(-50%);
}
 
/* =========== ICON 2 — Bag (Premium Protective Bag), WITH handle =========== */
.oria-witb-item:nth-child(2) .oria-witb-icon-circle::before {
    content: "";
    display: block;
    width: 20px;
    height: 16px;
    border: 2px solid #0ea5e9;
    border-radius: 3px;
    margin-top: 4px;
}
/* The handle: a small arc sitting above the bag body */
.oria-witb-item:nth-child(2) .oria-witb-icon-circle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 13px;
    width: 12px;
    height: 8px;
    border: 2px solid #0ea5e9;
    border-bottom: none;
    border-radius: 6px 6px 0 0;
    transform: translateX(-50%);
}
 
/* =========== ICON 3 — Charging bolt (Fast Charging Adapter) =========== */
.oria-witb-item:nth-child(3) .oria-witb-icon-circle::before {
    content: "";
    display: block;
    width: 12px;
    height: 20px;
    background: #0ea5e9;
    clip-path: polygon(60% 0%, 0% 60%, 45% 60%, 40% 100%, 100% 40%, 55% 40%);
}
 
/* =========== ICON 4 — Mouse (Wireless Mouse) =========== */
.oria-witb-item:nth-child(4) .oria-witb-icon-circle::before {
    content: "";
    display: block;
    width: 16px;
    height: 24px;
    border: 2px solid #0ea5e9;
    border-radius: 10px;
}
.oria-witb-item:nth-child(4) .oria-witb-icon-circle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 15px;
    width: 2px;
    height: 8px;
    background: #0ea5e9;
    transform: translateX(-50%);
}

/* -----------------------------------------------------------------
   BANK TRANSFER PAYMENT INSTRUCTIONS — account cards + note
   ----------------------------------------------------------------- */
.payment-instructions {
    font-family: inherit;
    color: #334155;
}
.pi-intro {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 16px 0;
}
.pi-accounts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}
.pi-account-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 14px;
}
.pi-bank-name {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #0f172a;
    margin-bottom: 6px;
}
/* Number + holder grouped tightly together on their own row */
.pi-account-number {
    display: inline-block;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 14px;
    font-weight: 700;
    color: #0ea5e9;
    background: #eefbff;
    padding: 3px 9px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}
.pi-account-holder {
    display: block;
    font-size: 12.5px;
    color: #94a3b8;
    margin-top: 6px;
}
.pi-account-holder::before {
    content: "— ";
    color: #cbd5e1;
}
 
.pi-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 20px;
}
.pi-note-icon {
    font-size: 16px;
    line-height: 1.4;
    flex-shrink: 0;
}
.pi-note p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.55;
    color: #78350f;
}
.pi-note strong {
    color: #92400e;
}

/* =================================================================
   ORIADELOTS — STATIC PAGES CSS SYSTEM
   ================================================================= */
.oria-page-wrapper {
    max-width: 880px;
    margin: 0 auto;
    padding: 50px 20px 70px 20px;
}
 
.oria-page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}
.oria-page-title {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}
.oria-page-subtitle {
    font-size: 15.5px;
    color: #64748b;
    margin: 0;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
 
/* Prose content shared across every page */
.oria-content p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #334155;
    margin: 0 0 18px 0;
}
.oria-content strong {
    color: #0f172a;
}
.oria-content i,
.oria-content em {
    color: #475569;
}
.oria-content h2 {
    font-size: 21px;
    font-weight: 700;
    color: #0f172a;
    margin: 40px 0 20px 0;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
/* Gradient underline — static fallback for all browsers */
.oria-content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 60px;
    border-radius: 2px;
    background: linear-gradient(90deg, #0ea5e9, #7dd3fc, transparent);
}
/* Progressive enhancement: on browsers that support CSS scroll-driven
   animations, the underline draws itself in (0 -> full heading width)
   as it scrolls into view. Falls back to the static bar above
   everywhere else. */
@supports (animation-timeline: view()) {
    .oria-content h2::after {
        width: 100%;
        transform: scaleX(0);
        transform-origin: left;
        animation: oria-underline-draw linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 30%;
    }
    @keyframes oria-underline-draw {
        to { transform: scaleX(1); }
    }
}
.oria-content ul {
    margin: 0 0 20px 0;
    padding: 0;
    list-style: none;
}
.oria-content ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.65;
    color: #334155;
}
.oria-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0ea5e9;
}
.oria-content a {
    color: #0ea5e9;
    text-decoration: underline;
    text-underline-offset: 2px;
}
 
 
/* -----------------------------------------------------------------
   2. ABOUT US — 3-card feature grid
   ----------------------------------------------------------------- */
.oria-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 30px 0 40px 0;
}
@media (min-width: 768px) {
    .oria-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}
.oria-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 22px 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.oria-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}
.oria-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}
.oria-card-title::before {
    content: "";
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: #0ea5e9;
    transform: rotate(45deg);
}
.oria-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}
 
/* ---- "Our Standard" — the closing statement heading + paragraph
        that follows the 3-card grid. Targeted via sibling selector
        (~) since it's structurally the only h2 on the whole site
        that follows .oria-grid-3 — no HTML changes needed. ---- */
.oria-grid-3 ~ h2 {
    display: block;
    text-align: center;
    font-size: 24px;
    margin: 50px auto 22px auto;
    padding-bottom: 0;
}
.oria-grid-3 ~ h2::before {
    content: "";
    display: block;
    width: 34px;
    height: 34px;
    margin: 0 auto 14px auto;
    background: #0ea5e9;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%,
                        50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.oria-grid-3 ~ h2::after {
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    background: linear-gradient(90deg, transparent, #0ea5e9, transparent);
}
@supports (animation-timeline: view()) {
    .oria-grid-3 ~ h2::after {
        transform: translateX(-50%) scaleX(0);
        animation: oria-underline-draw-center linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 30%;
    }
    @keyframes oria-underline-draw-center {
        to { transform: translateX(-50%) scaleX(1); }
    }
}
 
.oria-grid-3 ~ h2 + p {
    position: relative;
    text-align: center;
    font-size: 16.5px;
    font-weight: 500;
    line-height: 1.8;
    color: #1e293b;
    max-width: 640px;
    margin: 0 auto 20px auto;
    padding: 26px 28px;
    background: linear-gradient(135deg, #eefbff, #f8fafc);
    border: 1px solid #bae6fd;
    border-radius: 16px;
    overflow: hidden;
}
.oria-grid-3 ~ h2 + p::before {
    content: "";
    position: absolute;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, #0ea5e9, transparent 70%);
    opacity: 0.15;
    top: -50px; right: -40px;
    pointer-events: none;
}
 
 
/* -----------------------------------------------------------------
   3. CONTACT US — methods, detail boxes, CTA
   ----------------------------------------------------------------- */
.oria-minimal-contact {
    margin-top: 10px;
}
.oria-contact-intro {
    font-size: 15.5px;
    line-height: 1.75;
    color: #334155;
    margin: 0 0 32px 0;
}
 
/* WhatsApp / Email quick-contact pills */
.oria-contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 40px;
}
@media (min-width: 640px) {
    .oria-contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}
.oria-method-item {
    background: #eefbff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 18px 20px;
}
.oria-method-item h4 {
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #0369a1;
    margin: 0 0 6px 0;
}
.oria-method-item p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}
.oria-method-item p a {
    color: #0f172a;
    text-decoration: none;
}
.oria-method-item p a:hover {
    color: #0ea5e9;
}
 
/* Office location / hours / support — 3 detail boxes */
.oria-contact-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
}
@media (min-width: 768px) {
    .oria-contact-details {
        grid-template-columns: repeat(3, 1fr);
    }
}
.oria-detail-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 20px;
}
.oria-detail-box h4 {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px 0;
}
.oria-detail-box p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #64748b;
    margin: 0 0 4px 0;
}
.oria-detail-box p:last-child {
    margin-bottom: 0;
}
 
/* Bottom CTA box */
.oria-cta-box {
    background: linear-gradient(135deg, #0ea5e9, #0369a1);
    border-radius: 14px;
    padding: 26px 24px;
    text-align: center;
}
.oria-cta-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}
.oria-cta-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}
.oria-cta-box a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
}
/* -----------------------------------------------------------------
   4. LEGAL PAGES — Terms, Privacy, Returns, Cookie Policy
      (uses .oria-legal-wrapper modifier for a narrower, denser
      reading column, since these are longer text-heavy pages)
   ----------------------------------------------------------------- */
.oria-legal-wrapper {
    max-width: 760px;
}
.oria-legal-wrapper .oria-content h2 {
    margin-top: 40px;
}
.oria-legal-wrapper .oria-content h2:first-of-type {
    margin-top: 30px;
}
/* Numbered section headings (Terms, Privacy) read slightly smaller
   than the About Us h2s, since there are many more of them */
.oria-legal-wrapper .oria-content h2 {
    font-size: 18px;
}


/* Remove bullet points from the mobile navigation menu and submenus */
.mobile-menu-container ul,
.mobile-menu-container li {
    list-style: none !important;
    list-style-type: none !important;
}


/* ==========================================================================
   MODERN SYSTEM SPECIFICATION SHEET DESIGN (UNIVERSAL STYLES)
   ========================================================================== */

/* 1. Main Outer Table Card Box */
.product-specification-table {
    margin: 32px 0 !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important; /* Slightly rounder for a genuine premium look */
    overflow: hidden !important;    /* Automatically clips bottom borders cleanly */
    background: #ffffff !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02) !important;
}

/* 2. Standardize the internal grid container */
.product-specification-table .row.flex {
    margin: 0 !important; 
    display: flex !important;
    flex-wrap: wrap !important;
}

/* 3. Base structural grid cell defaults */
.product-specification-table .col-md-6 {
    padding: 0 !important; 
    border-bottom: 1px solid #e2e8f0 !important; /* Kept universal to fix layout leaks */
}

/* 4. Base typography component configurations */
.spec-item {
    display: flex !important;
    box-sizing: border-box !important;
    width: 100% !important;
}


/* ==========================================================================
   DESKTOP SCREEN OPTIMIZATION (Screens 768px and wider)
   ========================================================================== */
@media (min-width: 768px) {
    /* Perfect vertical center line divider between columns */
    .product-specification-table .col-md-6:nth-child(odd) {
        border-right: 1px solid #e2e8f0 !important;
    }
    
    /* Clean horizontal matrix zebra-striping rows */
    .product-specification-table .col-md-6:nth-child(4n+1),
    .product-specification-table .col-md-6:nth-child(4n+2) {
        background-color: #f8fafc !important;
    }

    /* Balanced structural alignments for desktop text layouts */
    .spec-item {
        flex-direction: row !important;
        align-items: center !important;
        padding: 18px 24px !important;
        min-height: 58px !important;
    }
    
    .spec-label {
        font-weight: 600 !important;
        color: #0f172a !important;
        font-size: 14px !important;
        width: 35% !important; 
        flex-shrink: 0 !important;
    }
    
    .spec-value {
        font-weight: 400 !important;
        color: #475569 !important;
        font-size: 14px !important;
        width: 65% !important;
        padding-left: 16px !important;
    }
}


/* ==========================================================================
   MOBILE SCREEN OPTIMIZATION & BREATHING SPACE (Screens 767px and narrower)
   ========================================================================== */
@media (max-width: 767px) {
    /* Flatten desktop right dividers completely */
    .product-specification-table .col-md-6 {
        border-right: none !important;
    }
    
    /* Alternating row colors down the single stacked mobile column */
    .product-specification-table .col-md-6:nth-child(odd) {
        background-color: #ffffff !important;
    }
    .product-specification-table .col-md-6:nth-child(even) {
        background-color: #f8fafc !important;
    }
    
    /* Expanded padding inside each mobile cell block for maximum breathing room */
    .spec-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 22px 20px !important; /* Increased space around the content */
    }
    
    /* Clean micro technical hardware labels */
    .spec-label {
        width: 100% !important;
        font-size: 11px !important;
        color: #64748b !important;
        text-transform: uppercase !important;
        letter-spacing: 0.06em !important;
        margin-bottom: 8px !important; /* Extra air between title and value string */
        flex-shrink: 0 !important;
    }
    
    /* Bold crisp details safely seated below the label text lines */
    .spec-value {
        width: 100% !important;
        font-size: 15px !important;
        color: #0f172a !important;
        font-weight: 500 !important;
        padding-left: 0 !important;
        line-height: 1.4 !important;
    }
}

/* ==========================================================================
   Hide Category count on Homepage
   ========================================================================== */
.category-area .tpcategory__icon span {
      display: none !important;
  }