/* ===== Storefront Supplemental Styles ===== */

/* Inner Banner */
.inner-banner {
    background: url('/public/theme/images/bn-inner.png') center / cover no-repeat;
    position: relative;
    padding: 90px 0 80px;
    text-align: center;
}

.inner-banner h1 {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 0;
}

.inner-banner .breadcrumb {
    margin-bottom: 0;
    background: transparent;
    padding: 0;
}

.inner-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 18, 38, 0.68);
}

.inner-banner .breadcrumb {
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 0;
    justify-content: center;
    margin-top: 10px;
}

.inner-banner .breadcrumb-item, .inner-banner .breadcrumb-item a {
    color: rgba(255, 255, 255, .7);
}

.inner-banner .breadcrumb-item.active {
    color: #fff;
}
/* Common section padding */
.common-padd {
    padding: 60px 0;
}

/* Shop Sidebar */
.shop-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.sidebar-widget h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    padding: 6px 0;
    border-bottom: 1px solid #f3f4f6;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li a {
    color: #374151;
    text-decoration: none;
}

.category-list li a:hover,
.category-list li.active a {
    color: #0d9488;
    font-weight: 600;
}

.category-list ul {
    padding-left: 12px;
    margin-top: 4px;
}

/* Product card adjustments */
.new_arr_padding {
    padding: 8px;
}

.single_glass_item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow .2s;
}

.single_glass_item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
}

.single_img {
    position: relative;
    overflow: hidden;
}

.single_img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.cart_round {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transition: opacity .2s;
}

.single_glass_item:hover .cart_round {
    opacity: 1;
}

.cart_round button,
.cart_round a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
}

.cart_round button:hover,
.cart_round a:hover {
    background: #28a745;
    color: #fff;
    border-color: #28a745;
}

.cart_round .wishlist-btn.active {
    color: #ef4444;
}

.name_rating {
    padding: 12px;
}

.name_rating a {
    color: #111827;
    text-decoration: none;
    font-weight: 600;
}

.name_rating a:hover {
    color: #0d9488;
}

.name_rating h4 {
    font-size: .8rem;
    color: #6b7280;
    font-weight: 400;
    margin: 4px 0;
}

.price {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
}

.price del {
    color: #9ca3af;
    font-weight: 400;
    font-size: .9rem;
    margin-right: 4px;
}

.sale-price {
    color: #ef4444;
}

/* Buttons */
.red_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #28a745;
    color: #fff;
    border: 2px solid #28a745;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s, color .2s;
}

.red_btn,
.red_btn span,
.red_btn * {
    color: #fff !important;
}

.red_btn:hover {
    background: #218838;
    border-color: #218838;
    color: #fff;
}

.red_btn.red_border {
    background: #28a745;
    color: #fff;
    border-color: #28a745;
}

.red_btn.red_border:hover {
    background: #218838;
    color: #fff;
    border-color: #218838;
}

.red_btn span {
    pointer-events: none;
}

.red_btn.btn-sm,
.red_btn.w-100 {
    width: 100%;
}

/* Quantity controls */
.qty-control {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    display: inline-flex;
}

.qty-btn {
    background: #f9fafb;
    border: none;
    width: 36px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    color: #374151;
}

.qty-btn:hover {
    background: #e5e7eb;
}

.qty-field {
    border: none;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    width: 54px;
    text-align: center;
    font-weight: 600;
}

.qty-field:focus {
    outline: none;
}

