:root {
    --ind-purple: #7b2cbf;
    --ind-purple-dark: #5a189a;
    --ind-purple-light: #f3e8ff;
    --ind-orange: #ff9e00;
    --ind-pink: #ff006e;
    --ind-blue: #3a86ff;
    --ind-dark: #22223b;
    --ind-border: #f0e6f6;
    --ind-gray-bg: #faf7fc;
    --ind-text: #4a4e69;
    --ind-text-muted: #9a8c98;
    --ind-white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    background-color: #fefcf9;
    color: var(--ind-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: all 0.2s ease; }
a:hover { color: var(--ind-purple); }

.ind-container { max-width: 1220px; margin: 0 auto; padding: 0 15px; }

.ind-header {
    background: var(--ind-white);
    border-bottom: 1px solid var(--ind-border);
}
.ind-header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}
.ind-logo img { height: 38px; max-width: 180px; object-fit: contain; }

.ind-search-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--ind-border);
    border-radius: 20px;
    padding: 4px 15px;
    background: var(--ind-gray-bg);
    width: 320px;
}
.ind-search-box input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 12px;
    width: 100%;
    color: #333;
}

.ind-nav-bar {
    background: var(--ind-purple);
    color: var(--ind-white);
}
.ind-nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
    white-space: nowrap;
}
.ind-nav-list li a {
    display: block;
    padding: 12px 22px;
    color: #f3e8ff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.ind-nav-list li a:hover, .ind-nav-list li.active a {
    color: #fff;
    background: rgba(0, 0, 0, 0.15);
}

.ind-notice-bar {
    background: var(--ind-purple-light);
    border-bottom: 1px solid #ebd4fc;
    padding: 10px 0;
    color: var(--ind-purple);
    font-size: 12px;
}

.ind-sec-title {
    text-align: center;
    margin: 40px 0 25px;
}
.ind-sec-title h2 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ind-dark);
}
.ind-sec-title p {
    font-size: 12px;
    color: var(--ind-text-muted);
    margin-top: 4px;
}

.ind-hero-duos {
    margin: 25px 0 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.ind-hero-card {
    background: linear-gradient(135deg, #f72585 0%, #7209b7 100%);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    box-shadow: 0 6px 20px rgba(114,9,183,0.15);
}
.ind-hero-info { flex: 1; padding-right: 15px; }
.ind-hero-badge {
    display: inline-block;
    background: var(--ind-orange);
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}
.ind-hero-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ind-hero-price { font-size: 20px; font-weight: 800; color: #ffbe0b; }
.ind-hero-img {
    width: 85px;
    height: 85px;
    object-fit: contain;
    background: #fff;
    padding: 6px;
    border-radius: 8px;
}

.ind-circle-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}
.ind-circle-card {
    background: var(--ind-white);
    border: 1px solid var(--ind-border);
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.ind-circle-card img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin: 0 auto 8px;
    background: var(--ind-purple-light);
    padding: 4px;
    border-radius: 50%;
}
.ind-circle-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--ind-dark);
    height: 30px;
    overflow: hidden;
    margin-bottom: 4px;
}
.ind-circle-price {
    font-size: 13px;
    font-weight: 800;
    color: var(--ind-purple);
}

.ind-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}
.ind-card-4 {
    background: var(--ind-white);
    border: 1px solid var(--ind-border);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.ind-card-4:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(123,44,191,0.08);
}
.ind-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--ind-orange);
    color: #fff;
    font-size: 9px;
    padding: 1px 6px;
    border-radius: 10px;
    font-weight: 700;
}
.ind-card-thumb {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}
.ind-card-thumb img {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}
.ind-card-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--ind-dark);
    height: 34px;
    overflow: hidden;
    margin-bottom: 6px;
}
.ind-card-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--ind-purple);
}

