/* -------------------------------------------------------------
 * Smart Woo Alamin - Frontend Showcase Stylesheet
 * Pixel-perfect implementation matching reference design
 * High readability, enlarged fonts for crisp viewing
 * ----------------------------------------------------------- */

.smart-woo-showcase-container {
    width: 100%;
    max-width: 1200px;
    margin: 35px auto 45px;
    clear: both;
    display: block;
    position: relative;
    font-family: 'Hind Siliguri', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1f2937;
    box-sizing: border-box;
    line-height: 1.55;
    font-size: 15px;
}

.smart-woo-showcase-container * {
    box-sizing: border-box;
}

/* -------------------------------------------------------------
 * 1. TOP 6 FEATURE BADGES
 * ----------------------------------------------------------- */
.smart-woo-top-badges-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 26px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    margin-bottom: 20px;
}

.smart-woo-top-badges-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    align-items: center;
}

.smart-woo-top-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 6px 4px;
    transition: transform 0.2s ease;
}

.smart-woo-top-badge:hover {
    transform: translateY(-2px);
}

.smart-woo-top-badge .badge-icon-wrap {
    color: #111827;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
}

.smart-woo-top-badge .badge-icon-wrap svg {
    stroke: #111827;
    width: 30px;
    height: 30px;
}

.smart-woo-top-badge .badge-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 4px;
}

.smart-woo-top-badge .badge-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    line-height: 1.25;
}

/* -------------------------------------------------------------
 * 2. WHY YOU'LL LOVE BANNER
 * ----------------------------------------------------------- */
.smart-woo-why-banner {
    background-color: #fbf8f2;
    border: 1px solid #efe8db;
    border-radius: 16px;
    padding: 34px 38px;
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.smart-woo-why-left {
    flex: 0 0 34%;
    max-width: 34%;
}

.smart-woo-why-left .why-main-heading {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #111827;
    line-height: 1.25;
    margin: 0 0 14px 0;
}

.smart-woo-why-left .why-description-text {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    margin: 0;
}

.smart-woo-why-right {
    flex: 1;
}

.why-circle-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.why-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-circle-icon {
    width: 62px;
    height: 62px;
    background: #ffffff;
    border: 1px solid #e7ded0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

.why-circle-icon svg {
    width: 26px;
    height: 26px;
}

.why-circle-item:hover .why-circle-icon {
    transform: scale(1.06);
    border-color: #111827;
}

.why-circle-item .why-item-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.why-circle-item .why-item-desc {
    font-size: 13px;
    color: #374151;
    line-height: 1.4;
    margin: 0;
}

/* -------------------------------------------------------------
 * 3. TABS CONTAINER & MAIN 3-COLUMNS GRID
 * ----------------------------------------------------------- */
.smart-woo-tabs-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.smart-woo-tabs-header {
    display: flex;
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
    overflow-x: auto;
}

.smart-showcase-tab {
    flex: 1;
    padding: 16px 20px;
    background: transparent;
    border: none;
    border-right: 1px solid #e5e7eb;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #4b5563;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.smart-showcase-tab:last-child {
    border-right: none;
}

.smart-showcase-tab:hover {
    color: #111827;
    background: #eaedf1;
}

.smart-showcase-tab.active {
    background: #ffffff;
    color: #111827;
    border-bottom: 2px solid #111827;
}

.smart-woo-tabs-content {
    padding: 34px 32px;
}

.smart-tab-pane {
    display: none;
}

.smart-tab-pane.active {
    display: block;
    animation: smartFadeIn 0.3s ease;
}

@keyframes smartFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* -------------------------------------------------------------
 * 3-COLUMNS GRID (DETAILS, SIZE, WASH)
 * ----------------------------------------------------------- */
.smart-woo-columns-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 36px;
}

.smart-sec-heading {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #111827;
    margin-bottom: 20px;
}

/* COLUMN 1: PRODUCT DETAILS */
.smart-specs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
}

.spec-row {
    display: flex;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.5;
}

.spec-label {
    width: 125px;
    flex-shrink: 0;
    font-weight: 700;
    color: #111827;
}

.spec-colon {
    width: 14px;
    flex-shrink: 0;
    color: #6b7280;
    font-weight: 700;
}

.spec-value {
    flex: 1;
    color: #27272a;
    font-weight: 500;
}

/* DTF Highlight Block */
.smart-dtf-block {
    margin-top: 26px;
    margin-bottom: 22px;
}

.dtf-flex-wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
}

