:root {
    --brand-green: #11A1FA;
    --brand-dark: #222;
    --brand-border: #e3e3e3;
    --brand-bg: #f5f5f5;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
}

body.gotop {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#content {
    flex: 1 0 auto;
}

/*.container {*/
/*    max-width: 1750px;*/
/*    margin: 0 auto;*/
/*}*/

/* very top mini bar */
.mini-top {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 12px;
    color: #334155;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.mini-top a {
    color: #0f7ae5;
    text-decoration: none;
    font-size: 16px;
}

.mini-top .sign-in-btn {
    font-size: 16px;
    font-family: Ador-SemiBold, sans-serif;
    color: #fff !important;
    text-decoration: none;
    background: linear-gradient(135deg, #11a1fa, #0d7bdc);
    padding: 7px 14px;
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(17, 161, 250, 0.22);
    transition: transform .2s ease, box-shadow .2s ease;
}

.mini-top .sign-up-btn {
    font-size: 16px;
    font-family: Ador-SemiBold, sans-serif;
    color: #fff !important;
    text-decoration: none;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 7px 14px;
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
    transition: transform .2s ease, box-shadow .2s ease;
}

.contact-info {
    font-size: 15px;
    font-weight: 600;
}

.mini-top .sign-in-btn:hover,
.mini-top .sign-up-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.18);
}

/* header main */
.logo img {
    max-height: 62px;
    object-fit: contain;
}

.search-box {
    color: #0f172a;
    font-size: 18px;
    height: 58px;
    font-family: Ador-Regular;
    width: 100% !important;
    border: 1px solid rgba(148, 163, 184, 0.38);
    border-radius: 999px;
    padding: 0 0 0 22px;
    align-items: center;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}

.search-box:focus-within {
    border-color: rgba(17, 161, 250, 0.6);
    box-shadow: 0 16px 34px rgba(17, 161, 250, 0.13);
}

.search-box input {
    border: 0;
    border-radius: 0;
    box-shadow: none !important;
    font-size: 16px;
    background: transparent;
    padding-left: 4px;
}

.search-box input::placeholder {
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
}