.ind-badge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}
.ind-badge-card {
    background: var(--ind-purple-light);
    border: 1px solid #ebd4fc;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
}
.ind-badge-card img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-right: 12px;
    background: #fff;
    padding: 3px;
    border-radius: 6px;
}
.ind-badge-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--ind-purple-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ind-pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.ind-pillar-card {
    background: var(--ind-white);
    border: 1px solid var(--ind-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.ind-pillar-head {
    background: linear-gradient(135deg, var(--ind-purple) 0%, var(--ind-purple-dark) 100%);
    color: #fff;
    padding: 10px 15px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
}
.ind-pillar-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid var(--ind-border);
}
.ind-pillar-item:last-child { border-bottom: none; }
.ind-pillar-item img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    margin-right: 12px;
    background: var(--ind-purple-light);
    padding: 3px;
    border-radius: 4px;
}
.ind-pillar-name {
    flex: 1;
    font-size: 12px;
    color: var(--ind-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ind-pillar-price { font-weight: 700; color: var(--ind-pink); margin-left: 8px; }

.ind-gradient-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}
.ind-gradient-card {
    border-radius: 8px;
    padding: 15px;
    color: #fff;
    display: flex;
    align-items: center;
}
.ind-gradient-card:nth-child(1) { background: linear-gradient(135deg, #7b2cbf 0%, #9d4edd 100%); }
.ind-gradient-card:nth-child(2) { background: linear-gradient(135deg, #ff006e 0%, #ff5c8a 100%); }
.ind-gradient-card:nth-child(3) { background: linear-gradient(135deg, #3a86ff 0%, #00b4d8 100%); }
.ind-gradient-card:nth-child(4) { background: linear-gradient(135deg, #5a189a 0%, #7b2cbf 100%); }
.ind-gradient-card img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-right: 10px;
    background: #fff;
    padding: 2px;
    border-radius: 6px;
}
.ind-gradient-title {
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ind-news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}
.ind-news-card {
    background: var(--ind-white);
    border: 1px solid var(--ind-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.ind-news-thumb {
    width: 100%;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ind-purple-light);
    padding: 10px;
}
.ind-news-thumb img {
    max-width: 70px;
    max-height: 70px;
    object-fit: contain;
}
.ind-news-body { padding: 12px; }
.ind-news-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--ind-dark);
    height: 34px;
    overflow: hidden;
    margin-bottom: 6px;
}
.ind-news-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 6px;
    border-top: 1px solid var(--ind-border);
}
.ind-news-btn {
    background: var(--ind-purple);
    color: #fff;
    padding: 2px 8px;
    font-size: 10px;
    border-radius: 10px;
    font-weight: 600;
}
.ind-news-btn:hover { background: var(--ind-purple-dark); color: #fff; }

.ind-catalog-box {
    background: var(--ind-white);
    border: 1px solid var(--ind-border);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 50px;
}
.ind-catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.ind-catalog-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: var(--ind-gray-bg);
    border-radius: 4px;
}
.ind-catalog-item:hover { background: var(--ind-purple-light); }
.ind-catalog-left { display: flex; align-items: center; flex: 1; overflow: hidden; }
.ind-catalog-left img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-right: 10px;
    background: #fff;
    padding: 2px;
}
.ind-catalog-title {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ind-catalog-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 10px;
}

.ind-panel-wrap {
    max-width: 980px;
    margin: 40px auto 60px;
    background: var(--ind-white);
    border: 1px solid var(--ind-border);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.ind-detail-layout {
    display: flex;
    flex-wrap: wrap;
    padding: 35px;
    gap: 35px;
}
.ind-detail-media {
    flex: 0 0 340px;
    text-align: center;
    border-right: 1px solid var(--ind-border);
    padding-right: 35px;
}
.ind-detail-media img {
    max-width: 240px;
    max-height: 240px;
    object-fit: contain;
}
.ind-detail-form { flex: 1; min-width: 300px; }
.ind-detail-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ind-dark);
    margin-bottom: 12px;
}
.ind-price-badge-box {
    background: var(--ind-purple-light);
    border: 1px solid #ebd4fc;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.ind-price-lg { font-size: 26px; font-weight: 800; color: var(--ind-purple); }

.ind-form-group { margin-bottom: 18px; }
.ind-form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--ind-dark);
    margin-bottom: 6px;
}
.ind-form-control {
    width: 100%;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 12px;
    font-size: 13px;
    outline: none;
}
.ind-form-control:focus { border-color: var(--ind-purple); }
.ind-btn-submit {
    width: 100%;
    height: 44px;
    background: var(--ind-purple);
    color: var(--ind-white);
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.ind-btn-submit:hover { background: var(--ind-purple-dark); }

.ind-tabs-head {
    display: flex;
    background: var(--ind-gray-bg);
    border-bottom: 1px solid var(--ind-border);
}
.ind-tab-btn {
    flex: 1;
    text-align: center;
    padding: 14px 0;
    font-weight: 600;
    color: #666;
    border-right: 1px solid var(--ind-border);
}
.ind-tab-btn:last-child { border-right: none; }
.ind-tab-btn.active {
    background: var(--ind-white);
    color: var(--ind-purple);
    border-top: 3px solid var(--ind-purple);
}

.ind-footer {
    background: var(--ind-purple-dark);
    color: #e0ccf5;
    padding: 35px 0 25px;
    text-align: center;
    font-size: 12px;
    border-top: 3px solid var(--ind-orange);
}
.ind-footer-nav { margin-bottom: 12px; }
.ind-footer-nav a { color: #fff; margin: 0 12px; }
.ind-footer-nav a:hover { color: var(--ind-orange); }
.ind-copyright { color: #b392de; font-size: 11px; }

@media (max-width: 1024px) {
    .ind-circle-grid { grid-template-columns: repeat(3, 1fr); }
    .ind-grid-4, .ind-badge-grid, .ind-gradient-grid, .ind-news-grid { grid-template-columns: repeat(2, 1fr); }
    .ind-pillar-grid, .ind-catalog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .ind-hero-duos, .ind-grid-4, .ind-badge-grid, .ind-gradient-grid, .ind-news-grid { grid-template-columns: 1fr; }
    .ind-circle-grid { grid-template-columns: repeat(2, 1fr); }
    .ind-detail-layout { flex-direction: column; }
    .ind-detail-media { border-right: none; border-bottom: 1px solid var(--ind-border); padding-right: 0; padding-bottom: 25px; }
}
