@charset "utf-8";
/* CSS Document: HFL All in One Order Page — order-all.css 

Author: S. Ali Raza
Version: 1.1

Change Log:
03-June 2026: Initial version

*/


/* ====================  TOP NAV  ==================== */
.hfl-topnav { transition: 0.4s; }
.hfl-topnav .logos img {
    height: 28px;
}
.hfl-topnav .logos .divider {
    height: 20px;
    opacity: .4;
}
.hfl-topnav .nav-link.dropdown-toggle {
    color: var(--bs-gray-800);
}
.hfl-topnav .nav-link.dropdown-toggle:hover {
    color: var(--bs-gray-900);
}
.hfl-dd-menu {
    max-height: 70vh;
    overflow-y: auto;
}
.hfl-dd-menu .dropdown-item {
    font-size: .92rem;
    padding: .5rem .9rem;
    border-bottom: 1px solid var(--bs-gray-200);
}
.hfl-dd-menu .dropdown-item:last-child {
    border-bottom: none;
}
.hfl-dd-menu .dropdown-item:hover {
    background: var(--bs-lightyellow);
    color: #000;
}

header { font-size: 1rem; }

header .list li { margin-bottom: .2rem; }

header .list li:last-child { margin-bottom: 0; }

/* Cart badge — restored from first draft */
.nav-cart-btn {
    background: transparent;
    border: none;
    color: var(--bs-gray-800);
    padding: .4rem .6rem;
    font-size: 1.35rem;
    line-height: 1;
    position: relative;
}
.nav-cart-btn:hover {
    color: var(--bs-gray-900);
}
.nav-cart-btn .cart-badge {
    position: absolute;
    top: 0;
    right: -2px;
    font-size: .65rem;
    background: var(--bs-red);
    color: #fff;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

/* ====================  PRODUCT CARDS  ==================== */
.product-section {
    scroll-margin-top: 90px;
}
.product-card {
    transition: box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}
.product-card .card-header {
    background: var(--bs-lightgray);
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    color: var(--bs-gray-800);
}
.product-card .p-img {
    max-height: 170px;
    display: block;
}

.product-card .review-ratings {
    font-size: .9rem;
    color: var(--bs-gray-500);
}

/* Selected state */
.product-card.has-selection {
    border-color: var(--bs-green);
    box-shadow: 0 0 0 2px rgba(0, 179, 0, .15);
}
.product-card.has-selection .selection-confirm {
    display: block !important;
}
/* Green check icon in top-right corner — restored from first draft */
.product-card.has-selection::before {
    content: "\F26B"; /* bi-check-circle-fill */
    font-family: "bootstrap-icons";
    position: absolute;
    top: .55rem;
    right: .55rem;
    color: var(--bs-green);
    font-size: 1.35rem;
    z-index: 2;
    background: #fff;
    border-radius: 50%;
    line-height: 1;
}

.product-card.out-of-stock {
    border-color: #f8d7da;
    background: #fff5f5;
}

.product-card .p-links a:hover { text-decoration: underline; }
.product-card .divider {
    width: 1px;
    height: 16px;
    background: var(--bs-gray-500);
    margin: 0 .5rem;
}

.product-card .card-footer {
    background: #fafafa;
}
.pkg-select {
    font-size: .88rem;
}
.pkg-select:focus {
    border-color: var(--bs-green);
    box-shadow: 0 0 0 .15rem rgba(0, 179, 0, .18);
}

/* Highlight pulse on nav-jump */
.product-card.highlight-pulse {
    animation: hflPulse 1.6s ease-out;
}
@keyframes hflPulse {
    0%   { box-shadow: 0 0 0 0    rgba(204, 0, 0, .45); }
    50%  { box-shadow: 0 0 0 14px rgba(204, 0, 0, 0);   }
    100% { box-shadow: 0 0 0 0    rgba(204, 0, 0, 0);   }
}

/* ====================  CTA STICKY BAR  ==================== */
.cta-btn-section {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(4px);
    z-index: 1025;
}

.circle-sketch-highlight {  position:relative; font-size: 1.2rem ;color: #333; font-family: sans-serif; }
.circle-sketch-highlight:before {
	content:"";
	z-index:-1;
	left:-0.8em;
	top:-0.2em;
	border-width:2px;
	border-style:solid;
	border-color:red;
	position:absolute;
	border-right-color:transparent;
	width:110%;
	height:1.8em;
	transform:rotate(1deg);
	opacity:0.7;
	border-radius:50%;
	padding:0.15em 2.30em; }

.circle-sketch-highlight:after {
	content:"";
	z-index:-1;
	left:-0.5em;
	top:0.1em;
	padding:0.1em 0.25em;
	border-width:2px;
	border-style:solid;
	border-color:red;
	border-left-color:transparent;
	border-top-color:transparent;
	position:absolute;
	width:105%;
	height:1.5em;
	transform:rotate(-1deg);
	opacity:0.7;
	border-radius:44%; } 

/* ====================  MINI CART OFFCANVAS  ==================== */
.offcanvas.mini-cart {
    width: 420px;
    max-width: 100vw;
}
.mini-cart-item {
    display: grid;
    grid-template-columns: 42px 1fr auto 24px;
    column-gap: .65rem;
    align-items: center;
    padding: .65rem .75rem;
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    margin-bottom: .65rem;
    background: #fff;
}
.mini-cart-item .item-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}
.mini-cart-item .item-body {
    min-width: 0;
}
.mini-cart-item .item-name {
    font-weight: 700;
    font-size: .9rem;
    color: var(--bs-gray-800);
    line-height: 1.2;
}
.mini-cart-item .item-tag {
    display: inline-block;
    font-size: .65rem;
    font-weight: 700;
    background: var(--bs-lightyellow);
    color: #856404;
    padding: .1rem .4rem;
    border-radius: 4px;
    margin-top: .2rem;
    letter-spacing: .2px;
    text-transform: uppercase;
}
.mini-cart-item .item-price-wrap {
    text-align: right;
    white-space: nowrap;
}
.mini-cart-item .item-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bs-gray-800);
    line-height: 1.1;
}
.mini-cart-item .item-qty-mult {
    display: block;
    font-size: .7rem;
    color: var(--bs-gray-600);
    font-weight: 500;
    margin-top: 1px;
}
.mini-cart-item .remove-btn {
    background: none;
    border: none;
    color: var(--bs-gray-500);
    padding: 0;
    font-size: .9rem;
    line-height: 1;
    justify-self: end;
    align-self: center;
    margin-top: 2px;
}
.mini-cart-item .remove-btn:hover {
    color: var(--bs-red);
}