.search-box button {
    border: 0;
    border-radius: 0;
    background: linear-gradient(135deg, #11a1fa, #0d7bdc);
    color: #fff;
    width: 60px;
    height: 100%;
    border-radius: 0 999px 999px 0;
    transition: filter .2s ease, transform .2s ease;
}

.search-box button i {
    color: #fff;
}

.search-box button:hover {
    filter: brightness(1.04);
    transform: translateX(1px);
}

.header-right a {
    font-size: 1.2rem;
    color: #0f172a;
    text-decoration: none;
    margin-left: 15px;
}

.header-right a .badge {
    background: linear-gradient(135deg, #11a1fa, #0d7bdc);
}

/* category + banner area */
.main-area {
    margin: 10px 0 0;
    padding: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 26px;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.category-left {
    border: 1px solid rgba(148, 163, 184, 0.2);
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.cat-header {
    background: linear-gradient(135deg, #0f9ef5 0%, #0d7bdc 100%);
    color: #fff;
    padding: 14px 18px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(17, 161, 250, 0.15);
}

.cat-list {
    list-style: none;
    margin: 0;
    padding: 8px 0 12px;
    background: #fff;
}

.cat-list li a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    color: #1f2937;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, padding-left .2s ease;
}

.cat-list li:last-child a {
    border-bottom: 0;
}

.cat-list li a:hover {
    background: linear-gradient(90deg, rgba(17, 161, 250, 0.08), transparent);
    color: #0d7bdc;
    padding-left: 22px;
}

/* ====== NEW: category + subcategory styling ====== */
.cat-list li.has-sub>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.cat-list li.has-sub>a .toggle-icon {
    font-size: 11px;
    color: #64748b;
    transition: transform 0.2s ease;
}

.cat-list li.has-sub>a[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

.sub-cat {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #f8fbff;
}

.sub-cat li a {
    padding: 8px 18px 8px 32px;
    font-size: 12px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    color: #475569;
}

.sub-cat li:last-child a {
    border-bottom: 0;
}

/* ================================================ */

.banner-wrapper img {
    width: 100%;
    display: block;
}

.banner-wrapper {
    padding-left: 12px !important;
}

.banner-wrapper .carousel {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: #fff;
}

.banner-wrapper .carousel-inner,
.banner-wrapper .carousel-item,
.banner-wrapper .carousel-item img {
    border-radius: 24px;
}

.banner-wrapper .carousel-item img {
    object-fit: cover;
    min-height: 360px;
}

.banner-wrapper .carousel-indicators {
    margin-bottom: 14px;
}

.banner-wrapper .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background-color: rgba(15, 23, 42, 0.28);
}

.banner-wrapper .carousel-indicators .active {
    width: 28px;
    background-color: #11a1fa;
}

.banner-wrapper .carousel-control-prev,
.banner-wrapper .carousel-control-next {
    width: 10%;
}

.banner-wrapper .carousel-control-prev-icon,
.banner-wrapper .carousel-control-next-icon {
    background-size: 60% 60%;
    filter: drop-shadow(0 8px 18px rgba(15, 23, 42, 0.35));
}

/* section headings */
.home-section {
    margin-top: 22px;
    padding: 10px 0 12px;
}



.home-section-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.home-section-title::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #11a1fa, #0d7bdc);
    box-shadow: 0 0 0 5px rgba(17, 161, 250, 0.12);
}

.btn-more {
    color: #0d7bdc;
    font-family: Ador-Semibold, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(17, 161, 250, 0.18);
    background: linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}

.btn-more i {
    font-size: 12px;
    margin-left: 4px;
}

.btn-more:hover {
    color: #0b5fb3;
    border-color: rgba(17, 161, 250, 0.34);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
    transform: translateY(-1px);
}


.title-section {
    font-size: 18px;
    font-family: Ador-Bold;
    padding: 16px 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 255, 0.98) 100%);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
}

.title-section::after {
    content: "";
    position: absolute;
    inset: auto -12px -18px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(17, 161, 250, 0.10), transparent 68%);
    pointer-events: none;
}

.title-section .home-section-title,
.title-section .btn-more {
    position: relative;
    z-index: 1;
}



 /*product cards */
 
 
.product-card {
    position: relative;
    border: 1px solid #dbe6f3 !important;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    isolation: isolate;
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 161, 250, 0.08), transparent 26%);
    opacity: 0;
    transition: opacity .24s ease;
    z-index: 0;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(17, 161, 250, 0.34) !important;
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.13);
}

.product-card:hover::before {
    opacity: 1;
}

.product-thumb {
    position: relative;
    overflow: hidden;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(17, 161, 250, 0.12), transparent 40%),
        radial-gradient(circle at bottom right, rgba(17, 161, 250, 0.08), transparent 32%),
        linear-gradient(180deg, #f8fbff 0%, #eef4f9 100%);
    border-bottom: 1px solid #edf2f7;
}

.product-thumb img {
    width: 100%;
}

.product-card .product-main-img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    padding: 18px 18px 14px;
    transition: transform .32s ease;
    position: relative;
    z-index: 1;
}

.product-card:hover .product-main-img {
    transform: scale(1.055);
}

.badge-circle {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ff8a00, #ff5b00);
    color: #fff;
    font-size: 11px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    z-index: 11;
    box-shadow: 0 10px 18px rgba(255, 111, 0, 0.28);
}

