

/* Start:/local/templates/cvetoland/components/bitrix/catalog/main/style.css?17790081621114*/
/* Дополнительные правки каталога; основные стили — style-flower.css */

.catalog-page .catalog-empty {
  padding: 24px 0;
  text-align: center;
}

/* Панель сортировки */
.catalog-page .catalog-toolbar .show-select {
  text-align: right;
}

.catalog-page .catalog-toolbar .show-select > span {
  display: inline-block;
  vertical-align: middle;
  position: static;
  top: auto;
  padding-right: 10px;
}

/* Кастомный select: span — 1-й child, .select — 2-й → не сжимать до 70px */
.catalog-page .catalog-toolbar .show-select .select {
  width: 200px;
  min-width: 180px;
  max-width: 100%;
  height: 36px;
  margin-left: 0;
  vertical-align: middle;
  display: inline-block;
}

.catalog-page .catalog-toolbar .show-select .select-styled {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 28px;
  line-height: 20px;
}

.catalog-page .catalog-toolbar .show-select .select-options {
  min-width: 100%;
  width: auto;
}

.catalog-page .catalog-toolbar .show-side .sp2 {
  margin-left: 8px;
}

/* End */


/* Start:/local/templates/cvetoland/components/bitrix/catalog.element/main/style.css?17790372669793*/
/* Product detail page — modern UI */

.pdp {
    padding-bottom: 56px;
    background: #fff;
}

.pdp .menu-breadcrumb {
    padding: 20px 0 12px;
    border: 0;
    background: transparent;
}

.pdp .menu-breadcrumb .breadcrumb {
    margin: 0;
    background: transparent;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
}

.pdp .menu-breadcrumb .breadcrumb > li + li::before {
    color: #bbb;
}

.pdp__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 56px;
    align-items: start;
    padding: 8px 0 40px;
}

.pdp__info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Gallery */
.pd-gallery {
    width: 100%;
}

.pd-gallery__main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #f7f7f7;
    aspect-ratio: 1;
}

.pd-gallery__slides-main {
    position: relative;
    width: 100%;
    height: 100%;
}

.pd-gallery__main-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.pd-gallery__main-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.pd-gallery__main-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pd-gallery__zoom {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #333;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, background 0.2s ease;
}

.pd-gallery__zoom:hover {
    transform: scale(1.05);
    background: #fff;
}

.pd-gallery__thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.pd-gallery__thumb {
    flex: 0 0 calc(25% - 9px);
    max-width: calc(25% - 9px);
    aspect-ratio: 1;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f5f5;
    cursor: pointer;
    transition: border-color 0.2s ease, opacity 0.2s ease;
}

.pd-gallery__thumb.is-active {
    border-color: #111;
}

.pd-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Summary */
.pdp-summary__title {
    margin: 0 0 16px;
    font-family: 'Playfair Display', 'Abril Fatface', serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 400;
    line-height: 1.2;
    color: #3d2b2b;
}

.pdp-summary__rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    margin-bottom: 20px;
}

.pdp-summary__stars {
    display: inline-flex;
    gap: 4px;
    color: #ddd;
    font-size: 16px;
}

.pdp-summary__stars .fa-star.is-filled {
    color: #5cb176;
}

.pdp-summary__rating-text {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #888;
}

.pdp-summary__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.pdp-summary__price-current {
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
}

.pdp-summary__price-old {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    color: #aaa;
    text-decoration: line-through;
}

.pdp-summary__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.pdp-summary__buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 36px;
    border-radius: 999px;
    background: #c41e3a;
    color: #fff !important;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.pdp-summary__buy:hover {
    background: #333;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.pdp-summary__buy--disabled {
    background: #ccc;
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
}

.pdp-summary__wishlist {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    background: #fff;
    color: #333;
    font-size: 20px;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.pdp-summary__wishlist:hover {
    border-color: #111;
    color: #111;
}

.pdp-summary__sku {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #999;
}

/* Tabs */
.pdp-tabs {
    margin-top: 32px;
    padding-top: 8px;
    border-top: 1px solid #eee;
}

.pdp-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 0;
}

.pdp-tabs__btn {
    position: relative;
    margin: 0;
    padding: 14px 20px 12px;
    border: none;
    background: transparent;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888;
    cursor: pointer;
    transition: color 0.2s ease;
}