/* Product detail */
.main-product-img {
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.product-thumbnails {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.thumb-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
}

.thumb-img:hover,
.thumb-img.active {
    border-color: #28a745;
}

.product-title {
    font-size: 1.75rem;
    font-weight: 700;
}

.attr-btn.btn-primary {
    background: #28a745;
    border-color: #28a745;
}

/* Cart */
.cart-summary {
    background: #f9fafb;
}

/* Dashboard */
.dashboard-sec {
    background: #f8f9fa;
}

.dashboard-welcome {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px 28px;
}

.dashboard-welcome h4 {
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 6px;
}

.stat-card {
    background: #fff;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px;
    padding: 24px 16px;
    transition: box-shadow .2s, transform .2s;
}

.stat-card:hover {
    box-shadow: 0 6px 20px rgba(13, 148, 136, .12);
    transform: translateY(-2px);
}

.stat-card h5 {
    font-size: 1.7rem;
    font-weight: 800;
    color: #0a1628;
    margin-bottom: 4px;
}

.dashboard-sidebar .list-group-item {
    padding: 12px 16px;
    border-color: #e5e7eb;
}

.dashboard-sidebar .list-group-item.active {
    background: #28a745;
    border-color: #28a745;
}

.dashboard-sidebar .list-group-item.active a {
    color: #fff !important;
}

.dashboard-sidebar .list-group-item a {
    display: block;
    color: #374151;
}

/* Checkout */
.checkout-section h4.section-title {
    font-size: 1.1rem;
    font-weight: 700;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.order-summary h4 {
    font-weight: 700;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 8px;
}

/* Blog */
.blog-card img {
    height: 200px;
    object-fit: cover;
}

/* Why Choose Us (desktop) */
.why-chhhose-sec .container-box {
    position: relative;
    padding: 80px 40px;
    background-size: cover;
    background-position: center;
}

.center-div {
    text-align: center;
    margin-bottom: 40px;
}

.choices {
    margin-bottom: 20px;
}

/* Mobile Why Choose Us */
.mobile-why-choose {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.icon-box-m img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* FAQ */
.faq-sec {
    background: #f8fafc;
    padding: 92px 0 100px;
}

.faq-sec .heading_hp {
    margin-bottom: 34px;
}

.faq-sec .heading_hp span {
    color: #22a336;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 18px;
}

.faq-sec .heading_hp h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

.faq-home {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0;
}

.faq-home .accordion-item {
    border: 1px solid #d8e1ea;
    border-radius: 9px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}

.faq-home .accordion-button {
    background: #fff;
    color: #0f172a;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.35;
    padding: 18px 22px;
    box-shadow: none;
    border: 0;
}

.faq-home .accordion-button:not(.collapsed) {
    background: #3b82d8;
    color: #fff;
    box-shadow: none;
}

.faq-home .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-home .accordion-button::after {
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
}

.faq-home .accordion-body {
    background: #fff;
    border-left: 4px solid #3b82d8;
    color: #334155;
    line-height: 1.75;
    padding: 18px 22px 22px;
}

.faq-home .accordion-body p:last-child {
    margin-bottom: 0;
}

.faq-home .accordion-collapse {
    transition: height .25s ease;
}

.faq-home .accordion-button:not(.collapsed) {
    border-bottom: 1px solid #3b82d8;
}

.faq-home .accordion-item:last-child {
    margin-bottom: 0;
}

/* Mini cart */
.mini-cart-offcanvas {
    width: 410px;
    border-left: 1px solid #e5e7eb;
}

#mini-cart-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#mini-cart-content .mini-cart-body {
    flex: 1 1 auto;
    overflow-y: auto;
}

.mini-cart-header {
    background: linear-gradient(135deg, #0f172a 0%, #0d9488 100%);
    color: #fff;
    padding: 20px 22px;
    border-bottom: 0;
}

.mini-cart-header .btn-close {
    box-shadow: none;
    opacity: .95;
}

.mini-cart-meta {
    font-size: .82rem;
    color: rgba(255, 255, 255, .75);
    margin-top: 4px;
}

.mini-cart-body {
    padding: 18px 18px 12px;
    background: #f8fafc;
}

.mini-cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: calc(100vh - 260px);
    overflow-y: auto;
    padding-right: 2px;
}

.mini-cart-item {
    display: flex;
    gap: 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, .04);
}

.mini-cart-thumb {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    border-radius: 10px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mini-cart-details {
    flex: 1;
    min-width: 0;
}

.mini-cart-name {
    display: block;
    color: #0f172a;
    font-weight: 700;
    font-size: .95rem;
    line-height: 1.35;
    text-decoration: none;
    margin-bottom: 4px;
}

.mini-cart-name:hover {
    color: #0d9488;
}

.mini-cart-line {
    font-size: .82rem;
    color: #64748b;
    line-height: 1.4;
}

.mini-cart-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
    margin-bottom: 4px;
}

.mini-cart-qty-btn,
.mini-cart-remove-btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid #dbe4ee;
    background: #fff;
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    flex: 0 0 auto;
}

.mini-cart-qty-btn:hover {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

.mini-cart-remove-btn:hover {
    background: #fee2e2;
    border-color: #fecaca;
    color: #dc2626;
}

.mini-cart-qty-input {
    width: 54px;
    height: 30px;
    border: 1px solid #dbe4ee;
    border-radius: 8px;
    text-align: center;
    font-size: .85rem;
    font-weight: 600;
    color: #0f172a;
}

.mini-cart-qty-input:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, .08);
}