.badge-pill {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #fff;
    z-index: 12;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.badge-coming {
    background: linear-gradient(135deg, #00b4d8, #11A1FA);
}

.badge-out {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(1px);
    z-index: 4;
    pointer-events: none;
}

.product-body {
    position: relative;
    z-index: 1;
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.p-title-main {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.5;
    color: #0f2f57;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin-bottom: 8px;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}

.p-title-main:hover {
    color: #11A1FA;
}

.p-short {
    font-size: 12px;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 10px;
}

.p-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
    color: #ff6f00;
}

.p-new {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.p-old {
    font-size: 13px;
    text-decoration: line-through;
    color: #94a3b8;
    margin-left: 0;
    font-weight: 600;
}

.p-installment {
    font-size: 11px;
    color: #64748b;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: auto;
}

.rating-stars i {
    color: #ffc107;
    margin-right: 2px;
    font-size: 13px;
}

.p-actions {
    margin-top: 14px;
    display: flex;
    gap: 10px;
}

.product-card .btn-details,
.product-card .btn-order {
    min-height: 42px;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 700;
    padding: 9px 12px;
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
    white-space: nowrap;
}

.product-card .btn-details {
    background: #fff;
    color: #0f2f57;
    border-color: #d7e5f5;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.product-card .btn-order {
    background: linear-gradient(135deg, #11A1FA, #0b7ee2);
    color: #fff;
    box-shadow: 0 10px 20px rgba(17, 161, 250, 0.22);
    margin-left: 0;
}

.product-card .btn-details:hover,
.product-card .btn-order:hover {
    transform: translateY(-1px);
    color: #fff;
}

.product-card .btn-details:hover {
    background: #0f2f57;
    border-color: #0f2f57;
    box-shadow: 0 12px 22px rgba(15, 47, 87, 0.2);
}

.product-card .btn-order:hover {
    background: linear-gradient(135deg, #0d8ce6, #0968bc);
}

.product-card .btn-order.btn-secondary,
.product-card .btn-details.btn-secondary {
    background: #cbd5e1;
    color: #475569;
    box-shadow: none;
    border-color: #cbd5e1;
}



/* footer */
footer {
    background: #111827;
    color: #d1d5db;
    margin-top: 40px;
    padding: 22px 0 16px;
    font-size: 12px;
    flex-shrink: 0;
}

footer .footer-content {
    line-height: 1.7;
    font-size: 13px;
}

footer a {
    color: #22c55e;
    text-decoration: none;
}

footer a:hover {
    color: #16a34a; /* একটু গাঢ় সবুজ বা অন্য color */
    text-decoration: underline; /* চাইলে underline */
}


/* breadcrumb top */
.breadcrumb-bar {
    background: #e9ecef;
    border-bottom: 1px solid #dcdcdc;
    padding: 8px 0;
    font-size: 13px;
}

.breadcrumb-bar a {
    text-decoration: none;
    color: #0d6efd;
}

.breadcrumb-bar span {
    color: #444;
}

/* main section */
.product-section {
    padding: 15px 0 40px;
}

/* left image / slider */
.product-image-box {
    background: #fff;
    border: 1px solid var(--brand-border);
    padding: 5px;
    position: relative;
}

.product-main-img {
    width: 100%;
    display: block;
}

/* follow us vertical bar */
.follow-strip {
    position: absolute;
    left: 8px;
    top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.follow-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: #000;
    padding: 4px 2px;
    margin-bottom: 5px;
    border-radius: 10px;
}

.follow-icons a {
    display: block;
    width: 22px;
    height: 22px;
    line-height: 22px;
    border-radius: 50%;
    background: #fff;
    text-align: center;
    margin-bottom: 3px;
    color: #000;
    font-size: 11px;
    box-shadow: 0 0 3px rgba(0, 0, 0, .2);
    text-decoration: none;
}

/* simple custom slider dots */
.thumb-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    display: flex;
    gap: 6px;
}

.thumb-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d0d0d0;
    display: block;
    cursor: pointer;
}

.thumb-dots span.active {
    background: #444;
}

/* middle info */
.product-info-box {
    background: #fff;
    border: 1px solid var(--brand-border);
    padding: 20px 22px 20px 22px;
    min-height: 100%;
}

.product-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
}

.price-line {
    font-size: 18px;
    margin-bottom: 12px;
}

.price-line .old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
    font-size: 18px;
}

.price-line .new-price {
    color: var(--brand-green);
    font-weight: 700;
    font-size: 24px;
}

.product-code-wrap {
    margin-bottom: 20px;
}

.product-code {
    display: inline-block;
    background: var(--brand-green);
    color: #fff;
    font-size: 13px;
    padding: 3px 10px;
    border-radius: 2px;
}

.label-text {
    font-weight: 600;
    margin-right: 8px;
}

.qty-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.qty-control {
    display: inline-flex;
    border: 1px solid var(--brand-border);
}

.qty-control button {
    border: 0;
    background: #f5f5f5;
    width: 32px;
    height: 32px;
    font-size: 18px;
    line-height: 1;
}

.qty-control input {
    width: 38px;
    border: 0;
    text-align: center;
    font-weight: 600;
}

.size-title {
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 6px;
}

.size-title span {
    font-weight: 600;
}

.size-btn-group .btn {
    border-radius: 0;
    margin-right: 6px;
    margin-bottom: 6px;
    font-size: 13px;
    min-width: 70px;
    border: 1px solid rgb(206, 204, 204);
}

.size-btn-group .btn-check:checked+.btn {
    border: 2px solid green;
    background: #fff;
    color: #000;
}


.product-actions{
    
    
    display: flex;
    gap: 10px;
}

.product-actions .btn {
    border-radius: 0;
    font-weight: 600;
    padding: 10px 30px;
    font-size: 14px;
    width: 50%;
}

.btn-cart {
    background: #000;
    color: #fff;
}

.btn-order {
    background: var(--brand-green);
    color: #fff;
    margin-left: 8px;
}

.btn-cart:hover {
    background: #111;
    color: #fff;
}

.btn-order:hover {
    background: #078b4b;
    color: #fff;
}

.phone-order {
    margin-top: 22px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.phone-order-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 6px;
}

.phone-number {
    font-size: 18px;
    color: #0d6efd;
    font-weight: 700;
}

.delivery-table {
    margin-top: 10px;
    font-size: 14px;
}

.delivery-table td {
    padding: 4px 0;
}

/* right sidebar */
.side-info {
    background: #fff;
    border: 1px solid var(--brand-border);
    padding: 12px 15px;
    font-size: 13px;
    margin-bottom: 15px;
}

.side-info li {
    display: flex;
    align-items: center;
    margin-bottom: 9px;
}

.side-info li:last-child {
    margin-bottom: 0;
}

.side-info i {
    font-size: 16px;
    margin-right: 8px;
    color: var(--brand-green);
}

.side-related {
    background: #fff;
    border: 1px solid var(--brand-border);
    font-size: 13px;
}

.side-related-header {
    background: var(--brand-green);
    color: #fff;
    padding: 7px 12px;
    font-weight: 600;
    text-align: center;
}

.related-item {
    display: flex;
    padding: 7px 10px;
    border-top: 1px solid var(--brand-border);
    text-decoration: none;
    color: #111;
        align-items: center;

}

.related-item:hover {
    background: #f5f5f5;
}

.related-item img {
    width: 50px;
    height: 65px;
    object-fit: cover;
    margin-right: 8px;
    border: 1px solid #eee;
}

.related-title {
    font-size: 12px;
    line-height: 1.3;
}

.product-desc-container {
    margin-top: 30px;
}

/* top tab: "পণ্য বিবরণ" */
.desc-tab-header {
    border: 1px solid #dddddd;
    border-bottom: none;
    background: #f8f8f8;
    padding: 6px 18px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    padding-top: 20px;
}

/* main white box */
.product-desc-panel {
    border: 1px solid #dddddd;
    border-top: none;
    background: #ffffff;
    padding: 22px 26px 26px;
    font-size: 14px;
    line-height: 1.6;
}

/* main big title row */
.desc-main-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.desc-main-title-row .desc-main-icon {
    font-size: 28px;
    color: #f9a825;
}

.desc-main-title-row .desc-main-title {
    font-size: 30px;
    font-weight: 700;
}

/* section titles  (Why This Pack, Product Details ...)  */
.desc-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0 10px;
}

.desc-section-title .emoji {
    font-size: 24px;
}

/* check list like screenshot */
.desc-check-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.desc-check-list li {
    margin-bottom: 4px;
}

.desc-check-list li::before {
    content: "✔";
    margin-right: 6px;
    color: #2e7d32;
    font-weight: 700;
}

/* key : value lines */
.desc-kv-line {
    margin-bottom: 4px;
}

.desc-kv-line .key {
    font-weight: 700;
}

/* ছোট পর্দায় padding একটু কমিয়ে দেই */
@media (max-width: 767.98px) {
    .product-desc-panel {
        padding: 16px 14px 18px;
    }

    .desc-main-title-row .desc-main-title {
        font-size: 22px;
    }
}


@media (max-width:991.98px) {
    .sidebar-col {
        margin-top: 20px;
    }

    .product-info-box {
        margin-top: 15px;
    }
}



@media (max-width:991.98px) {
    .banner-wrapper img {
        max-height: 220px;
        height: 100%;
    }

    .category-left {
        border-right: 0;
        border-bottom: 1px solid var(--brand-border);
    }

    .title-section {
        padding: 12px 14px;
        border-radius: 14px;
    }

    .home-section-title {
        font-size: 16px;
    }

    .btn-more {
        font-size: 13px;
        padding: 7px 12px;
        white-space: nowrap;
    }
}


.submit-btn {
    background: #000000 !important;
    display: block;
    width: 100%;
    border: 0;
    border-radius: 5px;
    padding: 7px 0;
    text-transform: uppercase;
    margin: 6px 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}


.register-now a {
    border: 1px solid #ddd;
    width: 100%;
    padding: 6px 0;
    border-radius: 5px;
    transition: 0.35s all;
}


.register-now a:hover {
    background: #000000;
    color: #fff;
}


.cart-dialog{
    
    display: flex;
    align-items: center;
    justify-content: end;
}



 .additional-offer-section {
            background: #ffffff;
            padding: 14px 14px 10px;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
            border: 1px solid rgba(148, 163, 184, 0.25);
        }

        .additional-offer-section h5 {
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            color: #0f172a;
        }

        .offer-swiper {
            overflow: hidden;
            padding-bottom: 4px;
        }

        .offer-card {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 14px 10px;
            border-radius: 10px;
            background: radial-gradient(circle at 0% 0%, #ecfeff 0, #f5f3ff 40%, #ffffff 100%);
            box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
            min-height: 82px;
            position: relative;
            overflow: hidden;
            transition: all 0.22s ease-out;
        }

        .offer-card::after {
            content: "";
            position: absolute;
            right: -18px;
            bottom: -18px;
            width: 60px;
            height: 60px;
            border-radius: 999px;
            background: radial-gradient(circle, rgba(56, 189, 248, 0.25), transparent 70%);
            opacity: 0;
            transform: translateY(8px);
            transition: all 0.22s ease-out;
        }

        .offer-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
        }

        .offer-card:hover::after {
            opacity: 1;
            transform: translateY(0);
        }

        .offer-icon {
            width: 38px;
            height: 38px;
            border-radius: 999px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 18px;
            background: conic-gradient(from 180deg, #22c55e, #0ea5e9, #22c55e);
            color: #ffffff;
            box-shadow: 0 10px 18px rgba(34, 197, 94, 0.4);
            flex-shrink: 0;
        }

        .offer-text {
            flex: 1;
        }

        .offer-text .offer-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #0f766e;
            background: rgba(45, 212, 191, 0.12);
            padding: 2px 8px;
            border-radius: 999px;
            margin-bottom: 4px;
        }

        .offer-text .offer-amount {
            font-size: 19px;
            font-weight: 800;
            color: #0f172a;
            line-height: 1.1;
        }

        .offer-text .offer-amount span {
            font-size: 13px;
            font-weight: 600;
            color: #2563eb;
            margin-left: 6px;
        }

        .offer-text .offer-condition {
            font-size: 12px;
            color: #64748b;
            margin-top: 3px;
            line-height: 1.35;
        }

        .offer-nav-btn {
            width: 30px;
            height: 30px;
            border-radius: 999px;
            border: 1px solid rgba(148, 163, 184, 0.6);
            background: #ffffff;
            outline: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.18s ease-out;
        }

        .offer-nav-btn i {
            line-height: 1;
        }

        .offer-nav-btn:hover {
            background: #0f172a;
            color: #ffffff;
            border-color: #0f172a;
            transform: translateY(-1px) scale(1.02);
            box-shadow: 0 8px 16px rgba(15, 23, 42, 0.28);
        }

        .offer-nav-btn:disabled,
        .offer-nav-btn.swiper-button-disabled {
            opacity: 0.35;
            cursor: default;
            box-shadow: none;
            transform: none;
        }

        .offer-pagination {
            margin-top: 6px;
            text-align: right;
        }

        .offer-pagination .swiper-pagination-bullet {
            width: 6px;
            height: 6px;
            background: #cbd5f5;
            opacity: 1;
            margin: 0 2px !important;
        }

        .offer-pagination .swiper-pagination-bullet-active {
            width: 14px;
            border-radius: 999px;
            background: #0f172a;
        }

        @media (max-width: 575.98px) {
            .additional-offer-section {
                padding: 10px 10px 8px;
            }

            .offer-card {
                padding: 12px 13px;
            }
        }

        /* ==== SIZE & COLOR SECTION STYLES ==== */
        .size-title {
            font-weight: 700;
            font-size: 13px;
            margin-bottom: 6px;
        }

        .size-title span {
            font-weight: 600;
        }

        .size-btn-group .btn {
            border-radius: 0;
            margin-right: 6px;
            margin-bottom: 6px;
            font-size: 13px;
            min-width: 70px;
            border: 1px solid rgb(206, 204, 204);
        }

        .size-btn-group .btn-check:checked + .btn {
            border: 2px solid green;
            background: #fff;
            color: #000;
        }

        .color-title {
            font-weight: 700;
            font-size: 13px;
            margin-bottom: 6px;
        }

        .color-title span {
            font-weight: 600;
        }

        .color-btn-group .btn {
            border-radius: 0;
            margin-right: 6px;
            margin-bottom: 6px;
            font-size: 13px;
            min-width: 70px;
            border: 1px solid rgb(206, 204, 204);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 4px 10px;
        }

        .color-btn-group .btn-check:checked + .btn {
            border: 2px solid green;
            background: #fff;
            color: #000;
        }

        .color-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 1px solid rgba(0,0,0,.4);
            display: inline-block;
        }
        
        
          .product-swiper.swiper {
            padding-bottom: 30px;
        }

        .product-swiper .swiper-slide {
            height: auto;
        }

        .product-swiper .swiper-button-next,
        .product-swiper .swiper-button-prev {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.3);
        }

        .product-swiper .swiper-button-next:after,
        .product-swiper .swiper-button-prev:after {
            font-size: 14px;
            color: #fff;
        }

        .product-swiper .swiper-pagination-bullet {
            opacity: 0.5;
        }

        .product-swiper .swiper-pagination-bullet-active {
            opacity: 1;
        }
        
        
        
        
        
        
        
        /* small screen */