.pdp-tabs__btn::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: transparent;
    transition: background 0.2s ease;
}

.pdp-tabs__btn.is-active {
    color: #111;
}

.pdp-tabs__btn.is-active::after {
    background: #111;
}

.pdp-tabs__btn:hover {
    color: #3d2b2b;
}

.pdp-tabs__panel {
    display: none;
    padding: 24px 0 8px;
}

.pdp-tabs__panel.is-active {
    display: block;
}

.pdp-tabs__content {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #444;
}

.pdp-tabs__content p {
    margin: 0 0 12px;
}

.pdp-tabs__content ul {
    margin: 0 0 12px;
    padding-left: 20px;
}

.pdp-tabs__content li {
    margin-bottom: 6px;
}

.pdp-tabs__empty {
    margin: 0;
    color: #999;
    font-size: 15px;
}

.pdp-composition {
    margin-top: 24px;
    padding: 20px;
    background: #fafafa;
    border-radius: 12px;
}

.pdp-composition__title {
    margin: 0 0 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
}

.pdp-composition__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pdp-composition__list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.pdp-composition__list li:last-child {
    border-bottom: none;
}

.pdp-specs {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.pdp-specs li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #666;
}

.pdp-specs strong {
    color: #222;
    font-weight: 600;
}

/* Share */
.pdp .product-detail-share {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.pdp .product-detail-share__label {
    display: block;
    margin-bottom: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pdp .product-detail-share__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pdp .product-detail-share__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 0;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    background: #fff;
    color: #262626;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.15s ease, border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.pdp .product-detail-share__btn:hover {
    transform: scale(1.06);
    text-decoration: none;
}

.pdp .product-detail-share__svg {
    width: 20px;
    height: 20px;
}

.pdp .product-detail-share__svg--max {
    width: 22px;
    height: 22px;
}

.pdp .product-detail-share__btn--max:hover {
    background: #5c6bc0;
    border-color: #5c6bc0;
    color: #fff;
}

.pdp .product-detail-share__btn--vk:hover {
    background: #2787f5;
    border-color: #2787f5;
    color: #fff;
}

.pdp .product-detail-share__btn--telegram:hover {
    background: #229ed9;
    border-color: #229ed9;
    color: #fff;
}

.pdp .product-detail-share__btn--whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

/* Related */
.pdp .related {
    margin-top: 56px;
    padding: 48px 0 0;
    border-top: 1px solid #eee;
}

.pdp .related--also__title,
.pdp .related h2.related--also__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #3d2b2b;
    text-align: center;
    margin: 0 0 32px;
}

@media (max-width: 991px) {
    .pdp__hero {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pd-gallery__thumb {
        flex: 0 0 calc(20% - 10px);
        max-width: calc(20% - 10px);
    }
}

@media (max-width: 575px) {
    .pdp-summary__buy {
        flex: 1;
        min-width: 0;
        padding: 0 24px;
    }

    .pdp-tabs__btn {
        padding: 12px 14px 10px;
        font-size: 11px;
    }

    .pd-gallery__thumb {
        flex: 0 0 calc(25% - 9px);
        max-width: calc(25% - 9px);
    }
}

/* End */


/* Start:/local/templates/cvetoland/components/bitrix/catalog.section/section_slider/style.css?1779015427815*/
.related--also {
    margin-top: 56px;
    padding: 56px 0 64px;
    background: #fafafa;
    border-top: 1px solid #efefef;
}

.product-detail--ig .related--also {
    margin-top: 56px;
}

.related--also__title {
    margin: 0 0 40px;
    padding-top: 8px;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #262626;
    text-align: center;
}

.related--also__grid {
    margin-left: -8px;
    margin-right: -8px;
}

.related--also__grid .product-flower {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 24px;
}

@media (max-width: 767px) {
    .related--also {
        padding: 32px 0 40px;
    }

    .related--also__title {
        font-size: 24px;
        margin-bottom: 24px;
    }
}

/* End */
/* /local/templates/cvetoland/components/bitrix/catalog/main/style.css?17790081621114 */
/* /local/templates/cvetoland/components/bitrix/catalog.element/main/style.css?17790372669793 */
/* /local/templates/cvetoland/components/bitrix/catalog.section/section_slider/style.css?1779015427815 */