.mini-cart-price {
    color: #16a34a;
    font-weight: 700;
    margin-top: 4px;
}

.mini-cart-empty {
    text-align: center;
    padding: 32px 12px;
    color: #64748b;
}

.mini-cart-empty i {
    font-size: 2.4rem;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.mini-cart-empty h6 {
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.mini-cart-empty p {
    margin-bottom: 0;
    font-size: .88rem;
}

.mini-cart-footer {
    padding: 16px 18px 18px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
}

.mini-cart-protection {
    color: #0d9488;
}

.mini-cart-sp-row {
    margin-bottom: 10px;
    padding: 10px 12px;
    background: #f0fdfa;
    border: 1px solid #99f6e4;
    border-radius: 8px;
}

.mini-cart-sp-row .form-check-label {
    font-size: .82rem;
    color: #065f46;
    line-height: 1.35;
}

.mini-cart-sp-row .form-check-input:checked {
    background-color: #0d9488;
    border-color: #0d9488;
}

.mini-cart-total-row {
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid #e5e7eb;
    font-size: 1rem;
}

/* Free shipping progress (mini cart + checkout) */
.free-shipping-progress {
    margin: 10px 0 12px;
    padding: 10px 12px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    font-size: .82rem;
    color: #92400e;
}

.free-shipping-progress.is-qualified {
    background: #ecfdf5;
    border-color: #6ee7b7;
    color: #065f46;
}

.free-shipping-progress__message {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.free-shipping-progress__message i {
    margin-top: 2px;
    flex-shrink: 0;
}

.free-shipping-progress.is-qualified .free-shipping-progress__message i {
    color: #059669;
}

.free-shipping-progress__bar {
    height: 6px;
    margin-top: 8px;
    background: #fde68a;
    border-radius: 999px;
    overflow: hidden;
}

.free-shipping-progress__fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b 0%, #059669 100%);
    border-radius: 999px;
    transition: width .25s ease;
}

.free-shipping-progress__meta {
    margin-top: 6px;
    font-size: .75rem;
    color: #a16207;
}

.free-shipping-progress.is-qualified .free-shipping-progress__meta {
    color: #047857;
}

.order-summary-card .free-shipping-progress {
    margin: 0 0 14px;
}

.mini-cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .92rem;
    margin-bottom: 8px;
}

.mini-cart-summary strong {
    color: #0f172a;
}

.mini-cart-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

.mini-cart-actions .red_btn {
    width: 100%;
    padding: 11px 14px;
}

.mini-cart-actions .red_btn.red_border {
    border-color: #28a745;
}

.pdp-post-cart-actions {
    display: none;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.pdp-post-cart-actions .red_btn {
    min-width: 150px;
}

.product-card-cta {
    margin-top: auto;
    width: 100%;
    padding-top: 14px;
}

.product-card-action-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    width: 100%;
}

.product-card-add-btn {
    width: 100%;
    min-width: 0;
    height: 44px;
    padding: 0 18px;
    flex: 1 1 100%;
    transition: all .2s ease;
}

.product-card-add-btn,
.product-card-add-btn .product-card-btn-text {
    color: #fff !important;
}

.product-card-add-btn.is-added {
    min-width: 126px;
    height: 40px;
    padding: 0 14px;
    font-size: .84rem;
    letter-spacing: .2px;
    flex: 0 0 auto;
    width: auto;
}

.product-card-quick-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.product-card-quick-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #28a745;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #28a745;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(40, 167, 69, .15);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.product-card-quick-btn i {
    color: #fff !important;
}

.product-card-quick-btn:hover {
    background: #218838;
    border-color: #218838;
    color: #fff;
    transform: translateY(-1px);
}

/* Shop grid cards should match the homepage collection cards */
.shop-products-grid .new_arr_padding {
    padding: 0 12px 24px;
    height: 100%;
}

