

/* Start:/local/templates/platinumstore/components/bitrix/catalog.element/platinum_element/style.css?17806684548672*/
/* --- Product Page --- */
.product-page {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.product-gallery {
    width: 450px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column; /* Thumbnails below main image */
    gap: 20px;
}

.product-thumbnails {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
}

.thumb-item {
    width: 70px;
    height: 70px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 10px;
    cursor: pointer;
    background: #fff;
    transition: var(--transition);
}

.thumb-item.active, .thumb-item:hover {
    border-color: var(--color-dark);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-main-image {
    width: 100%;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 450px;
}

.product-main-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.product-variants {
    flex: 1;
    min-width: 0;
    padding-right: 20px;
}

.product-buy-card {
    width: 380px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    font-size: 13px;
    color: var(--color-gray);
}

.product-price-block {
    margin-bottom: 25px;
}

.price-current {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-dark);
}

.price-old {
    font-size: 16px;
    color: var(--color-gray);
    text-decoration: line-through;
    margin-left: 15px;
}

.installment-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff0f0;
    color: #e74c3c;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
}

.variant-group {
    margin-bottom: 25px;
}

.variant-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.color-options {
    display: flex;
    gap: 12px;
}

.color-swatch {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 3px;
}

.color-swatch.active, .color-swatch:hover {
    border-color: var(--color-accent);
}

.color-swatch-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
}

.memory-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.memory-btn {
    padding: 10px 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    color: var(--color-dark);
    transition: var(--transition);
}

.memory-btn.active, .memory-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    font-weight: 600;
}

/* Quick Specs */
.quick-specs {
    margin-bottom: 30px;
}

.quick-specs-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.quick-spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.quick-spec-label {
    color: var(--color-gray);
    position: relative;
    flex: 1;
    overflow: hidden;
}

.quick-spec-label::after {
    content: ".........................................................................................................";
    position: absolute;
    margin-left: 5px;
    color: #e1e1e1;
    letter-spacing: 2px;
}

.quick-spec-value {
    color: var(--color-dark);
    font-weight: 500;
    background: #fff; /* covers dots if needed */
    padding-left: 5px;
}

.btn-all-specs {
    display: inline-block;
    margin-top: 10px;
    color: #4a69bd; /* Nice blue link color */
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
}

.btn-all-specs:hover {
    text-decoration: underline;
}

.buy-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-buy-main {
    flex: 1;
    background: var(--color-accent);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-buy-main:hover {
    background: #73ad2c;
}

.btn-icon-action {
    width: 56px;
    height: 56px;
    background: var(--color-bg);
    border: none;
    border-radius: var(--radius-md);
    font-size: 20px;
    color: var(--color-gray);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon-action:hover {
    color: var(--color-accent);
    background: #eef2f5;
}

.upsell-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
}

.upsell-card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.4;
}

.upsell-card-price {
    font-size: 16px;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.upsell-card-divider {
    height: 1px;
    background-color: var(--color-border);
    margin-bottom: 15px;
    width: 100%;
}

.upsell-card-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2980b9; /* A blue link color matching the screenshot style */
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.upsell-card-action i {
    font-size: 12px;
}

.upsell-card-tradein {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2980b9;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}
.upsell-card-tradein i {
    font-size: 18px;
    color: #3498db;
}

/* Tabs */
.product-tabs-header {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-gray);
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    margin-bottom: -1px;
    transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
    color: var(--color-dark);
    border-bottom-color: var(--color-accent);
}

.tab-content-pane {
    display: none;
    line-height: 1.6;
    color: var(--color-dark);
    font-size: 15px;
}

.tab-content-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Expandable Description */
.desc-content-wrap {
    position: relative;
    overflow: hidden;
}

.specs-group {
    margin-bottom: 30px;
}

.specs-group-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    row-gap: 12px;
}

.spec-item {
    display: flex;
    align-items: flex-end;
    font-size: 13px;
    line-height: 1.4;
}

.spec-label {
    color: var(--color-gray);
    position: relative;
    padding-right: 5px;
    flex-shrink: 0;
}

.spec-dots {
    flex: 1;
    border-bottom: 1px dotted var(--color-border);
    margin: 0 5px;
    position: relative;
    top: -4px;
}

.spec-value {
    color: var(--color-dark);
    font-weight: 500;
    flex-shrink: 0;
    text-align: right;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    display: none; /* Hide old table format */
}

.specs-table tr:nth-child(even) {
    background: var(--color-bg);
}

.specs-table td {
    padding: 12px 20px;
    font-size: 14px;
    border-bottom: 1px solid var(--color-border);
}

.specs-table td:first-child {
    width: 50%;
    color: var(--color-gray);
}

/* End */
/* /local/templates/platinumstore/components/bitrix/catalog.element/platinum_element/style.css?17806684548672 */