.dtf-image-box {
    width: 125px;
    height: 85px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dtf-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dtf-graphic-box {
    background: #000000;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    padding: 6px;
}

.dtf-graphic-box .dtf-main-text {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #ffffff;
    line-height: 1;
}

.dtf-graphic-box .dtf-sub-text {
    font-size: 9px;
    letter-spacing: 1.5px;
    color: #9ca3af;
    margin-top: 4px;
}

.dtf-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dtf-points-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.check-icon-span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
}

.check-icon-span svg {
    stroke: #ffffff;
    stroke-width: 2.5;
    width: 11px;
    height: 11px;
}

/* Tip Alert Box */
.smart-tip-box {
    background: #fdfbf7;
    border: 1px solid #f2ead8;
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 20px;
}

.smart-tip-box .tip-icon-wrap {
    color: #d97706;
    flex-shrink: 0;
    margin-top: 2px;
}

.smart-tip-box .tip-icon-wrap svg {
    stroke: #d97706;
    width: 24px;
    height: 24px;
}

.smart-tip-box .tip-text {
    font-size: 14px;
    line-height: 1.6;
    color: #78350f;
    font-weight: 500;
}

/* COLUMN 2: SIZE GUIDE */
.tshirt-illustration-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    min-height: 140px;
}

.tshirt-illustration-wrap .size-guide-illustration-img {
    max-width: 100%;
    max-height: 180px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 6px;
}

.tshirt-illustration-wrap svg {
    max-width: 100%;
    height: auto;
}

.smart-size-table-wrap {
    margin-bottom: 18px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.smart-size-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-size: 15px;
}

.smart-size-table thead {
    background: #f9fafb;
}

.smart-size-table th {
    padding: 12px 14px;
    font-weight: 700;
    color: #111827;
    border-bottom: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
}

.smart-size-table th:last-child {
    border-right: none;
}

.smart-size-table td {
    padding: 11px 14px;
    color: #27272a;
    border-bottom: 1px solid #f3f4f6;
    border-right: 1px solid #f3f4f6;
    font-weight: 500;
}

.smart-size-table td:last-child {
    border-right: none;
}

.smart-size-table tbody tr:last-child td {
    border-bottom: none;
}

.smart-size-table td.size-col-name {
    font-weight: 800;
    color: #111827;
    font-size: 16px;
}

.smart-size-notice-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.smart-size-notice-box .size-notice-icon {
    color: #6b7280;
    flex-shrink: 0;
    margin-top: 1px;
}

.smart-size-notice-box .size-notice-icon svg {
    width: 22px;
    height: 22px;
}

.smart-size-notice-box .size-notice-text {
    font-size: 14px;
    line-height: 1.55;
    color: #374151;
}

/* COLUMN 3: WASH CARE */
.smart-wash-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.smart-wash-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wash-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #111827;
}

.wash-icon-wrap svg {
    stroke: #111827;
    width: 26px;
    height: 26px;
}

.wash-text {
    font-size: 15.5px;
    font-weight: 600;
    color: #111827;
    line-height: 1.45;
}

/* Shipping Text */
.smart-shipping-text {
    font-size: 15.5px;
    line-height: 1.85;
    color: #27272a;
    background: #f9fafb;
    padding: 26px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

/* -------------------------------------------------------------
 * RESPONSIVENESS
 * ----------------------------------------------------------- */
@media (max-width: 1024px) {
    .smart-woo-why-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 26px 22px;
    }

    .smart-woo-why-left {
        flex: 1;
        max-width: 100%;
    }

    .smart-woo-why-right {
        width: 100%;
    }

    .smart-woo-columns-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .smart-woo-col.col-wash {
        grid-column: span 2;
    }

    .smart-wash-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .smart-woo-top-badges-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .why-circle-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .smart-woo-columns-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .smart-woo-col.col-wash {
        grid-column: span 1;
    }

    .smart-wash-list {
        grid-template-columns: 1fr;
    }

    .smart-showcase-tab {
        padding: 14px 12px;
        font-size: 12.5px;
    }

    .smart-woo-tabs-content {
        padding: 22px 18px;
    }
}

@media (max-width: 480px) {
    .smart-woo-top-badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-circle-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .smart-woo-top-badges-card {
        padding: 18px 14px;
    }

    .smart-woo-why-banner {
        padding: 22px 18px;
    }

    .dtf-flex-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .dtf-image-box {
        width: 100%;
        height: 110px;
    }
}