.shop-products-grid .single_glass_item {
    height: 100%;
    min-height: 465px;
    border: 1px solid #c8c8c8;
    border-radius: 12px;
    box-shadow: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.shop-products-grid .single_img {
    height: 265px;
    padding: 24px 18px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-products-grid .single_img a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.shop-products-grid .single_img img {
    width: auto;
    max-width: 78%;
    height: 100%;
    object-fit: contain;
}

.shop-products-grid .cart_round {
    opacity: 1;
    top: 18px;
    right: 16px;
    transform: none;
    gap: 8px;
}

.shop-products-grid .cart_round button,
.shop-products-grid .cart_round a {
    width: 40px;
    height: 40px;
    border: none;
    background: #ececec;
    color: #111827;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .08);
}

.shop-products-grid .cart_round .wishlist-btn {
    background: #ef4444;
    color: #fff;
}

.shop-products-grid .cart_round .wishlist-btn.active {
    background: #dc2626;
    color: #fff;
}

.shop-products-grid .name_rating {
    padding: 0 16px 18px;
    flex: 1;
}

.shop-products-grid .name_rating .d-flex {
    height: 100%;
}

.shop-products-grid .left_boo {
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.shop-products-grid .left_boo>div:last-child {
    margin-top: auto;
}

.shop-products-grid .left_boo span {
    font-size: .94rem;
    line-height: 1.2;
    height: auto;
    min-height: 0;
    color: #ef4444;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .02em;
}

.shop-products-grid .left_boo h4 {
    font-size: 1.15rem;
    line-height: 1.25;
    height: 3.05em;
    color: #111827;
    font-weight: 800;
    margin-top: 12px;
}

.shop-products-grid .left_boo .price {
    color: #2ea043;
    font-size: 1.2rem;
    font-weight: 700;
}

.shop-products-grid .left_boo .price span {
    display: inline-block;
    color: #9ca3af;
    font-size: .95rem;
    font-weight: 500;
}

.shop-products-grid .product-card-cta {
    margin-top: auto;
    width: 100%;
    padding-top: 14px;
}

.shop-products-grid .product-card-action-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    width: 100%;
}

.shop-products-grid .product-card-add-btn {
    width: 100%;
    min-width: 0;
    height: 44px;
    padding: 0 18px;
    flex: 1 1 100%;
    transition: all .2s ease;
}

.shop-products-grid .product-card-add-btn.is-added {
    min-width: 126px;
    height: 40px;
    padding: 0 14px;
    font-size: .84rem;
    letter-spacing: .2px;
    flex: 0 0 auto;
    width: auto;
}

.shop-products-grid .product-card-quick-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.shop-products-grid .product-card-quick-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #28a745;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #28a745;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(40, 167, 69, .15);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.shop-products-grid .product-card-quick-btn i {
    color: #fff !important;
}

.shop-products-grid .product-card-quick-btn:hover {
    background: #218838;
    border-color: #218838;
    color: #fff;
    transform: translateY(-1px);
}

.pagination {
    gap: 6px;
    flex-wrap: wrap;
}

.pagination .page-link {
    color: #28a745;
    border-color: #dbe4ee;
    border-radius: 8px;
    min-width: 42px;
    text-align: center;
    box-shadow: none;
}

.pagination .page-link:hover {
    color: #28a745;
    background: #f0fff4;
    border-color: #28a745;
}

.pagination .page-item.active .page-link {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    color: #9ca3af;
    background: #fff;
    border-color: #e5e7eb;
}

@media (max-width: 575.98px) {
    .shop-products-grid .single_img {
        height: 240px;
    }

    .shop-products-grid .product-card-action-row {
        gap: 8px;
    }

    .shop-products-grid .product-card-add-btn {
        min-width: 0;
        width: 100%;
        height: 42px;
        padding: 0 14px;
    }

    .shop-products-grid .product-card-add-btn.is-added {
        min-width: 110px;
        height: 38px;
    }

    .shop-products-grid .product-card-quick-btn {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 575.98px) {
    .mini-cart-offcanvas {
        width: 92vw;
    }

    .mini-cart-actions {
        grid-template-columns: 1fr;
    }

    .mini-cart-controls {
        gap: 6px;
    }

    .mini-cart-qty-input {
        width: 48px;
    }

    .product-card-action-row {
        gap: 8px;
    }

    .product-card-add-btn {
        min-width: 0;
        width: 100%;
        height: 42px;
        padding: 0 14px;
    }

    .product-card-add-btn.is-added {
        min-width: 110px;
        height: 38px;
    }

    .product-card-quick-btn {
        width: 36px;
        height: 36px;
    }
}

/* About section */
.about-img img {
    border-radius: 12px;
    width: 100%;
}

.about-text .heading_hp span {
    color: #0d9488;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: .85rem;
}

/* Heading HP */
.heading_hp span {
    color: #0d9488;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: .85rem;
    display: block;
}

.heading_hp h2 {
    font-size: 2rem;
    font-weight: 700;
}

/* Why Choose Us sections visibility */
.why-chhhose-sec {
    display: none;
}

@media (min-width: 992px) {
    .why-chhhose-sec {
        display: block;
    }

    .mobile-view-why-choose {
        display: none;
    }
}

/* Dark page hero banner (About, Contact, etc.) */
.page-hero-banner {
    background: url('/public/theme/images/bn-inner.png') center/cover no-repeat;
    position: relative;
    padding: 90px 0 80px;
    text-align: center;
}

.page-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 18, 38, 0.68);
}