@media (max-width:500px) {
    
    .container
 {
    width: 1655px;
    max-width: 100%;
    padding-right: 5px;
    padding-left: 5px;
}


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


#content{
     max-width: 100%;
    overflow-x: hidden; 
    
}

.table_iamge_name{
 
flex-direction: column;    

}
    
    
    .cust-order-1{
        
        
        padding: 0px 9px;
    }
    
    
.p-actions {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.product-body {
    padding: 14px 13px 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-thumb {
    min-height: 205px;
}

.product-card .product-main-img {
    height: 185px;
    padding: 14px 14px 10px;
}

.p-title-main {
    font-size: 14px;
    min-height: 40px;
}

.p-new {
    font-size: 28px;
}

.product-card .btn-details,
.product-card .btn-order {
    min-height: 40px;
    font-size: 11px;
}

}

.service-support-area {
   background: #f8f9fb;      /* full section er background */
   padding: 25px 0;
}

.service-support-box {
   /*background: #ffffff;*/
   padding: 25px 0px 0px 0px
}

.service-support-single img {
   max-width: 40px;          /* icon size */
}

.service-support-single h6 {
   font-size: 16px;
   font-weight: 600;
   margin: 0;
}

.service-support-single p {
   font-size: 13px;
   color: #6c757d;
   margin: 0;
}

/* column border ta exactly centre height e rakhar jonno */
.service-support-box .col-lg-3 {
   display: flex;
   align-items: center;
}

/* responsive: small screen e border-right off kore niche gap dibo */
@media (max-width: 767.98px) {
   .service-support-box {
      margin-left: 0 !important;
      margin-right: 0 !important;
   }
   .service-support-box .col-lg-3 {
      border-right: none !important;
      border-bottom: 1px solid #e1e4ea;
      padding-bottom: 10px;
   }
   .service-support-box .col-lg-3:last-child {
      border-bottom: none;
   }
}


/*  details page style */


        .additional-offer-section {
            background: #ffffff;
            padding: 14px 14px 10px;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
            border: 1px solid rgba(148, 163, 184, 0.25);
        }

        .additional-offer-section h5 {
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            color: #0f172a;
        }

        .offer-swiper {
            overflow: hidden;
            padding-bottom: 4px;
        }

        .offer-card {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 14px 10px;
            border-radius: 10px;
            background: radial-gradient(circle at 0% 0%, #ecfeff 0, #f5f3ff 40%, #ffffff 100%);
            box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
            min-height: 82px;
            position: relative;
            overflow: hidden;
            transition: all 0.22s ease-out;
        }

        .offer-card::after {
            content: "";
            position: absolute;
            right: -18px;
            bottom: -18px;
            width: 60px;
            height: 60px;
            border-radius: 999px;
            background: radial-gradient(circle, rgba(56, 189, 248, 0.25), transparent 70%);
            opacity: 0;
            transform: translateY(8px);
            transition: all 0.22s ease-out;
        }

        .offer-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
        }

        .offer-card:hover::after {
            opacity: 1;
            transform: translateY(0);
        }

        .offer-icon {
            width: 38px;
            height: 38px;
            border-radius: 999px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 18px;
            background: conic-gradient(from 180deg, #22c55e, #0ea5e9, #22c55e);
            color: #ffffff;
            box-shadow: 0 10px 18px rgba(34, 197, 94, 0.4);
            flex-shrink: 0;
        }

        .offer-text {
            flex: 1;
        }

        .offer-text .offer-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #0f766e;
            background: rgba(45, 212, 191, 0.12);
            padding: 2px 8px;
            border-radius: 999px;
            margin-bottom: 4px;
        }

        .offer-text .offer-amount {
            font-size: 19px;
            font-weight: 800;
            color: #0f172a;
            line-height: 1.1;
        }

        .offer-text .offer-amount span {
            font-size: 13px;
            font-weight: 600;
            color: #2563eb;
            margin-left: 6px;
        }

        .offer-text .offer-condition {
            font-size: 12px;
            color: #64748b;
            margin-top: 3px;
            line-height: 1.35;
        }

        .offer-nav-btn {
            width: 30px;
            height: 30px;
            border-radius: 999px;
            border: 1px solid rgba(148, 163, 184, 0.6);
            background: #ffffff;
            outline: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.18s ease-out;
        }

        .offer-nav-btn i {
            line-height: 1;
        }

        .offer-nav-btn:hover {
            background: #0f172a;
            color: #ffffff;
            border-color: #0f172a;
            transform: translateY(-1px) scale(1.02);
            box-shadow: 0 8px 16px rgba(15, 23, 42, 0.28);
        }

        .offer-nav-btn:disabled,
        .offer-nav-btn.swiper-button-disabled {
            opacity: 0.35;
            cursor: default;
            box-shadow: none;
            transform: none;
        }

        .offer-pagination {
            margin-top: 6px;
            text-align: right;
        }

        .offer-pagination .swiper-pagination-bullet {
            width: 6px;
            height: 6px;
            background: #cbd5f5;
            opacity: 1;
            margin: 0 2px !important;
        }

        .offer-pagination .swiper-pagination-bullet-active {
            width: 14px;
            border-radius: 999px;
            background: #0f172a;
        }

        @media (max-width: 575.98px) {
            .additional-offer-section {
                padding: 10px 10px 8px;
            }

            .offer-card {
                padding: 12px 13px;
            }
            
            
            .product-actions {
    display: flex;
    gap: 10px;
    flex-direction: column;
}


.product-actions .btn {
    border-radius: 0;
    font-weight: 600;
    padding: 10px 30px;
    font-size: 14px;
    width: 100%;
}

        }

        /* ==== SIZE & COLOR SECTION STYLES ==== */
        .size-title {
            font-weight: 700;
            font-size: 13px;
            margin-bottom: 6px;
        }

        .size-title span {
            font-weight: 600;
        }

        .size-btn-group .btn {
            border-radius: 0;
            margin-right: 6px;
            margin-bottom: 6px;
            font-size: 13px;
            min-width: 70px;
            border: 1px solid rgb(206, 204, 204);
        }

        .size-btn-group .btn-check:checked + .btn {
            border: 2px solid green;
            background: #fff;
            color: #000;
        }

        .color-title {
            font-weight: 700;
            font-size: 13px;
            margin-bottom: 6px;
        }

        .color-title span {
            font-weight: 600;
        }

        .color-btn-group .btn {
            border-radius: 0;
            margin-right: 6px;
            margin-bottom: 6px;
            font-size: 13px;
            min-width: 70px;
            border: 1px solid rgb(206, 204, 204);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 4px 10px;
        }

        .color-btn-group .btn-check:checked + .btn {
            border: 2px solid green;
            background: #fff;
            color: #000;
        }

        .color-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 1px solid rgba(0,0,0,.4);
            display: inline-block;
        }
        
        
        
          .product-swiper .swiper-button-next,
        .product-swiper .swiper-button-prev {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.3);
        }
        
        
        /* WhatsApp messenger */
        
        
        