/* ====================  MINI CART SUMMARY  ==================== */
.mini-cart-summary .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: .95rem;
    margin-bottom: .5rem;
}
.mini-cart-summary .summary-row.discount {
    color: var(--bs-green);
    font-weight: 700;
}
.mini-cart-summary .summary-row.total {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bs-gray-800);
    border-top: 1px dashed var(--bs-gray-400);
    padding-top: .55rem;
    margin-top: .25rem;
    margin-bottom: .85rem;
}
.mini-cart-summary .btn-checkout {
    padding: .85rem;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.mini-cart-summary .free-ship-line {
    text-align: center;
    font-size: .85rem;
    color: var(--bs-gray-700);
    margin: .65rem 0 .25rem;
}
.mini-cart-summary .secure-note {
    text-align: center;
    font-size: .8rem;
    color: var(--bs-gray-600);
}

/* Scroll to top */
.scrolltop {
	transition: 0.4s;
	position: fixed;
	bottom: 80px;
	right: 14px;
	visibility: hidden;
	background-color: #d0d0d07d;
	color: var(--bs-gray-700);
	padding: .5rem;
	border-radius: .25rem;
	line-height: 0;
	cursor: pointer;
	z-index: 2; }

/* Reveal dropdown on hover (desktop only) */
@media (min-width: 768px) {
    .hfl-topnav .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* ====================  RESPONSIVE  ==================== */
@media (max-width: 575.98px) {
    .hfl-topnav .logos img {
        height: 22px;
    }
    .product-card .p-img {
        max-height: 140px;
    }
    .product-section {
        scroll-margin-top: 70px;
    }
    .convert-btn-size { font-size: .9rem; padding-left: .5rem; padding-right: .5rem;}
    .cta-summary { font-size: .85rem; }
}