.page-hero-banner h1 {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 0;
}

.page-hero-banner .breadcrumb {
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 0;
    justify-content: center;
    margin-top: 10px;
}

.page-hero-banner .breadcrumb-item,
.page-hero-banner .breadcrumb-item a {
    color: rgba(255, 255, 255, .7);
}

.page-hero-banner .breadcrumb-item.active {
    color: #fff;
}

.page-hero-banner .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .4);
}

/* About page – image with decorative frame */
.about-img-frame {
    position: relative;
    display: inline-block;
}

.about-img-frame::before {
    content: '';
    position: absolute;
    top: -18px;
    left: -18px;
    width: calc(100% - 36px);
    height: calc(100% - 36px);
    border: 3px solid #0d9488;
    border-radius: 8px;
    z-index: 0;
}

.about-img-frame img {
    position: relative;
    z-index: 1;
    border-radius: 6px;
    width: 100%;
    display: block;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
}

/* About page – section headings */
.about-section-label {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0d9488;
    display: block;
    margin-bottom: 8px;
}

/* Disclaimer section */
.disclaimer-sec {
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
    padding: 50px 0;
}

.disclaimer-sec h3 {
    font-weight: 800;
    margin-bottom: 16px;
}

.disclaimer-sec p {
    color: #6b7280;
    font-size: .9rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Contact page – info card */
.contact-info-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.contact-info-card .icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #0d9488;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 14px;
}

.contact-info-card h5 {
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-info-card p {
    color: #6b7280;
    margin: 0;
    font-size: .9rem;
}

/* Contact form card */
.contact-form-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
}

.contact-form-card h3 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.contact-form-input {
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 14px;
    width: 100%;
    font-size: .9rem;
    outline: none;
    transition: border-color .2s;
    background: #fff;
}

.contact-form-input:focus {
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, .08);
}

/* ── Auth / Gate Pages ──────────────────────────────────────────────────────── */
.auth-wrap {
    padding: 60px 0 80px;
    background: #f8f9fa;
}

.auth-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .07);
    padding: 40px;
}

.auth-card-header {
    border-radius: 12px 12px 0 0;
    padding: 22px 32px;
    margin: -40px -40px 30px;
}

.auth-card-header.teal {
    background: #28a745;
}

.auth-card-header.navy {
    background: #0a1628;
}

.auth-input {
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 14px;
    width: 100%;
    font-size: .95rem;
    transition: border-color .2s;
    background: #fff;
    outline: none;
}

.auth-input:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, .1);
}

.auth-input.is-invalid {
    border-color: #ef4444;
}

.auth-label {
    font-size: .875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    display: block;
}