.contact-actions .btn {
    border-radius: 0px;
    font-weight: 600;
    padding: 8px 18px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WhatsApp color */
.btn-whatsapp {
    background-color: #25D366;
    border-color: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background-color: #1da955;
    border-color: #1da955;
    color: #fff;
}

/* WhatsApp color */
.btn-messenger {
    background-color: #11A1FA;
    border-color: #11A1FA;
    color: #fff;
}

.btn-messenger:hover {
    background-color: #11A1FA;
    border-color: #11A1FA;
    color: #fff;
}


.rating {
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    justify-content: end;
    text-align: start;
}

.rating-stars i {
    color: #ffc107;          /* সোনালী রঙ */
    margin-right: 2px;
    font-size: 10px;
}

.rating-count {
    margin-left: 4px;
    color: #999;
    font-size: 12px;
}



.video-container iframe {
    
    width: 100%;
  
    height: 516px;
    
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.custom-overlay {
    position: absolute;
    top:0; left:0;
    width:100%; height:100%;
    background:#000;   /* thumbnail hidden */
    z-index:2;
}

.real-iframe {
    width:100%;
    height:100%;
    border:0;
    position: absolute;
    top:0; left:0;
    z-index:1;
}


























@media (max-width: 330px) {
    
    .video-container iframe {
    width: 100%;
    height: 284px;
}
    
}




@media only screen and (min-width:331px) and (max-width:375px) {
    
    .video-container iframe {
    width: 100%;
    height: 290px;
}
    
}


@media only screen and (min-width:331px) and (max-width:375px) {
    
    .video-container iframe {
    width: 100%;
    height: 338px;
}
    
}


@media only screen and (min-width:376px) and (max-width:500px) {
    
    .video-container iframe {
    width: 100%;
    height: 390px;
}
    
}





