@charset "utf-8";

/* ==========================================================================
   Etertech Design System - Component Library (et-contents.css)
   Contains styles for features, cards, timelines, steps, and other UI modules.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Common Components (CTA, Headings)
   -------------------------------------------------------------------------- */
.section-headline {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-sub-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.section-desc {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* CTA Box */
.svc_cta_box {
    margin-top: 60px;
    text-align: center;
    background-color: var(--primary, #00baa4);
    color: #fff;
    padding: 50px;
    border-radius: 10px;
}

.btn_white_outline {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s;
    text-decoration: none;
}

.btn_white_outline:hover {
    background: #fff;
    color: var(--primary, #00baa4);
}


/* --------------------------------------------------------------------------
   Button System (Bootstrap-style)
   -------------------------------------------------------------------------- */

/* Base Button */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Button Sizes */
.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, #00a896 0%, #028090 100%);
    color: #fff;
    border-color: transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #028090 0%, #026777 100%);
    box-shadow: 0 5px 20px rgba(0, 168, 150, 0.3);
}

/* Secondary Button */
.btn-secondary {
    background: #333;
    color: #fff;
    border-color: #333;
}

.btn-secondary:hover {
    background: #222;
    border-color: #222;
}

/* Outline Primary */
.btn-outline-primary {
    background: transparent;
    color: #00a896;
    border-color: #00a896;
}

.btn-outline-primary:hover {
    background: #00a896;
    color: #fff;
}

/* Outline White */
.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline-white:hover {
    background: #fff;
    color: #333;
}

/* Outline Dark */
.btn-outline-dark {
    background: transparent;
    color: #333;
    border-color: #333;
}

.btn-outline-dark:hover {
    background: #333;
    color: #fff;
}

/* Light Button */
.btn-light {
    background: #f8f9fc;
    color: #333;
    border-color: #e0e0e0;
}

.btn-light:hover {
    background: #eee;
    border-color: #ccc;
}

/* Dark Button */
.btn-dark {
    background: #222;
    color: #fff;
    border-color: #222;
}

.btn-dark:hover {
    background: #000;
    border-color: #000;
}

/* Success / Danger / Warning / Info */
.btn-success {
    background: #28a745;
    color: #fff;
    border-color: #28a745;
}

.btn-danger {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
}

.btn-warning {
    background: #ffc107;
    color: #333;
    border-color: #ffc107;
}

.btn-info {
    background: #17a2b8;
    color: #fff;
    border-color: #17a2b8;
}

/* Full Width */
.btn-block {
    display: block;
    width: 100%;
}

/* Button Group */
.btn-group {
    display: inline-flex;
    gap: 10px;
}

/* Icon in Button */
.btn i {
    margin-right: 8px;
}

.btn i:last-child {
    margin-right: 0;
    margin-left: 8px;
}

/* --------------------------------------------------------------------------
   Platform & Solution Components
   -------------------------------------------------------------------------- */
/* Feature Grid & Cards */
.feature_grid {
    display: grid;
    gap: 30px;
}

.feature_grid.col-3 {
    grid-template-columns: repeat(3, 1fr);
}

.feature_grid.col-2 {
    grid-template-columns: repeat(2, 1fr);
}

.feature_card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* shadow-sm equivalent */
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid transparent;
    text-align: center;
}

.feature_card:hover {
    /* shadow-hover */
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary, #00baa4);
}

.feature_card i {
    font-size: 50px;
    color: var(--primary, #00baa4);
    margin-bottom: 20px;
}

.feature_card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.feature_card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    word-break: keep-all;
}

/* System Architecture Diagram */
.arch-diagram {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
}

.arch-node {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 18%;
    min-width: 150px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.arch-node h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

/* Product Card (Shop) */
.product_card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary, #00baa4);
}

.product_card .prod_img {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
}

.product_card .prod_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product_card:hover .prod_img img {
    transform: scale(1.05);
}

.product_card .prod_txt {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product_card .prod_name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product_card .prod_desc {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product_card .prod_price {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f5f5f5;
}

.product_card .price_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.product_card .price_label {
    font-size: 13px;
    color: #999;
}

.product_card .price_val {
    font-weight: 700;
    font-size: 16px;
    color: #333;
}

.product_card .price_val.highlight {
    color: var(--primary, #00baa4);
    font-size: 18px;
}

/* Product Detail (Shop) */
.product-detail-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.product-images {
    flex: 1;
    min-width: 300px;
}

.product-info {
    flex: 1;
    min-width: 300px;
}

.product-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.product-info .subject strong {
    display: block;
    color: var(--primary, #00baa4);
    font-size: 14px;
    margin-bottom: 5px;
}

.product-info .sit_desc {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-info .commodity ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    border-top: 1px solid #eee;
}

.product-info .commodity li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.product-info .commodity li label {
    width: 100px;
    color: #888;
}

.product-info .price {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.product-info .price.navy {
    color: #333;
}

.product-info .price.gray {
    color: #888;
    font-size: 16px;
    text-decoration: line-through;
}

.product-info .selbtn {
    margin-top: 30px;
    display: flex;
    gap: 10px;
}

.product-info .btn_order {
    flex: 1;
    padding: 15px;
    background: var(--primary, #00baa4);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
}

.product-info .btn_counsel {
    flex: 1;
    padding: 15px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
}

/* Responsive Detail */
@media (max-width: 768px) {
    .product-detail-wrap {
        flex-direction: column;
    }

    .product-info .selbtn {
        flex-direction: column;
    }
}

.arch-node ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 14px;
    color: #666;
}

.arch-node ul li {
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.arch-node ul li::before {
    content: '-';
    position: absolute;
    left: 0;
}

.arch-arrow {
    flex: 1;
    text-align: center;
    color: #ccc;
    font-size: 24px;
}

/* Tech Stack */
.tech-stack-row {
    display: flex;
    margin-bottom: 30px;
}

.tech-category {
    width: 150px;
    font-weight: 700;
    font-size: 18px;
    padding-right: 20px;
    border-right: 2px solid #eee;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    color: #333;
}

.tech-items {
    flex: 1;
    padding-left: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.tech-badge {
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

/* Process Steps */
.step_list.vertical-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step_item_row {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.step_item_row:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: var(--primary, #00baa4);
}

.step_num_box {
    width: 60px;
    height: 60px;
    background: var(--primary, #00baa4);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    flex-shrink: 0;
}

.step_content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step_content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.step_deliverables {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.step_deliverables li {
    font-size: 14px;
    color: #666;
    background: #f5f5f5;
    padding: 5px 12px;
    border-radius: 4px;
}

.step_deliverables li i {
    color: var(--primary, #00baa4);
    margin-right: 5px;
}

/* FAQ */
.faq_list {
    border-top: 2px solid #333;
}

.faq_item {
    border-bottom: 1px solid #eee;
}

.faq_item summary {
    padding: 20px 0;
    font-weight: 600;
    cursor: pointer;
    font-size: 18px;
    outline: none;
    list-style: none;
    position: relative;
    padding-right: 40px;
}

.faq_item summary::-webkit-details-marker {
    display: none;
}

.faq_item summary::after {
    content: '\f107';
    /* FontAwesome angle-down */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
}

.faq_item[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq_item p {
    padding: 0 0 20px 0;
    color: #666;
    line-height: 1.6;
    background: #fafafa;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   History Page Components
   -------------------------------------------------------------------------- */
.history-container {
    position: relative;
    /* padding: 20px 0;
    max-width: 1000px;
    margin: 0 auto; */
}

.history-timeline-line {
    position: absolute;
    left: 20%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #d5d5d5;
}

.history-row {
    position: relative;
    display: flex;
    margin-bottom: 60px;
}

.history-year-col {
    width: 20%;
    padding-right: 4rem;
    text-align: right;
    position: relative;
    flex-shrink: 0;
}

.year-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary, #00baa4);
    line-height: 1.2;
}

.history-marker {
    position: absolute;
    left: calc(20% - 5px);
    top: 8px;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 3px solid var(--primary, #00baa4);
    border-radius: 50%;
    z-index: 10;
}

.history-content-col {
    /* flex: 1; */
    width: 80%;
    padding-left: 40px;
}

/* Revert to working styles used in previous session */
.history-card {
    background: #fff;
    padding: 1.75rem;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: 0.3s;
}

.history-card:hover {
    transform: translateX(5px);
    border-color: var(--primary, #00baa4);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.history-month-row {
    display: flex;
    margin-bottom: 10px;
}

.history-month-row:last-child {
    margin-bottom: 0;
}

.month-badge {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    background: #333;
    color: #fff;
    font-size: 1rem;
    border-radius: 4px;
    margin-right: 15px;
    height: fit-content;
}

.history-events p {
    margin: 0 0 5px 0;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Mission & Vision Components
   -------------------------------------------------------------------------- */
.mv-grid {
    display: flex;
    gap: 30px;
}

.mv-card {
    flex: 1;
    padding: 50px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.mv-card.mission {
    background-color: var(--primary, #00baa4);
    color: #fff;
}

.mv-card.vision {
    background-color: #222;
    color: #fff;
}

.mv-card .icon-box i {
    font-size: 40px;
}

.mv-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.mv-card p.opacity-90 {
    opacity: 0.9;
}

.values_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value_item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.value_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary, #00baa4);
}

.value_icon {
    font-size: 40px;
    color: var(--primary, #00baa4);
    margin-bottom: 20px;
}

.value_item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* --------------------------------------------------------------------------
   Team & Organization Components
   -------------------------------------------------------------------------- */
.team_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Default 4 cols? Or 3? About_team uses col-3 */
}

.team_card {
    text-align: center;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.3s;
}

.team_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team_thumb {
    height: 300px;
    overflow: hidden;
    background: #f5f5f5;
}

.team_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team_info {
    padding: 25px;
}

.team_info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.team_info .position {
    display: block;
    color: var(--primary, #00baa4);
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 600;
}

.team_info .desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Org Chart */
.org-chart {
    position: relative;
}

.connector-line {
    width: 2px;
    background: #ccc;
    margin: 0 auto;
}

.team-box {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 150px;
}

/* --------------------------------------------------------------------------
   E-commerce Components
   -------------------------------------------------------------------------- */
.spec-table-wrap {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.spec-table-wrap table {
    border-collapse: collapse;
    width: 100%;
}

.spec-table-wrap thead {
    background: #f9f9f9;
}

.spec-table-wrap th {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.spec-table-wrap td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

/* --------------------------------------------------------------------------
   Website Components (Phi Grid)
   -------------------------------------------------------------------------- */
.phi-grid {
    display: flex;
    gap: 30px;
}

.phi-item {
    flex: 1;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* --------------------------------------------------------------------------
   Responsive Layouts
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {

    /* Feature Grid */
    .feature_grid.col-3,
    .feature_grid.col-2,
    .values_grid,
    .team_grid {
        grid-template-columns: 1fr;
    }

    /* Flex Containers to Stack */
    .mv-grid,
    .phi-grid,
    .step_item_row,
    .arch-diagram,
    .tech-stack-row,
    .d-flex.width-full {
        flex-direction: column;
    }

    /* Intro Keywords */
    .intro_keywords {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    /* Process Steps */
    .step_item_row {
        gap: 15px;
    }

    .step_num_box {
        margin-right: 0;
        margin-bottom: 15px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .step_item_row {
        align-items: center;
        text-align: center;
    }

    /* Optional centering for mobile steps */

    /* Architecture Diagram */
    .arch-diagram {
        gap: 15px;
        padding: 20px;
    }

    .arch-node {
        width: 100%;
        min-width: auto;
    }

    .arch-arrow {
        transform: rotate(90deg);
        margin: 5px 0;
    }

    /* History Timeline mobile */
    .history-timeline-line {
        left: 20px;
    }

    .history-row {
        flex-direction: column;
        padding-left: 40px;
        margin-bottom: 40px;
    }

    .history-year-col {
        width: 100%;
        text-align: left;
        padding-right: 0;
        margin-bottom: 10px;
    }

    .history-marker {
        left: 16px;
        top: 5px;
    }

    /* Adjusted against left 20px line */
    .history-content-col {
        width: 100%;
        padding-left: 0;
    }

    .history-month-row {
        flex-direction: column;
    }

    .month-badge {
        margin: 0 0 0.75rem 0;
    }

    .history-card {
        padding: 1.25rem;
    }


    /* Tech Stack */
    .tech-category {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid #eee;
        margin-bottom: 15px;
        padding-bottom: 10px;
        justify-content: center;
        text-align: center;
    }

    .tech-items {
        padding-left: 0;
        justify-content: center;
    }

    /* Typography */
    .section-headline {
        font-size: 28px;
    }

    .section-sub-title {
        font-size: 22px;
    }
}

/* Product Options & Quantity */
.option {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
}

.option h4 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 700;
}

.seloption ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sit_opt_list {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sit_opt_list .opt_name {
    font-weight: 500;
    color: #333;
    flex: 1;
}

.sit_opt_list .opt_count {
    display: flex;
    align-items: center;
    gap: 5px;
}

.sit_opt_list .opt_count button {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sit_opt_list .opt_count input {
    width: 40px;
    height: 28px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin: 0 5px;
}

.selprice {
    font-size: 20px;
    font-weight: 700;
    text-align: right;
    margin: 20px 0;
    color: var(--primary, #00baa4);
}

.selbtn {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.selbtn button {
    flex: 1;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    border: none;
}

.selbtn .btn_submit {
    background: var(--primary, #00baa4);
    color: #fff;
}

.selbtn .btn_cancel {
    background: #333;
    color: #fff;
}

/* --------------------------------------------------------------------------
   Dashboard Components (MyPage)
   -------------------------------------------------------------------------- */
.dashboard-header {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eee;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-profile {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dashboard-profile .profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
}

.dashboard-profile .profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard-profile .profile-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.dashboard-profile .profile-info p {
    color: #666;
    font-size: 14px;
}

.dashboard-stats {
    display: flex;
    gap: 40px;
}

.dashboard-stat-item {
    text-align: center;
}

.dashboard-stat-item .label {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

.dashboard-stat-item .value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary, #00baa4);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.dashboard-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.dashboard-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-card h3 a {
    font-size: 13px;
    color: #888;
    font-weight: 400;
}

/* Redefine Shop Table for Dashboard */
.shop-table {
    width: 100%;
    border-collapse: collapse;
}

.shop-table th {
    padding: 10px;
    background: #f9f9f9;
    color: #555;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.shop-table td {
    padding: 12px 10px;
    text-align: center;
    border-bottom: 1px solid #eee;
    color: #666;
}

.shop-table td.td_left {
    text-align: left;
}

.empty-state {
    padding: 40px;
    text-align: center;
    color: #888;
    background: #fafafa;
    border-radius: 5px;
}

/* --------------------------------------------------------------------------
   Blog Image with Caption (Agent Generated Content)
   -------------------------------------------------------------------------- */
.article-image-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
    max-width: 100%;
}

.article-image-wrap img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.article-image-wrap .image-caption {
    margin-top: 12px;
    font-size: 13px;
    color: #999;
    text-align: center;
    opacity: 0.8;
    line-height: 1.5;
}

.article-image-wrap .image-caption a {
    color: #888;
    text-decoration: underline;
}

.article-image-wrap .image-caption a:hover {
    color: #666;
}