.auth-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.auth-benefit-icon {
    width: 42px;
    height: 42px;
    background: rgba(40, 167, 69, .12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #28a745;
    font-size: 1rem;
}

.guest-benefits {
    list-style: none;
    padding: 0;
}

.guest-benefits li {
    padding: 6px 0;
    font-size: .9rem;
    color: #4b5563;
}

.guest-benefits li::before {
    content: '✓';
    color: #28a745;
    font-weight: 700;
    margin-right: 8px;
}

.homepage-collection {
    position: relative;
    padding: 95px 0 100px;
    background: #fff;
}

.homepage-collection .container {
    max-width: 1500px;
}

.homepage-collection .tab_box_tab {
    position: relative;
    padding: 0 44px;
}

.homepage-collection .heading_hp {
    margin-bottom: 36px;
}

.homepage-collection .heading_hp span {
    color: #22a336;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 18px;
}

.homepage-collection .heading_hp h2 {
    font-size: clamp(2.2rem, 3.2vw, 3.4rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.08;
}

.homepage-collection .new_arr_padding {
    padding: 0 12px 24px;
    height: 100%;
}

.homepage-collection .new_arr_carousel {
    position: relative;
}

.homepage-collection .slick-slide {
    height: auto;
}

.homepage-collection .single_glass_item {
    height: 100%;
    min-height: 465px;
    border: 1px solid #c8c8c8;
    border-radius: 12px;
    box-shadow: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.homepage-collection .single_img {
    height: 265px;
    padding: 24px 18px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.homepage-collection .single_img a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.homepage-collection .single_img img {
    width: auto;
    max-width: 78%;
    height: 100%;
    object-fit: contain;
}

.homepage-collection .cart_round {
    opacity: 1;
    top: 18px;
    right: 16px;
    transform: none;
    gap: 8px;
}

.homepage-collection .cart_round button,
.homepage-collection .cart_round a {
    width: 40px;
    height: 40px;
    border: none;
    background: #ececec;
    color: #111827;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .08);
}

.homepage-collection .cart_round .wishlist-btn {
    background: #ef4444;
    color: #fff;
}

.homepage-collection .cart_round .wishlist-btn.active {
    background: #dc2626;
    color: #fff;
}

.homepage-collection .name_rating {
    padding: 0 16px 18px;
    flex: 1;
}

.homepage-collection .name_rating .d-flex {
    height: 100%;
}

.homepage-collection .left_boo {
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.homepage-collection .left_boo>div:last-child {
    margin-top: auto;
}

.homepage-collection .left_boo span {
    font-size: .94rem;
    line-height: 1.2;
    height: auto;
    min-height: 0;
    color: #ef4444;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .02em;
}

.homepage-collection .left_boo h4 {
    font-size: 1.15rem;
    line-height: 1.25;
    height: 3.05em;
    color: #111827;
    font-weight: 800;
    margin-top: 12px;
}

.homepage-collection .left_boo .price {
    color: #2ea043;
    font-size: 1.2rem;
    font-weight: 700;
}

.homepage-collection .left_boo .price span {
    display: inline-block;
    color: #9ca3af;
    font-size: .95rem;
    font-weight: 500;
}

.homepage-collection .tab_box_tab .slick-nav.prev-arrow {
    left: -22px;
}

.homepage-collection .tab_box_tab .slick-nav.next-arrow {
    right: -22px;
}

.homepage-collection .slick-nav {
    top: 50%;
    transform: translateY(-50%);
}

.homepage-collection .slick-nav.prev-arrow {
    transform: translateY(-50%) scaleX(-1);
}

.homepage-bestsellers {
    position: relative;
    padding: 95px 0 100px;
    background:
        radial-gradient(circle at top right, rgba(13, 148, 136, 0.08), transparent 28%),
        linear-gradient(180deg, #f8fafc 0%, #eef7f6 100%);
}

.homepage-bestsellers .container {
    max-width: 1500px;
}

.homepage-bestsellers .tab_box_tab {
    position: relative;
    padding: 0 44px;
}

.homepage-bestsellers .heading_hp {
    margin-bottom: 36px;
}

.homepage-bestsellers .new_arr_padding {
    padding: 0 12px 24px;
    height: 100%;
}

.homepage-bestsellers .new_arr_carousel {
    position: relative;
}

.homepage-bestsellers .slick-slide {
    height: auto;
}

.homepage-bestsellers .single_glass_item {
    height: 100%;
    min-height: 465px;
    border: 1px solid #c8c8c8;
    border-radius: 12px;
    box-shadow: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.homepage-bestsellers .single_img {
    height: 265px;
    padding: 24px 18px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.homepage-bestsellers .single_img a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.homepage-bestsellers .single_img img {
    width: auto;
    max-width: 78%;
    height: 100%;
    object-fit: contain;
}

.homepage-bestsellers .cart_round {
    opacity: 1;
    top: 18px;
    right: 16px;
    transform: none;
    gap: 8px;
}

.homepage-bestsellers .cart_round button,
.homepage-bestsellers .cart_round a {
    width: 40px;
    height: 40px;
    border: none;
    background: #ececec;
    color: #111827;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .08);
}

.homepage-bestsellers .cart_round .wishlist-btn {
    background: #ef4444;
    color: #fff;
}

.homepage-bestsellers .cart_round .wishlist-btn.active {
    background: #dc2626;
    color: #fff;
}

.homepage-bestsellers .name_rating {
    padding: 0 16px 18px;
    flex: 1;
}

.homepage-bestsellers .name_rating .d-flex {
    height: 100%;
}

.homepage-bestsellers .left_boo {
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.homepage-bestsellers .left_boo>div:last-child {
    margin-top: auto;
}

.homepage-bestsellers .left_boo span {
    font-size: .94rem;
    line-height: 1.2;
    height: auto;
    min-height: 0;
    color: #ef4444;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .02em;
}

.homepage-bestsellers .left_boo h4 {
    font-size: 1.15rem;
    line-height: 1.25;
    height: 3.05em;
    color: #111827;
    font-weight: 800;
    margin-top: 12px;
}

.homepage-bestsellers .left_boo .price {
    color: #2ea043;
    font-size: 1.2rem;
    font-weight: 700;
}

.homepage-bestsellers .left_boo .price span {
    display: inline-block;
    color: #9ca3af;
    font-size: .95rem;
    font-weight: 500;
}

.homepage-bestsellers .tab_box_tab .slick-nav.prev-arrow {
    left: -22px;
}

.homepage-bestsellers .tab_box_tab .slick-nav.next-arrow {
    right: -22px;
}

.homepage-bestsellers .slick-nav {
    top: 50%;
    transform: translateY(-50%);
}

.homepage-bestsellers .slick-nav.prev-arrow {
    transform: translateY(-50%) scaleX(-1);
}

.heading_hp--featured h2 {
    letter-spacing: -.02em;
}

.heading_hp--bestsellers span {
    display: inline-block;
    background: rgba(13, 148, 136, 0.12);
    color: #0f766e;
    padding: .35rem .7rem;
    border-radius: 999px;
    margin-bottom: .75rem;
}

.heading_hp--bestsellers h2 {
    color: #0f172a;
}

.heading_hp--trending span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    padding: .35rem .7rem;
    border-radius: 999px;
    margin-bottom: .75rem;
}

.heading_hp--trending h2 {
    color: #fff;
}

.homepage-trending {
    position: relative;
    padding: 95px 0 100px;
    background: #fff;
    color: inherit;
}

.homepage-trending .container {
    max-width: 1500px;
}

.homepage-trending .tab_box_tab {
    position: relative;
    padding: 0 44px;
}

.homepage-trending .heading_hp {
    margin-bottom: 36px;
}

.homepage-trending .heading_hp span {
    color: #22a336;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 18px;
}

.homepage-trending .heading_hp h2 {
    font-size: clamp(2.2rem, 3.2vw, 3.4rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.08;
}

.homepage-trending .new_arr_padding {
    padding: 0 12px 24px;
    height: 100%;
}

.homepage-trending .new_arr_carousell {
    position: relative;
}

.homepage-trending .slick-slide {
    height: auto;
}

.homepage-trending .single_glass_item {
    height: 100%;
    min-height: 465px;
    border: 1px solid #c8c8c8;
    border-radius: 12px;
    box-shadow: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.homepage-trending .single_img {
    height: 265px;
    padding: 24px 18px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.homepage-trending .single_img a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.homepage-trending .single_img img {
    width: auto;
    max-width: 78%;
    height: 100%;
    object-fit: contain;
}

.homepage-trending .cart_round {
    opacity: 1;
    top: 18px;
    right: 16px;
    transform: none;
    gap: 8px;
}

.homepage-trending .cart_round button,
.homepage-trending .cart_round a {
    width: 40px;
    height: 40px;
    border: none;
    background: #ececec;
    color: #111827;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .08);
}

.homepage-trending .cart_round .wishlist-btn {
    background: #ef4444;
    color: #fff;
}

.homepage-trending .cart_round .wishlist-btn.active {
    background: #dc2626;
    color: #fff;
}

.homepage-trending .name_rating {
    padding: 0 16px 18px;
    flex: 1;
}

.homepage-trending .name_rating .d-flex {
    height: 100%;
}

.homepage-trending .left_boo {
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.homepage-trending .left_boo>div:last-child {
    margin-top: auto;
}

.homepage-trending .left_boo span {
    font-size: .94rem;
    line-height: 1.2;
    height: auto;
    min-height: 0;
    color: #ef4444;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .02em;
}

.homepage-trending .left_boo h4 {
    font-size: 1.15rem;
    line-height: 1.25;
    height: 3.05em;
    color: #111827;
    font-weight: 800;
    margin-top: 12px;
}

.homepage-trending .left_boo .price {
    color: #2ea043;
    font-size: 1.2rem;
    font-weight: 700;
}

.homepage-trending .left_boo .price span {
    display: inline-block;
    color: #9ca3af;
    font-size: .95rem;
    font-weight: 500;
}

.homepage-trending .tab_box_tab .slick-nav.prev-arrow {
    left: -22px;
}

.homepage-trending .tab_box_tab .slick-nav.next-arrow {
    right: -22px;
}

.homepage-trending .slick-nav {
    top: 50%;
    transform: translateY(-50%);
}

.homepage-trending .slick-nav.prev-arrow {
    transform: translateY(-50%) scaleX(-1);
}

@media (max-width: 991.98px) {
    .homepage-collection {
        padding: 70px 0;
    }

    .homepage-collection .tab_box_tab {
        padding: 0 12px;
    }

    .homepage-collection .container {
        max-width: 100%;
    }

    .homepage-collection .single_img {
        height: 240px;
    }

    .homepage-collection .left_boo h4 {
        font-size: 1.05rem;
    }

    .homepage-collection .tab_box_tab .slick-nav.prev-arrow {
        left: -8px;
    }

    .homepage-collection .tab_box_tab .slick-nav.next-arrow {
        right: -8px;
    }

    .homepage-bestsellers {
        padding: 70px 0;
    }

    .homepage-bestsellers .tab_box_tab {
        padding: 0 12px;
    }

    .homepage-bestsellers .container {
        max-width: 100%;
    }

    .homepage-bestsellers .single_img {
        height: 240px;
    }

    .homepage-bestsellers .left_boo h4 {
        font-size: 1.05rem;
    }

    .homepage-bestsellers .tab_box_tab .slick-nav.prev-arrow {
        left: -8px;
    }

    .homepage-bestsellers .tab_box_tab .slick-nav.next-arrow {
        right: -8px;
    }

    .homepage-trending {
        padding: 70px 0;
    }

    .homepage-trending .tab_box_tab {
        padding: 0 12px;
    }

    .homepage-trending .container {
        max-width: 100%;
    }

    .homepage-trending .single_img {
        height: 240px;
    }

    .homepage-trending .left_boo h4 {
        font-size: 1.05rem;
    }

    .homepage-trending .tab_box_tab .slick-nav.prev-arrow {
        left: -8px;
    }

    .homepage-trending .tab_box_tab .slick-nav.next-arrow {
        right: -8px;
    }
}

@media (max-width: 767.98px) {
    .homepage-collection .slick-nav {
        width: 38px;
        height: 38px;
    }

    .homepage-collection .single_img {
        height: 220px;
    }

    .homepage-collection .cart_round button,
    .homepage-collection .cart_round a {
        width: 36px;
        height: 36px;
    }

    .homepage-bestsellers .slick-nav {
        width: 38px;
        height: 38px;
    }

    .homepage-bestsellers .single_img {
        height: 220px;
    }

    .homepage-bestsellers .cart_round button,
    .homepage-bestsellers .cart_round a {
        width: 36px;
        height: 36px;
    }

    .homepage-trending .slick-nav {
        width: 38px;
        height: 38px;
    }

    .homepage-trending .single_img {
        height: 220px;
    }

    .homepage-trending .cart_round button,
    .homepage-trending .cart_round a {
        width: 36px;
        height: 36px;
    }
}

/* ===== Header search dropdown (layout unchanged; only dropdown styled) ===== */
.main_menu_hdr {
    overflow: visible;
}

.header-search-wrap {
    position: relative;
}

.header-search-wrap .search_box.is-active i {
    color: var(--main-color);
}

.header-search-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: min(380px, calc(100vw - 24px));
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.14);
    z-index: 120;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    pointer-events: none;
}

.header-search-dropdown::before {
    content: '';
    position: absolute;
    top: -7px;
    right: 14px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    border-left: 1px solid #e5e7eb;
    transform: rotate(45deg);
}

.header-search-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.header-search__form {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin: 0;
    padding: 6px 6px 6px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f9fafb;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-search__form:focus-within {
    border-color: var(--main-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.12);
}

.header-search__form input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    font-size: 0.95rem;
    line-height: 1.4;
    padding: 8px 0;
    color: #111827;
    outline: none;
}

.header-search__form input::placeholder {
    color: #9ca3af;
}

.header-search__form input::-webkit-search-cancel-button {
    cursor: pointer;
}

.header-search__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: var(--main-color);
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.header-search__submit:hover {
    background: #218838;
}

.header-search__submit:active {
    transform: scale(0.96);
}

@media (max-width: 575px) {
    .header-search-dropdown {
        right: -8px;
        width: min(320px, calc(100vw - 20px));
    }
}
