.koszyk-recommended-section {
    background: linear-gradient(120deg, #f3f8ff 0%, #fff7fa 100%);
    padding: 44px 0 32px 0;
    margin-top: 0;
}
.koszyk-recommended-bg {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 2px 16px 0 rgba(194,24,91,0.07);
    padding: 36px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.koszyk-recommended-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #c2185b;
    margin-bottom: 28px;
    text-align: center;
}
.koszyk-recommended-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    justify-items: center;
}
.koszyk-recommended-card {
    background: #f9f6fb;
    border-radius: 12px;
    box-shadow: 0 2px 12px 0 rgba(194,24,91,0.07);
    padding: 18px 12px 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.koszyk-recommended-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px 0 rgba(194,24,91,0.10);
    background: #fff;
}
.koszyk-recommended-name {
    font-size: 1.08em;
    font-weight: 700;
    color: #1976d2;
    text-align: center;
}
.koszyk-recommended-price {
    font-size: 1em;
    color: #333;
    font-weight: 600;
}
.koszyk-recommended-btn {
    background: #c2185b;
    color: #fff;
    font-weight: 600;
    font-size: 1.08em;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 8px 0 rgba(194,24,91,0.10);
    margin-top: 8px;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
    border: none;
}
.koszyk-recommended-btn:hover, .koszyk-recommended-btn:focus {
    background: #ad1457;
    box-shadow: 0 4px 16px 0 rgba(194,24,91,0.18);
    transform: scale(1.08);
}
@media (max-width: 700px) {
    .koszyk-recommended-bg {
        padding: 18px 4vw 12px 4vw;
    }
    .koszyk-recommended-list {
        gap: 16px;
    }
    .koszyk-recommended-card {
        padding: 12px 4px 12px 4px;
    }
    .koszyk-recommended-img {
        width: 64px;
        height: 64px;
    }
}
.koszyk-finalcta-section {
    background: linear-gradient(120deg, #ffe4ef 0%, #e8f5e9 100%);
    padding: 54px 0 48px 0;
    margin-top: 0;
}
.koszyk-finalcta-bg {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 18px;
    background: linear-gradient(120deg, #c2185b 0%, #388e3c 100%);
    box-shadow: 0 2px 16px 0 rgba(194,24,91,0.10);
    padding: 48px 28px 38px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.koszyk-finalcta-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 32px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(56,142,60,0.10);
}
.koszyk-finalcta-btn {
    display: inline-block;
    background: #388e3c;
    color: #fff;
    font-weight: 700;
    font-size: 1.18rem;
    padding: 22px 54px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 2px 8px 0 rgba(56,142,60,0.10);
    margin-top: 0;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}
.koszyk-finalcta-btn:hover, .koszyk-finalcta-btn:focus {
    background: #2e7d32;
    box-shadow: 0 6px 24px 0 rgba(56,142,60,0.18);
    transform: scale(1.06);
}
@media (max-width: 700px) {
    .koszyk-finalcta-bg {
        padding: 28px 8vw 18px 8vw;
    }
    .koszyk-finalcta-title {
        font-size: 1.2rem;
    }
    .koszyk-finalcta-btn {
        font-size: 1rem;
        padding: 14px 22px;
    }
}
.koszyk-trust-section {
    background: linear-gradient(120deg, #e3f2fd 0%, #fff7fa 100%);
    padding: 44px 0 32px 0;
    margin-top: 0;
}
.koszyk-trust-bg {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 2px 16px 0 rgba(25,118,210,0.07);
    padding: 36px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.koszyk-trust-row {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: center;
}
.koszyk-trust-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.koszyk-trust-icon {
    font-size: 2.2em;
    margin-bottom: 4px;
}
.koszyk-trust-label {
    font-size: 1.08em;
    font-weight: 700;
    color: #1976d2;
    text-align: center;
}
@media (max-width: 700px) {
    .koszyk-trust-bg {
        padding: 18px 4vw 12px 4vw;
    }
    .koszyk-trust-row {
        gap: 18px;
    }
    .koszyk-trust-icon {
        font-size: 1.3em;
    }
    .koszyk-trust-label {
        font-size: 0.98em;
    }
}
.koszyk-payment-section {
    background: linear-gradient(120deg, #fff7fa 0%, #f3f8ff 100%);
    padding: 44px 0 32px 0;
    margin-top: 0;
}
.koszyk-payment-bg {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 2px 16px 0 rgba(194,24,91,0.07);
    padding: 36px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.koszyk-payment-label {
    font-size: 1.08em;
    font-weight: 700;
    color: #388e3c;
    margin-bottom: 12px;
    text-align: center;
}
.koszyk-payment-row {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.koszyk-payment-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f8ff;
    border-radius: 10px;
    box-shadow: 0 2px 8px 0 rgba(25,118,210,0.07);
    padding: 8px 18px;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
    cursor: default;
}
.koszyk-payment-logo img {
    height: 32px;
    width: auto;
    display: block;
}
.koszyk-payment-logo:hover, .koszyk-payment-logo:focus {
    box-shadow: 0 4px 16px 0 rgba(194,24,91,0.18);
    background: #ffe4ef;
    transform: scale(1.08);
}
@media (max-width: 700px) {
    .koszyk-payment-bg {
        padding: 18px 4vw 12px 4vw;
    }
    .koszyk-payment-row {
        gap: 16px;
    }
    .koszyk-payment-logo {
        padding: 6px 8px;
    }
    .koszyk-payment-logo img {
        height: 24px;
    }
}
.koszyk-delivery-section {
    background: linear-gradient(120deg, #f3f8ff 0%, #fff7fa 100%);
    padding: 44px 0 32px 0;
    margin-top: 0;
}
.koszyk-delivery-bg {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 2px 16px 0 rgba(194,24,91,0.07);
    padding: 36px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}
.koszyk-delivery-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #c2185b;
    margin-bottom: 18px;
}
.koszyk-delivery-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.koszyk-delivery-option {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.08em;
    font-weight: 500;
    color: #333;
    background: #f9f6fb;
    border-radius: 10px;
    padding: 14px 18px;
    box-shadow: 0 2px 8px 0 rgba(194,24,91,0.07);
    cursor: pointer;
    transition: box-shadow 0.2s, background 0.2s;
}
.koszyk-delivery-option:hover, .koszyk-delivery-option:focus-within {
    box-shadow: 0 4px 18px 0 rgba(194,24,91,0.13);
    background: #ffe4ef;
}
.koszyk-delivery-option input[type="radio"] {
    accent-color: #c2185b;
    width: 22px;
    height: 22px;
    margin-right: 2px;
}
.koszyk-delivery-icon {
    font-size: 1.5em;
    vertical-align: middle;
}
.koszyk-delivery-price {
    font-weight: 700;
    color: #1976d2;
    margin-left: 4px;
}
@media (max-width: 700px) {
    .koszyk-delivery-bg {
        padding: 18px 4vw 12px 4vw;
    }
    .koszyk-delivery-title {
        font-size: 1.08rem;
    }
    .koszyk-delivery-option {
        font-size: 0.98em;
        padding: 10px 8px;
    }
    .koszyk-delivery-icon {
        font-size: 1.1em;
    }
}
.koszyk-summary-section {
    position: sticky;
    bottom: 0;
    z-index: 10;
    background: linear-gradient(120deg, #ffe4ef 0%, #fff7fa 100%);
    padding: 0 0 0 0;
    margin-top: 0;
}
.koszyk-summary-bg {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 18px 18px 0 0;
    background: #ffe4ef;
    box-shadow: 0 -2px 16px 0 rgba(194,24,91,0.07);
    padding: 32px 28px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}
.koszyk-summary-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15em;
    color: #333;
    font-weight: 500;
}
.koszyk-summary-row.total {
    font-size: 1.35em;
    font-weight: 700;
    color: #c2185b;
    margin-top: 8px;
}
.koszyk-summary-value.total {
    font-size: 1.5em;
    font-weight: 700;
    color: #388e3c;
}
.koszyk-summary-btn {
    display: inline-block;
    background: #c2185b;
    color: #fff;
    font-weight: 700;
    font-size: 1.18em;
    padding: 18px 38px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 2px 8px 0 rgba(194,24,91,0.10);
    margin-top: 18px;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}
.koszyk-summary-btn:hover, .koszyk-summary-btn:focus {
    background: #ad1457;
    box-shadow: 0 4px 16px 0 rgba(194,24,91,0.18);
    transform: scale(1.08);
}
@media (max-width: 700px) {
    .koszyk-summary-bg {
        padding: 18px 4vw 12px 4vw;
    }
    .koszyk-summary-row {
        font-size: 1em;
    }
    .koszyk-summary-row.total {
        font-size: 1.1em;
    }
    .koszyk-summary-value.total {
        font-size: 1.2em;
    }
    .koszyk-summary-btn {
        font-size: 1em;
        padding: 12px 18px;
    }
}
.koszyk-products-section {
    background: linear-gradient(120deg, #f3f8ff 0%, #fff7fa 100%);
    padding: 44px 0 32px 0;
    margin-top: 0;
}
.koszyk-products-bg {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 2px 16px 0 rgba(194,24,91,0.07);
    padding: 36px 28px 28px 28px;
}
.koszyk-products-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #c2185b;
    margin-bottom: 28px;
    text-align: center;
}
.koszyk-products-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.koszyk-product-card {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 24px 0;
    position: relative;
    background: #f9f6fb;
    border-radius: 12px;
    box-shadow: 0 2px 12px 0 rgba(194,24,91,0.07);
}
.koszyk-product-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px 0 rgba(194,24,91,0.10);
    background: #fff;
}
.koszyk-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.koszyk-product-name {
    font-size: 1.15em;
    font-weight: 700;
    color: #c2185b;
}
.koszyk-product-price {
    font-size: 1em;
    color: #333;
}
.koszyk-product-price span {
    font-weight: 600;
    color: #1976d2;
}
.koszyk-product-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}
.koszyk-qty-btn {
    background: #e3f2fd;
    color: #1976d2;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.koszyk-qty-btn:hover, .koszyk-qty-btn:focus {
    background: #c2185b;
    color: #fff;
}
.koszyk-qty-input {
    width: 48px;
    text-align: center;
    font-size: 1.1em;
    border: 1px solid #e3e3e3;
    border-radius: 7px;
    padding: 6px 0;
    background: #fff;
    color: #333;
}
.koszyk-product-sum {
    font-size: 1em;
    color: #333;
}
.koszyk-product-sum span {
    font-weight: 700;
    color: #388e3c;
}
.koszyk-product-remove {
    background: none;
    border: none;
    font-size: 1.5em;
    color: #c2185b;
    cursor: pointer;
    margin-left: 18px;
    transition: color 0.2s, transform 0.2s;
}
.koszyk-product-remove:hover, .koszyk-product-remove:focus {
    color: #ad1457;
    transform: scale(1.2);
}
.koszyk-product-divider {
    border: none;
    border-top: 2px dashed #e3e3e3;
    margin: 0 0 0 0;
}
@media (max-width: 700px) {
    .koszyk-products-bg {
        padding: 18px 4vw 12px 4vw;
    }
    .koszyk-product-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 0;
    }
    .koszyk-product-img {
        width: 64px;
        height: 64px;
    }
    .koszyk-product-remove {
        margin-left: 0;
        align-self: flex-end;
    }
}
.koszyk-header-section {
    width: 100%;
    min-height: 220px;
    background: linear-gradient(120deg, #fff7fa 0%, #f3f8ff 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
}
.koszyk-header-bg {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}
.koszyk-header-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 24px 36px 24px;
}
.koszyk-header-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #c2185b;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}
.koszyk-header-subtitle {
    font-size: 1.18rem;
    color: #333;
    font-weight: 400;
    margin-bottom: 0;
}
.koszyk-header-icon {
    position: absolute;
    z-index: 1;
    opacity: 0.13;
    width: 200px;
    height: auto;
    pointer-events: none;
}
.koszyk-header-icon-topleft {
    top: 18px;
    left: 18px;
}
.koszyk-header-icon-bottomright {
    bottom: 18px;
    right: 18px;
}
@media (max-width: 700px) {
    .koszyk-header-content {
        padding: 32px 8vw 18px 8vw;
    }
    .koszyk-header-title {
        font-size: 1.3rem;
    }
    .koszyk-header-subtitle {
        font-size: 1rem;
    }
    .koszyk-header-icon {
        width: 48px;
    }
}
.kontakt-finalcta-section {
    background: linear-gradient(120deg, #ffe4ef 0%, #fff7fa 100%);
    padding: 54px 0 48px 0;
    margin-top: 0;
}
.kontakt-finalcta-bg {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 18px;
    background: #ffe4ef;
    box-shadow: 0 2px 16px 0 rgba(194,24,91,0.07);
    padding: 48px 28px 38px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.kontakt-finalcta-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}
.kontakt-finalcta-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #c2185b;
    margin-bottom: 0;
    text-align: center;
}
.kontakt-finalcta-btnrow {
    display: flex;
    gap: 32px;
    margin-top: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.kontakt-finalcta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #c2185b;
    color: #fff;
    font-weight: 600;
    font-size: 1.18rem;
    padding: 18px 38px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 2px 8px 0 rgba(194,24,91,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    margin-bottom: 0;
    cursor: pointer;
}
.kontakt-finalcta-btn:hover, .kontakt-finalcta-btn:focus {
    background: #ad1457;
    box-shadow: 0 4px 16px 0 rgba(194,24,91,0.18);
    transform: scale(1.08);
}
.kontakt-finalcta-icon {
    font-size: 1.4em;
    vertical-align: middle;
}
.kontakt-finalcta-btn.call {
    background: #c2185b;
}
.kontakt-finalcta-btn.msg {
    background: #388e3c;
}
.kontakt-finalcta-btn.msg:hover, .kontakt-finalcta-btn.msg:focus {
    background: #2e7d32;
}
@media (max-width: 700px) {
    .kontakt-finalcta-bg {
        padding: 28px 8vw 18px 8vw;
    }
    .kontakt-finalcta-title {
        font-size: 1.2rem;
    }
    .kontakt-finalcta-btnrow {
        gap: 16px;
    }
    .kontakt-finalcta-btn {
        font-size: 1rem;
        padding: 12px 18px;
    }
}
.kontakt-minifaq-section {
    background: linear-gradient(120deg, #e3f2fd 0%, #fff7fa 100%);
    padding: 44px 0 32px 0;
    margin-top: 0;
}
.kontakt-minifaq-bg {
    max-width: 520px;
    margin: 0 auto;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 2px 16px 0 rgba(25,118,210,0.07);
    padding: 36px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.kontakt-minifaq-title {
    font-size: 1.18em;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 12px;
    text-align: center;
}
.kontakt-minifaq-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.kontakt-minifaq-item {
    border-radius: 12px;
    background: #f9f6fb;
    box-shadow: 0 2px 12px 0 rgba(25,118,210,0.07);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.kontakt-minifaq-item:focus-within,
.kontakt-minifaq-item:hover {
    box-shadow: 0 4px 18px 0 rgba(25,118,210,0.13);
}
.kontakt-minifaq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1976d2;
    padding: 16px 22px;
    cursor: pointer;
    transition: background 0.2s;
}
.kontakt-minifaq-question:after {
    content: '\25BC';
    float: right;
    font-size: 1rem;
    color: #1976d2;
    margin-left: 12px;
    transition: transform 0.2s;
}
.kontakt-minifaq-item.active .kontakt-minifaq-question:after {
    transform: rotate(-180deg);
}
.kontakt-minifaq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    color: #333;
    font-size: 1rem;
    padding: 0 22px;
    transition: max-height 0.3s cubic-bezier(.4,0,.2,1), padding 0.2s;
}
.kontakt-minifaq-item.active .kontakt-minifaq-answer {
    max-height: 120px;
    padding: 12px 22px 16px 22px;
}
@media (max-width: 600px) {
    .kontakt-minifaq-bg {
        padding: 18px 4vw 12px 4vw;
    }
    .kontakt-minifaq-title {
        font-size: 1em;
    }
    .kontakt-minifaq-question {
        font-size: 0.98rem;
        padding: 12px 12px;
    }
    .kontakt-minifaq-answer {
        font-size: 0.98rem;
        padding: 0 12px;
    }
}
.kontakt-social-section {
    background: linear-gradient(120deg, #fff7fa 0%, #e3f2fd 100%);
    padding: 44px 0 32px 0;
    margin-top: 0;
}
.kontakt-social-bg {
    max-width: 520px;
    margin: 0 auto;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 2px 16px 0 rgba(25,118,210,0.07);
    padding: 36px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.kontakt-social-label {
    font-size: 1.18em;
    font-weight: 700;
    color: #c2185b;
    margin-bottom: 12px;
    text-align: center;
}
.kontakt-social-row {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: center;
}
.kontakt-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f3f8ff;
    color: #1976d2;
    font-size: 2em;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px 0 rgba(25,118,210,0.07);
    cursor: pointer;
    text-decoration: none;
}
.kontakt-social-icon.facebook { color: #1976d2; }
.kontakt-social-icon.instagram { color: #c2185b; }
.kontakt-social-icon.tiktok { color: #222; }
.kontakt-social-icon.whatsapp { color: #388e3c; }
.kontakt-social-icon:hover, .kontakt-social-icon:focus {
    transform: scale(1.18) rotate(-8deg);
    box-shadow: 0 4px 16px 0 rgba(194,24,91,0.18);
    background: #ffe4ef;
}
.kontakt-social-icon.facebook:hover { color: #1565c0; }
.kontakt-social-icon.instagram:hover { color: #ad1457; }
.kontakt-social-icon.tiktok:hover { color: #444; }
.kontakt-social-icon.whatsapp:hover { color: #2e7d32; }
@media (max-width: 600px) {
    .kontakt-social-bg {
        padding: 24px 8vw 18px 8vw;
    }
    .kontakt-social-row {
        gap: 18px;
    }
    .kontakt-social-icon {
        width: 34px;
        height: 34px;
        font-size: 1.3em;
    }
}
.kontakt-hours-section {
    background: linear-gradient(120deg, #fff7fa 0%, #e3f2fd 100%);
    padding: 44px 0 32px 0;
    margin-top: 0;
}
.kontakt-hours-bg {
    max-width: 420px;
    margin: 0 auto;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 2px 16px 0 rgba(25,118,210,0.07);
    padding: 36px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.kontakt-hours-title {
    font-size: 1.3em;
    font-weight: 700;
    color: #1976d2;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.kontakt-hours-icon {
    font-size: 1.5em;
    vertical-align: middle;
}
.kontakt-hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.08em;
    color: #333;
    margin-top: 0;
}
.kontakt-hours-table td {
    padding: 10px 8px;
    border-bottom: 1px solid #e3e3e3;
    font-weight: 500;
}
.kontakt-hours-table tr:last-child td {
    border-bottom: none;
}
.kontakt-hours-table td:first-child {
    color: #1976d2;
    font-weight: 700;
    width: 40%;
}
.kontakt-hours-table td:last-child {
    text-align: right;
    font-size: 1.08em;
}
@media (max-width: 600px) {
    .kontakt-hours-bg {
        padding: 24px 8vw 18px 8vw;
    }
    .kontakt-hours-title {
        font-size: 1.05em;
    }
    .kontakt-hours-table td {
        padding: 8px 4px;
        font-size: 0.98em;
    }
}
.kontakt-map-section {
    background: linear-gradient(120deg, #e8f5e9 0%, #fff7fa 100%);
    padding: 44px 0 36px 0;
    margin-top: 0;
}
.kontakt-map-bg {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 2px 16px 0 rgba(56,142,60,0.07);
    padding: 36px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.kontakt-map-btn {
    background: #388e3c;
    color: #fff;
    font-weight: 600;
    font-size: 1.08rem;
    padding: 12px 32px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 8px 0 rgba(56,142,60,0.10);
    margin-bottom: 12px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}
.kontakt-map-btn:hover, .kontakt-map-btn:focus {
    background: #2e7d32;
    box-shadow: 0 4px 16px 0 rgba(56,142,60,0.18);
}
.kontakt-map-embed {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px 0 rgba(56,142,60,0.09);
}
.kontakt-map-embed iframe {
    display: block;
    width: 100%;
    height: 340px;
    border: none;
}
@media (max-width: 900px) {
    .kontakt-map-bg {
        padding: 24px 8vw 18px 8vw;
    }
    .kontakt-map-embed iframe {
        height: 220px;
    }
}
.kontakt-details-section {
    background: linear-gradient(120deg, #e3f2fd 0%, #fff7fa 100%);
    padding: 44px 0 32px 0;
    margin-top: 0;
}
.kontakt-details-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
    justify-items: center;
}
.kontakt-details-col {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 rgba(25,118,210,0.07);
    padding: 36px 18px 28px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    min-width: 0;
}
.kontakt-details-icon {
    font-size: 2.8em;
    color: #1976d2;
    margin-bottom: 8px;
}
.kontakt-details-label {
    font-size: 1.25em;
    font-weight: 700;
    color: #333;
    text-align: center;
    line-height: 1.5;
    word-break: break-word;
}
.kontakt-details-label a {
    color: #c2185b;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
}
.kontakt-details-label a:hover {
    text-decoration: underline;
}
@media (max-width: 900px) {
    .kontakt-details-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .kontakt-details-col {
        padding: 24px 8vw 18px 8vw;
    }
    .kontakt-details-icon {
        font-size: 2em;
    }
    .kontakt-details-label {
        font-size: 1.08em;
    }
}
.kontakt-form-section {
    background: linear-gradient(120deg, #fff7fa 0%, #e8f5e9 100%);
    padding: 48px 0 36px 0;
    margin-top: 0;
}
.kontakt-form-layout {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
}
.kontakt-form-wrap {
    flex: 1 1 380px;
    min-width: 320px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 rgba(56,142,60,0.07);
    padding: 36px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.kontakt-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.kontakt-form label {
    font-weight: 600;
    color: #388e3c;
    font-size: 1rem;
}
.kontakt-form input,
.kontakt-form textarea {
    border: 1px solid #c8e6c9;
    border-radius: 7px;
    padding: 12px 14px;
    font-size: 1rem;
    color: #333;
    background: #f9f6fb;
    transition: border-color 0.2s;
}
.kontakt-form input:focus,
.kontakt-form textarea:focus {
    border-color: #388e3c;
    outline: none;
}
.kontakt-form-btn {
    background: #c2185b;
    color: #fff;
    font-weight: 600;
    font-size: 1.08rem;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 8px 0 rgba(194,24,91,0.10);
    margin-top: 8px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}
.kontakt-form-btn:hover, .kontakt-form-btn:focus {
    background: #ad1457;
    box-shadow: 0 4px 16px 0 rgba(194,24,91,0.18);
}
.kontakt-form-imgwrap {
    flex: 0 1 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 0 12px;
}
.kontakt-form-img {
    max-width: 160px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(56,142,60,0.13);
    background: #fff;
}
@media (max-width: 900px) {
    .kontakt-form-layout {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }
    .kontakt-form-imgwrap {
        justify-content: flex-start;
        padding: 0;
    }
    .kontakt-form-img {
        max-width: 120px;
    }
}
.kontakt-hero-section {
    width: 100%;
    min-height: 320px;
    background: linear-gradient(120deg, #e8f5e9 0%, #f3f8ff 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.kontakt-hero-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.kontakt-hero-bg:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../images/fresh-rose-bouquet-2483.webp') center/cover no-repeat;
    opacity: 0.18;
    z-index: 1;
}
.kontakt-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 24px 36px 24px;
}
.kontakt-hero-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #388e3c;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}
.kontakt-hero-subtitle {
    font-size: 1.18rem;
    color: #333;
    font-weight: 400;
    margin-bottom: 0;
}
@media (max-width: 700px) {
    .kontakt-hero-content {
        padding: 32px 8vw 18px 8vw;
    }
    .kontakt-hero-title {
        font-size: 1.3rem;
    }
    .kontakt-hero-subtitle {
        font-size: 1rem;
    }
}
.faq-cta-section {
    background: linear-gradient(120deg, #fff7fa 0%, #e3f2fd 100%);
    padding: 48px 0 36px 0;
    margin-top: 40px;
}
.faq-cta-bg {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 2px 16px 0 rgba(25,118,210,0.07);
    padding: 36px 28px 28px 28px;
}
.faq-cta-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
}
.faq-cta-imgwrap {
    flex: 0 1 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 0 12px;
}
.faq-cta-img {
    max-width: 180px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(25,118,210,0.13);
    background: #fff;
}
.faq-cta-content {
    flex: 1 1 340px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}
.faq-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 0;
}
.faq-cta-text {
    font-size: 1.08rem;
    color: #333;
    margin-bottom: 0;
}
.faq-cta-btn {
    display: inline-block;
    background: #c2185b;
    color: #fff;
    font-weight: 600;
    font-size: 1.08rem;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 8px 0 rgba(194,24,91,0.10);
    margin-top: 8px;
    transition: background 0.2s, box-shadow 0.2s;
}
.faq-cta-btn:hover, .faq-cta-btn:focus {
    background: #ad1457;
    box-shadow: 0 4px 16px 0 rgba(194,24,91,0.18);
}
@media (max-width: 700px) {
    .faq-cta-bg {
        padding: 24px 8vw 18px 8vw;
    }
    .faq-cta-layout {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }
    .faq-cta-img {
        max-width: 120px;
    }
    .faq-cta-title {
        font-size: 1.1rem;
    }
    .faq-cta-btn {
        font-size: 1rem;
        padding: 10px 22px;
    }
}
.faq-stepbystep-section {
    background: linear-gradient(120deg, #f3f8ff 0%, #fff7fa 100%);
    padding: 44px 0 32px 0;
    margin-top: 36px;
}
.faq-stepbystep-bg {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 2px 16px 0 rgba(194,24,91,0.07);
    padding: 36px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.faq-stepbystep-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #c2185b;
    margin-bottom: 28px;
    text-align: center;
}
.faq-stepbystep-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.faq-stepbystep-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #f9f6fb;
    border-radius: 10px;
    box-shadow: 0 1px 8px 0 rgba(194,24,91,0.07);
    padding: 16px 20px;
    font-size: 1rem;
    color: #333;
    position: relative;
}
.faq-stepbystep-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #c2185b;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px 0 rgba(194,24,91,0.10);
    margin-right: 2px;
    flex-shrink: 0;
}
.faq-stepbystep-text {
    flex: 1;
    line-height: 1.6;
}
@media (max-width: 700px) {
    .faq-stepbystep-bg {
        padding: 24px 8vw 18px 8vw;
    }
    .faq-stepbystep-title {
        font-size: 1.1rem;
    }
    .faq-stepbystep-item {
        font-size: 0.98rem;
        padding: 12px 12px;
    }
    .faq-stepbystep-num {
        width: 26px;
        height: 26px;
        font-size: 1rem;
    }
}
.faq-specialorders-section {
    background: linear-gradient(120deg, #f3f8ff 0%, #e3f2fd 100%);
    padding: 48px 0 32px 0;
    margin-top: 36px;
}
.faq-specialorders-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}
.faq-specialorders-content {
    flex: 1 1 340px;
    min-width: 320px;
}
.faq-specialorders-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}
.faq-specialorders-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.faq-specialorders-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px 0 rgba(25,118,210,0.07);
    padding: 18px 24px;
    transition: box-shadow 0.2s;
}
.faq-specialorders-item:hover {
    box-shadow: 0 4px 18px 0 rgba(25,118,210,0.13);
}
.faq-specialorders-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1976d2;
    margin-bottom: 8px;
}
.faq-specialorders-answer {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}
.faq-specialorders-imgwrap {
    flex: 0 1 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 0 12px;
}
.faq-specialorders-img {
    max-width: 260px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(25,118,210,0.13);
    background: #fff;
}
@media (max-width: 900px) {
    .faq-specialorders-layout {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }
    .faq-specialorders-imgwrap {
        justify-content: flex-start;
        padding: 0;
    }
    .faq-specialorders-img {
        max-width: 180px;
    }
}
@media (max-width: 600px) {
    .faq-specialorders-section {
        padding: 32px 0 18px 0;
    }
    .faq-specialorders-title {
        font-size: 1.3rem;
    }
    .faq-specialorders-img {
        max-width: 120px;
    }
}
.faq-deliverypay-section {
    margin: 3em auto 2em auto;
    max-width: 1100px;
    background: #fff;
    border-radius: 1.5em;
    box-shadow: 0 2px 16px rgba(233,30,99,0.07);
    padding: 2em 1em;
}
.faq-deliverypay-title {
    text-align: center;
    font-size: 2em;
    font-weight: 700;
    color: #e53935;
    margin-bottom: 1.2em;
}
.faq-deliverypay-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
    max-width: 1000px;
    margin: 0 auto;
}
.faq-deliverypay-col {
    background: #fffafc;
    border-radius: 1em;
    box-shadow: 0 1px 8px rgba(233,30,99,0.05);
    padding: 2em 1em 1.5em 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 260px;
}
.faq-deliverypay-icon {
    font-size: 3em;
    margin-bottom: 0.5em;
    color: #e53935;
    text-shadow: 0 2px 12px rgba(220,0,0,0.10);
}
.faq-deliverypay-heading {
    font-size: 1.2em;
    font-weight: 700;
    color: #e53935;
    margin-bottom: 0.7em;
    text-align: center;
}
.faq-deliverypay-faq {
    margin-bottom: 0.7em;
    text-align: center;
}
.faq-deliverypay-faq strong {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.2em;
}
.faq-deliverypay-faq p {
    color: #444;
    font-size: 1em;
    margin: 0;
}
@media (max-width: 900px) {
    .faq-deliverypay-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }
    .faq-deliverypay-col {
        min-height: 0;
        padding: 1.2em 0.7em 1em 0.7em;
    }
}
.faq-accordion-section {
    margin: 3em auto 2em auto;
    max-width: 800px;
    background: #fff;
    border-radius: 1.5em;
    box-shadow: 0 2px 16px rgba(233,30,99,0.07);
    padding: 2em 1em;
}
.faq-accordion-title {
    text-align: center;
    font-size: 2em;
    font-weight: 700;
    color: #e53935;
    margin-bottom: 1.2em;
}
.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.faq-accordion-item {
    border-radius: 1em;
    background: #fffafc;
    box-shadow: 0 1px 8px rgba(233,30,99,0.05);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-accordion-item.open {
    box-shadow: 0 2px 16px rgba(233,30,99,0.10);
}
.faq-accordion-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.15em;
    font-weight: 600;
    color: #e53935;
    padding: 1em 1.2em;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #fce4ec;
}
.faq-accordion-question:hover, .faq-accordion-question:focus {
    background: #fce4ec;
}
.faq-accordion-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    padding: 0 1.2em;
    color: #333;
    font-size: 1em;
    transition: max-height 0.4s cubic-bezier(.4,0,.2,1), padding 0.3s;
}
.faq-accordion-item.open .faq-accordion-answer {
    padding: 1em 1.2em;
    max-height: 300px;
}
@media (max-width: 700px) {
    .faq-accordion-section {
        padding: 1em 0.3em;
    }
    .faq-accordion-title {
        font-size: 1.3em;
    }
    .faq-accordion-question {
        font-size: 1em;
        padding: 0.7em 0.7em;
    }
    .faq-accordion-answer {
        font-size: 0.98em;
        padding: 0 0.7em;
    }
}
.faq-hero-section {
    position: relative;
    background: #fffafc;
    border-radius: 2em;
    margin: 2em auto 2em auto;
    max-width: 1100px;
    overflow: hidden;
    box-shadow: 0 2px 24px rgba(233,30,99,0.08);
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.faq-hero-bgimg {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    height: auto;
    opacity: 0.18;
    filter: blur(1px) saturate(1.2);
}
.faq-hero-bgimg-right {
    left: auto;
    right: 0;
    top: 30px;
    width: 260px;
    opacity: 0.15;
}
.faq-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    padding: 3em 1em 2em 1em;
}
.faq-hero-title {
    font-size: 2.5em;
    font-weight: 900;
    color: #e53935;
    margin-bottom: 0.5em;
    text-shadow: 0 2px 12px rgba(220,0,0,0.08);
}
.faq-hero-subtitle {
    font-size: 1.3em;
    font-weight: 500;
    color: #333;
    margin-bottom: 0;
    opacity: 0.85;
}
@media (max-width: 700px) {
    .faq-hero-section {
        min-height: 180px;
        border-radius: 1em;
    }
    .faq-hero-bgimg {
        width: 180px;
    }
    .faq-hero-bgimg-right {
        width: 120px;
        top: 10px;
    }
    .faq-hero-title {
        font-size: 1.5em;
    }
    .faq-hero-content {
        padding: 2em 0.5em 1.2em 0.5em;
    }
}
.promocje-sezon-desc {
    display: block;
    font-size: 0.98em;
    color: rgba(40,40,40,0.85);
    font-weight: 400;
    margin-top: 0.7em;
    text-align: center;
    text-shadow: none;
}
.promocje-sezonowe-section {
    margin: 3em auto 2em auto;
    max-width: 1100px;
}
.promocje-sezonowe-title {
    text-align: center;
    font-size: 2em;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 0;
}
.promocje-sezonowe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2em;
}
.promocje-sezon-card {
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(233,30,99,0.08);
    padding: 2em 1em 1.5em 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 180px;
    color: #fff;
    font-weight: 600;
    font-size: 1.2em;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: box-shadow 0.2s, transform 0.2s;
}
.promocje-sezon-card:hover {
    box-shadow: 0 6px 24px rgba(233,30,99,0.16);
    transform: scale(1.04);
}
.faq-returns-highlight {
    padding: 44px 0 32px 0;
    background: linear-gradient(120deg, #ffe4ef 0%, #fff7fa 100%);
    margin: 36px 0 0 0;
}
.faq-returns-bg {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 18px;
    background: #ffe4ef;
    box-shadow: 0 2px 16px 0 rgba(194,24,91,0.07);
    padding: 36px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.faq-returns-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #c2185b;
    margin-bottom: 22px;
    text-align: center;
}
.faq-returns-qwrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}
.faq-returns-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: #c2185b;
    margin-bottom: 0;
    text-align: center;
}
.faq-returns-answer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 8px 0 rgba(194,24,91,0.07);
    padding: 18px 20px;
    font-size: 1rem;
    color: #333;
    margin-top: 0;
    border-left: 4px solid #c2185b;
}
.faq-returns-icon {
    font-size: 1.5em;
    color: #c2185b;
    flex-shrink: 0;
    margin-top: 2px;
}
.faq-returns-text {
    display: block;
    line-height: 1.6;
}
@media (max-width: 700px) {
    .faq-returns-bg {
        padding: 24px 8vw 18px 8vw;
    }
    .faq-returns-title {
        font-size: 1.2rem;
    }
    .faq-returns-answer {
        font-size: 0.98rem;
        padding: 14px 12px;
    }
}
.faq-flowers-section {
    background: linear-gradient(120deg, #fff7fa 0%, #f3f8ff 100%);
    padding: 48px 0 32px 0;
    margin-top: 32px;
}
.faq-flowers-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}
.faq-flowers-accordion {
    flex: 1 1 340px;
    min-width: 320px;
}
.faq-flowers-title {
    font-size: 2rem;
    font-weight: 700;
    color: #c2185b;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}
.faq-flowers-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-flowers-item {
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 12px 0 rgba(194,24,91,0.07);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-flowers-item:focus-within,
.faq-flowers-item:hover {
    box-shadow: 0 4px 18px 0 rgba(194,24,91,0.13);
}
.faq-flowers-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #c2185b;
    padding: 18px 24px;
    cursor: pointer;
    transition: background 0.2s;
}
.faq-flowers-question:after {
    content: '\25BC';
    float: right;
    font-size: 1rem;
    color: #c2185b;
    margin-left: 12px;
    transition: transform 0.2s;
}
.faq-flowers-item.active .faq-flowers-question:after {
    transform: rotate(-180deg);
}
.faq-flowers-answer {
    max-height: 0;
    overflow: hidden;
    background: #f9f6fb;
    color: #333;
    font-size: 1rem;
    padding: 0 24px;
    transition: max-height 0.3s cubic-bezier(.4,0,.2,1), padding 0.2s;
}
.faq-flowers-item.active .faq-flowers-answer {
    max-height: 200px;
    padding: 16px 24px 20px 24px;
}
.faq-flowers-imgwrap {
    flex: 0 1 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 0 12px;
}
.faq-flowers-img {
    max-width: 260px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(194,24,91,0.13);
    background: #fff;
}
@media (max-width: 900px) {
    .faq-flowers-layout {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }
    .faq-flowers-imgwrap {
        justify-content: flex-start;
        padding: 0;
    }
    .faq-flowers-img {
        max-width: 180px;
    }
}
@media (max-width: 600px) {
    .faq-flowers-section {
        padding: 32px 0 18px 0;
    }
    .faq-flowers-title {
        font-size: 1.3rem;
    }
    .faq-flowers-img {
        max-width: 120px;
    }
}
.promocje-sezon-icon {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}
.promocje-sezon-name {
    font-size: 1.1em;
    margin-bottom: 0.7em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.promocje-sezon-rabat {
    font-size: 1.5em;
    font-weight: 700;
    background: rgba(255,255,255,0.18);
    border-radius: 12px;
    padding: 0.3em 1em;
    box-shadow: 0 2px 8px rgba(233,30,99,0.10);
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.promocje-sezon-card.wiosna {
    background: linear-gradient(120deg, #ffe0f7 0%, #b2ffb2 100%);
    color: #ad1457;
}
.promocje-sezon-card.lato {
    background: linear-gradient(120deg, #fffde4 0%, #ffe082 100%);
    color: #e65100;
}
.promocje-sezon-card.jesien {
    background: linear-gradient(120deg, #ffe0b2 0%, #ff7043 100%);
    color: #6d4c41;
}
.promocje-sezon-card.zima {
    background: linear-gradient(120deg, #e3f2fd 0%, #b3e5fc 100%);
    color: #1565c0;
}
@media (max-width: 700px) {
    .promocje-sezonowe-grid {
        grid-template-columns: 1fr;
        gap: 1.2em;
    }
    .promocje-sezon-card {
        min-height: 120px;
        padding: 1.2em 0.7em 1em 0.7em;
    }
}
.promocje-pakiety-section {
    margin: 3em auto 2em auto;
    max-width: 1100px;
}
.promocje-pakiety-title {
    text-align: center;
    font-size: 2em;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 1.5em;
}
.promocje-pakiety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2em;
}
.promocje-pakiet-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(233,30,99,0.08);
    padding: 2em 1.2em 1.5em 1.2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: box-shadow 0.2s;
}
.promocje-pakiet-card:hover {
    box-shadow: 0 6px 24px rgba(233,30,99,0.16);
}
.promocje-pakiet-label {
    position: absolute;
    top: 1.2em;
    left: 1.2em;
    background: #ad1457;
    color: #fff;
    font-size: 1em;
    font-weight: 700;
    padding: 0.3em 1em;
    border-radius: 2em;
    box-shadow: 0 2px 12px rgba(233,30,99,0.12);
    z-index: 2;
    letter-spacing: 1px;
}
.promocje-pakiet-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1em;
    box-shadow: 0 2px 8px rgba(233,30,99,0.10);
    transition: transform 0.25s cubic-bezier(.4,1.4,.4,1);
}
.promocje-pakiet-card:hover .promocje-pakiet-img {
    transform: scale(1.08);
}
.promocje-pakiet-name {
    font-size: 1.2em;
    font-weight: 600;
    color: #ad1457;
    margin-bottom: 0.7em;
}
.promocje-pakiet-desc {
    font-size: 1em;
    color: #555;
    margin-bottom: 0.7em;
    text-align: center;
}
.promocje-pakiet-old-price {
    font-size: 1em;
    color: #888;
    text-decoration: line-through;
    margin-bottom: 0.2em;
}
.promocje-pakiet-new-price {
    font-size: 1.3em;
    color: #e91e63;
    font-weight: 700;
    margin-bottom: 1em;
}
.promocje-pakiet-btn {
    background: #e91e63;
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    padding: 0.7em 2em;
    border-radius: 24px;
    border: none;
    box-shadow: 0 2px 8px rgba(233,30,99,0.10);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}
.promocje-pakiet-btn:hover, .promocje-pakiet-btn:focus {
    background: #ad1457;
    box-shadow: 0 4px 18px rgba(233,30,99,0.18);
}
@media (max-width: 700px) {
    .promocje-pakiety-grid {
        grid-template-columns: 1fr;
        gap: 1.2em;
    }
    .promocje-pakiet-img {
        height: 100px;
    }
}
.promocje-dnia-section {
        margin: 3em auto 2em auto;
        background: linear-gradient(90deg, #fff6f9 0%, #fce4ec 100%);
        border-radius: 24px;
        box-shadow: 0 2px 16px rgba(233,30,99,0.08);
        padding: 2.5em 1.5em;
        max-width: 900px;
}
.promocje-dnia-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5em;
    flex-wrap: wrap;
}
.promocje-dnia-img-col {
    flex: 0 0 320px;
    max-width: 320px;
    text-align: center;
}
.promocje-dnia-img {
    width: 100%;
    max-width: 320px;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(233,30,99,0.10);
}
.promocje-dnia-text-col {
    flex: 1 1 320px;
    text-align: left;
    min-width: 220px;
}
.promocje-dnia-title {
    font-size: 2em;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 0.7em;
}
.promocje-dnia-timer {
    font-size: 2.2em;
    font-weight: 700;
    color: #ad1457;
    background: #fff;
    border-radius: 12px;
    padding: 0.4em 1.2em;
    display: inline-block;
    margin-bottom: 0.7em;
    box-shadow: 0 2px 8px rgba(233,30,99,0.08);
    letter-spacing: 2px;
}
.promocje-dnia-label {
    display: block;
    font-size: 1.2em;
    color: #e91e63;
    font-weight: 600;
    margin-top: 0.5em;
}
@media (max-width: 900px) {
    .promocje-dnia-layout {
        flex-direction: column;
        gap: 1.2em;
    }
    .promocje-dnia-img-col, .promocje-dnia-text-col {
        max-width: 100%;
        min-width: 0;
        text-align: center;
    }
    .promocje-dnia-img {
        height: 160px;
    }
}
.promocje-lista-section {
    margin: 3em 0 2em 0;
}
    .promocje-bestsellery-section {
        margin: 3em 0;
        padding: 0 1em;
    }
        .promocje-galeria-section {
            margin: 3em 0;
            padding: 0 1em;
        }
        .promocje-finalcta-section {
            position: relative;
            margin: 3em auto 2em;
            max-width: 1100px;
            border-radius: 2em;
            overflow: hidden;
            box-shadow: 0 2px 24px rgba(220,0,0,0.10);
            background: #fff;
        }
        .promocje-finalcta-bg {
            position: relative;
            width: 100%;
            height: 320px;
            overflow: hidden;
        }
        .promocje-finalcta-img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            display: block;
            filter: brightness(0.85) saturate(1.1);
        }
        .promocje-finalcta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(220,0,0,0.12) 0%, rgba(255,255,255,0.0) 100%);
            z-index: 1;
        }
        .promocje-finalcta-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 2;
            padding: 2em 1em;
        }
        .promocje-finalcta-title {
            color: #e53935;
            font-size: 2.3em;
            font-weight: 900;
            text-align: center;
            margin-bottom: 1.2em;
            text-shadow: 0 2px 12px rgba(220,0,0,0.10);
        }
        .promocje-finalcta-btns {
            display: flex;
            gap: 1.5em;
            flex-wrap: wrap;
            justify-content: center;
        }
        .promocje-finalcta-btn {
            background: #e53935;
            color: #fff;
            border: none;
            border-radius: 1em;
            padding: 1em 2.2em;
            font-size: 1.2em;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 1px 8px rgba(220,0,0,0.10);
            transition: background 0.2s, transform 0.2s;
            text-decoration: none;
            display: inline-block;
        }
        .promocje-finalcta-btn-main {
            background: #e53935;
        }
        .promocje-finalcta-btn-cart {
            background: #ff9800;
        }
        .promocje-finalcta-btn:hover, .promocje-finalcta-btn:focus {
            background: #b71c1c;
            transform: scale(1.05);
        }
        .promocje-finalcta-btn-cart:hover, .promocje-finalcta-btn-cart:focus {
            background: #f57c00;
        }
        .promocje-galeria-title {
            text-align: center;
            font-size: 2em;
            font-weight: 700;
            margin-bottom: 1em;
            color: #e53935;
        }
        .promocje-galeria-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5em;
            max-width: 1100px;
            margin: 0 auto;
        }
        .promocje-galeria-item {
            position: relative;
            border-radius: 1em;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(220, 0, 0, 0.07);
            transition: box-shadow 0.2s;
        }
        .promocje-galeria-item:hover {
            box-shadow: 0 4px 24px rgba(220, 0, 0, 0.12);
            z-index: 2;
        }
        .promocje-galeria-img {
            width: 100%;
            display: block;
            object-fit: cover;
            aspect-ratio: 4/3;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .promocje-galeria-item:hover .promocje-galeria-img {
            transform: scale(1.04);
        }
        .promocje-galeria-label {
            position: absolute;
            top: 1em;
            left: 1em;
            background: #e53935;
            color: #fff;
            font-size: 1em;
            font-weight: 700;
            padding: 0.4em 1em;
            border-radius: 1em;
            box-shadow: 0 1px 6px rgba(220,0,0,0.10);
            letter-spacing: 0.05em;
            z-index: 1;
        }
        .promocje-galeria-label.discount {
            background: #d32f2f;
        }
        .promocje-galeria-label.hot {
            background: #ff9800;
        }
        .promocje-galeria-label.sale {
            background: #c2185b;
        }
        .promocje-lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0,0,0,0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }
        .promocje-lightbox-img {
            max-width: 90vw;
            max-height: 80vh;
            border-radius: 1em;
            box-shadow: 0 2px 24px rgba(220,0,0,0.18);
        }
        .promocje-lightbox-close {
            position: absolute;
            top: 2em;
            right: 3em;
            font-size: 2.5em;
            color: #fff;
            cursor: pointer;
            font-weight: 700;
            z-index: 10000;
            background: none;
            border: none;
        }
    .promocje-bestsellery-title {
        text-align: center;
        font-size: 2em;
        font-weight: 700;
        margin-bottom: 0;
        color: #e53935;
    }
    .promocje-bestsellery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2em;
        justify-items: center;
        max-width: 1100px;
        margin: 0 auto;
    }
    .promocje-bestseller-card {
        background: #fff;
        border-radius: 1em;
        box-shadow: 0 2px 12px rgba(220, 0, 0, 0.07);
        padding: 1.5em 1em 1em 1em;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        transition: box-shadow 0.2s;
    }
    .promocje-bestseller-card:hover {
        box-shadow: 0 4px 24px rgba(220, 0, 0, 0.12);
    }
    .promocje-bestseller-badge {
        position: absolute;
        top: 1em;
        left: 1em;
        background: #e53935;
        color: #fff;
        font-size: 0.9em;
        font-weight: 700;
        padding: 0.3em 0.8em;
        border-radius: 1em;
        letter-spacing: 0.05em;
        box-shadow: 0 1px 6px rgba(220,0,0,0.10);
    }
    .promocje-bestseller-img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 0.7em;
        margin-bottom: 1em;
        box-shadow: 0 1px 8px rgba(0,0,0,0.08);
    }
    .promocje-bestseller-name {
        font-size: 1.1em;
        font-weight: 600;
        margin-bottom: 0.5em;
        text-align: center;
    }
    .promocje-bestseller-old-price {
        text-decoration: line-through;
        color: #888;
        font-size: 1em;
        margin-bottom: 0.2em;
    }
    .promocje-bestseller-new-price {
        color: #e53935;
        font-size: 2em;
        font-weight: 800;
        margin-bottom: 0.7em;
        text-align: center;
        letter-spacing: 0.03em;
    }
    .promocje-bestseller-btn {
        background: #e53935;
        color: #fff;
        border: none;
        border-radius: 0.7em;
        padding: 0.7em 1.5em;
        font-size: 1em;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 1px 6px rgba(220,0,0,0.10);
        transition: background 0.2s;
    }
    .promocje-bestseller-btn:hover {
        background: #b71c1c;
    }
.promocje-lista-title {
    text-align: center;
    font-size: 2em;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 0;
}
.promocje-lista-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2em;
    max-width: 1100px;
    margin: 0 auto;
}
.promocje-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(233,30,99,0.08);
    padding: 2em 1.2em 1.5em 1.2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}
.promocje-card:hover {
    box-shadow: 0 6px 24px rgba(233,30,99,0.16);
}
.promocje-card-img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.promocje-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s cubic-bezier(.4,1.4,.4,1);
}
.promocje-card:hover .promocje-card-img {
    transform: scale(1.08);
}
.promocje-card-name {
    font-size: 1.2em;
    font-weight: 600;
    color: #ad1457;
    margin-bottom: 0.7em;
}
.promocje-card-old-price {
    font-size: 1em;
    color: #888;
    text-decoration: line-through;
    margin-bottom: 0.2em;
}
.promocje-card-new-price {
    font-size: 1.3em;
    color: #e91e63;
    font-weight: 700;
    margin-bottom: 1em;
}
.promocje-card-btn {
    background: #e91e63;
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    padding: 0.7em 2em;
    border-radius: 24px;
    border: none;
    box-shadow: 0 2px 8px rgba(233,30,99,0.10);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}
.promocje-card-btn:hover, .promocje-card-btn:focus {
    background: #ad1457;
    box-shadow: 0 4px 18px rgba(233,30,99,0.18);
}
@media (max-width: 700px) {
    .promocje-lista-grid {
        grid-template-columns: 1fr;
        gap: 1.2em;
    }
    .promocje-card-img-wrap {
        height: 120px;
    }
}
.promocje-hero-section {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 2em;
}
.promocje-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.promocje-hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    filter: brightness(0.7) blur(1px);
    display: block;
}
.promocje-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
}
.promocje-hero-badge {
    position: absolute;
    top: 2em;
    left: 2em;
    background: #e91e63;
    color: #fff;
    font-size: 2em;
    font-weight: 700;
    padding: 0.3em 1em;
    border-radius: 2em;
    box-shadow: 0 2px 12px rgba(233,30,99,0.12);
    z-index: 3;
    letter-spacing: 1px;
}
.promocje-hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.promocje-hero-title {
    font-size: 2.6em;
    font-weight: 800;
    color: #2d2d2d;
    margin-bottom: 0.6em;
    text-shadow: 0 2px 8px rgba(255,255,255,0.7);
}
.promocje-hero-subtitle {
    font-size: 1.5em;
    font-weight: 500;
    color: #ad1457;
    margin-bottom: 1.2em;
    text-shadow: 0 2px 8px rgba(255,255,255,0.5);
}
.promocje-hero-btn {
    display: inline-block;
    background: #e91e63;
    color: #fff;
    font-size: 1.3em;
    font-weight: 700;
    padding: 1em 2.5em;
    border-radius: 32px;
    box-shadow: 0 2px 12px rgba(233,30,99,0.12);
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
    margin-bottom: 0.5em;
}
.promocje-hero-btn:hover, .promocje-hero-btn:focus {
    background: #ad1457;
    box-shadow: 0 4px 18px rgba(233,30,99,0.18);
}
@media (max-width: 700px) {
    .promocje-hero-img {
        height: 180px;
    }
    .promocje-hero-title {
        font-size: 1.5em;
    }
    .promocje-hero-subtitle {
        font-size: 1em;
    }
    .promocje-hero-content {
        max-width: 95vw;
    }
    .promocje-hero-badge {
        font-size: 1.2em;
        top: 1em;
        left: 1em;
        padding: 0.2em 0.7em;
    }
}
.nowosci-cta-section {
    position: relative;
    margin: 3em 0 0 0;
    padding: 0;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.nowosci-cta-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.nowosci-cta-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    filter: brightness(0.7) blur(1px);
    display: block;
}
.nowosci-cta-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
}
.nowosci-cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.nowosci-cta-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 1em;
    text-shadow: 0 2px 8px rgba(255,255,255,0.7);
}
.nowosci-cta-btn {
    display: inline-block;
    background: #e91e63;
    color: #fff;
    font-size: 1.2em;
    font-weight: 600;
    padding: 0.8em 2.2em;
    border-radius: 32px;
    box-shadow: 0 2px 12px rgba(233,30,99,0.12);
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
    margin-bottom: 0.5em;
}
.nowosci-cta-btn:hover, .nowosci-cta-btn:focus {
    background: #ad1457;
    box-shadow: 0 4px 18px rgba(233,30,99,0.18);
}
@media (max-width: 700px) {
    .nowosci-cta-img {
        height: 180px;
    }
    .nowosci-cta-title {
        font-size: 1.3em;
    }
    .nowosci-cta-content {
        max-width: 95vw;
    }
}
.nowosci-hero-section {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 2.5em;
  overflow: hidden;
}
.nowosci-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.nowosci-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) blur(1px);
  min-height: 420px;
}
.nowosci-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.3) 100%);
  z-index: 2;
}
.nowosci-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 3em 1em;
  color: #222;
}
.nowosci-hero-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 1em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.nowosci-hero-subtitle {
  font-size: 1.3em;
  font-weight: 400;
  margin-bottom: 2em;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.18);
}
.nowosci-hero-btn {
  display: inline-block;
  background: linear-gradient(90deg, #43cea2 0%, #185a9d 100%);
  color: #fff;
  font-size: 1.2em;
  font-weight: 600;
  padding: 0.9em 2.5em;
  border-radius: 40px;
  box-shadow: 0 4px 24px rgba(67,206,162,0.18);
  border: none;
  text-decoration: none;
  margin-top: 0.5em;
  transition: background 0.2s, box-shadow 0.2s;
}
.nowosci-hero-btn:hover, .nowosci-hero-btn:focus {
  background: linear-gradient(90deg, #185a9d 0%, #43cea2 100%);
  box-shadow: 0 6px 32px rgba(67,206,162,0.28);
}
@media (max-width: 700px) {
  .nowosci-hero-title {
    font-size: 1.3em;
    margin-bottom: 0.7em;
  }
  .nowosci-hero-subtitle {
    font-size: 1em;
    margin-bottom: 1.2em;
  }
  .nowosci-hero-content {
    padding: 2em 0.5em;
  }
  .nowosci-hero-section {
    min-height: 220px;
  }
  .nowosci-hero-img {
    min-height: 220px;
  }
}
.galeria-nowości-section {
    max-width: 1100px;
    margin: 3em auto 2.5em auto;
    text-align: center;
}
.galeria-nowości-title {
    font-size: 1.7em;
    color: #d72660;
    margin-bottom: 1.2em;
    font-weight: bold;
}
.galeria-nowości-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 1.2em;
    margin-bottom: 2em;
}
.galeria-nowości-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1em;
    box-shadow: 0 2px 10px rgba(215,38,96,0.10);
    cursor: pointer;
    transition: transform 0.18s cubic-bezier(.4,1.4,.4,1);
}
.galeria-nowości-img:nth-child(2),
.galeria-nowości-img:nth-child(5) {
    grid-row: span 2;
    height: 100%;
}
.galeria-nowości-img:hover {
    transform: scale(1.07);
    z-index: 2;
}
.galeria-nowości-lightbox {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.galeria-nowości-lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 1em;
    box-shadow: 0 4px 24px rgba(215,38,96,0.15);
}
.galeria-nowości-lightbox-close {
    position: absolute;
    top: 2vw;
    right: 3vw;
    font-size: 2.5em;
    color: #fff;
    cursor: pointer;
    z-index: 2100;
    background: rgba(0,0,0,0.2);
    border-radius: 0.5em;
    padding: 0.2em 0.5em;
}
@media (max-width: 900px) {
    .galeria-nowości-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 120px;
        gap: 0.7em;
    }
    .galeria-nowości-img {
        border-radius: 0.7em;
    }
}
.limitowane-edycje-section {
    max-width: 1000px;
    margin: 3em auto 2.5em auto;
}
.limitowane-edycje-banner {
    position: relative;
    width: 100%;
    min-height: 320px;
    border-radius: 1.5em;
    overflow: hidden;
    margin-bottom: 2em;
    box-shadow: 0 2px 16px rgba(180,180,200,0.08);
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #fffbe6 0%, #ffe3e3 100%);
}
.limitowane-edycje-img {
    width: 340px;
    height: 320px;
    object-fit: cover;
    filter: brightness(0.92) saturate(1.1);
    border-radius: 1.5em 0 0 1.5em;
    box-shadow: 0 2px 16px rgba(215,38,96,0.10);
    flex-shrink: 0;
}
.limitowane-edycje-content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2em 2em;
}
.limitowane-edycje-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #e91e63;
    margin-bottom: 0.7em;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 16px rgba(233,30,99,0.12);
}
.limitowane-edycje-timer {
    font-size: 2em;
    color: #ff9800;
    font-weight: 700;
    background: #fffbe6;
    border-radius: 1em;
    padding: 0.5em 1.5em;
    margin-bottom: 1em;
    box-shadow: 0 2px 8px rgba(255,180,0,0.07);
    display: inline-block;
}
.limitowane-edycje-label {
    font-size: 1.15em;
    color: #fff;
    background: #e91e63;
    border-radius: 1em;
    padding: 0.4em 1.2em;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(233,30,99,0.10);
    letter-spacing: 0.03em;
    margin-top: 0.5em;
    display: inline-block;
}
@media (max-width: 900px) {
    .limitowane-edycje-banner {
        flex-direction: column;
        min-height: 220px;
        padding: 0;
    }
    .limitowane-edycje-img {
        width: 100%;
        height: 180px;
        border-radius: 1.5em 1.5em 0 0;
        margin-bottom: 0.7em;
    }
    .limitowane-edycje-content {
        padding: 1.2em 1em;
        align-items: center;
        text-align: center;
    }
    .limitowane-edycje-title {
        font-size: 1.5em;
    }
    .limitowane-edycje-timer {
        font-size: 1.2em;
        padding: 0.4em 1em;
    }
}
.nowe-kategorie-section {
    max-width: 1000px;
    margin: 3em auto 2.5em auto;
    text-align: center;
    background: linear-gradient(90deg, #f9e6e6 0%, #eaf6ea 100%);
    border-radius: 1.5em;
    box-shadow: 0 2px 16px rgba(180,180,200,0.08);
    padding: 2.5em 1.2em 2.2em 1.2em;
}
.nowe-kategorie-title {
    font-size: 1.7em;
    color: #2d7a2d;
    margin-bottom: 1.2em;
    font-weight: bold;
}
.nowe-kategorie-row {
    display: flex;
    gap: 2em;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}
.kategoria-card {
    background: #fff;
    border-radius: 1.2em;
    box-shadow: 0 2px 12px rgba(44,122,44,0.10);
    padding: 2em 1em 1.5em 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
    max-width: 260px;
    flex: 0 0 auto;
    margin-bottom: 0.5em;
    transition: box-shadow 0.18s;
}
.kategoria-icon {
    font-size: 2.7em;
    margin-bottom: 0.5em;
    color: #e67e22;
    filter: drop-shadow(0 2px 8px rgba(44,122,44,0.10));
}
.kategoria-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 1em;
    margin-bottom: 0.7em;
    box-shadow: 0 2px 10px rgba(44,122,44,0.10);
}
.kategoria-label {
    font-size: 1.15em;
    color: #2d7a2d;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-align: center;
    margin-bottom: 0.3em;
}
.kategoria-desc {
    font-size: 1em;
    color: #444;
    text-align: center;
}
@media (max-width: 900px) {
    .nowe-kategorie-row {
        flex-direction: column;
        align-items: center;
        gap: 1em;
    }
    .kategoria-card {
        min-width: 180px;
        max-width: 320px;
        margin-bottom: 1em;
    }
    .kategoria-img {
        height: 80px;
    }
}
.nowosci-tygodnia-section {
    max-width: 900px;
    margin: 3em auto 2.5em auto;
}
.nowosci-tygodnia-layout {
    display: flex;
    gap: 2.5em;
    align-items: center;
    background: linear-gradient(90deg, #f8f6ff 0%, #e6e2f7 100%);
    border-radius: 1.5em;
    box-shadow: 0 2px 16px rgba(180,180,200,0.08);
    padding: 2.5em 2em;
}
.nowosci-tygodnia-img-col {
    flex: 0 0 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nowosci-tygodnia-img {
    width: 100%;
    max-width: 280px;
    border-radius: 1.2em;
    box-shadow: 0 2px 12px rgba(122,111,167,0.10);
    object-fit: cover;
}
.nowosci-tygodnia-text-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 1em;
}
.nowosci-tygodnia-title {
    font-size: 1.5em;
    color: #d72660;
    font-weight: bold;
    margin-bottom: 1em;
}
.nowosci-tygodnia-desc {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 1.2em;
}
.nowosci-tygodnia-btn {
    background: #d72660;
    color: #fff;
    border: none;
    border-radius: 2em;
    padding: 0.9em 2.5em;
    font-size: 1.15em;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(215,38,96,0.10);
    transition: background 0.2s;
    cursor: pointer;
    letter-spacing: 0.03em;
}
.nowosci-tygodnia-btn:hover {
    background: #a61c47;
}
@media (max-width: 900px) {
    .nowosci-tygodnia-layout {
        flex-direction: column;
        padding: 1.5em 0.7em;
        gap: 1.2em;
    }
    .nowosci-tygodnia-img-col {
        max-width: 100%;
        margin-bottom: 1.2em;
    }
    .nowosci-tygodnia-img {
        max-width: 220px;
    }
    .nowosci-tygodnia-text-col {
        padding-left: 0;
        align-items: center;
        text-align: center;
    }
}
.bestseller-nowości-section {
    max-width: 1200px;
    margin: 3em auto 2.5em auto;
    text-align: center;
}
.bestseller-nowości-title {
    font-size: 1.7em;
    color: #43cea2;
    margin-bottom: 1.2em;
    font-weight: bold;
}
.bestseller-nowości-row {
    display: flex;
    gap: 2em;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}
.bestseller-card {
    position: relative;
    background: #fff;
    border-radius: 1.2em;
    box-shadow: 0 2px 12px rgba(67,206,162,0.10);
    padding: 1.2em 1em 1em 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
    max-width: 260px;
    flex: 0 0 auto;
    margin-bottom: 0.5em;
    transition: box-shadow 0.18s;
}
.bestseller-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 1em;
    margin-bottom: 0.7em;
    box-shadow: 0 2px 10px rgba(67,206,162,0.10);
}
.bestseller-badge {
    position: absolute;
    top: 1em;
    left: 1em;
    background: linear-gradient(90deg, #ff9800 0%, #e91e63 100%);
    color: #fff;
    font-size: 0.95em;
    font-weight: 700;
    padding: 0.4em 1.2em;
    border-radius: 1em;
    box-shadow: 0 2px 8px rgba(233,30,99,0.10);
    z-index: 2;
    letter-spacing: 0.04em;
}
.bestseller-label {
    display: inline-block;
    background: #43cea2;
    color: #fff;
    font-size: 0.95em;
    font-weight: 600;
    padding: 0.3em 1em;
    border-radius: 1em;
    margin-bottom: 0.5em;
    letter-spacing: 0.03em;
}
.bestseller-name {
    font-size: 1.15em;
    color: #185a9d;
    font-weight: 600;
    margin-bottom: 0.3em;
    text-align: center;
}
.bestseller-desc {
    font-size: 1em;
    color: #444;
    text-align: center;
}
@media (max-width: 900px) {
    .bestseller-nowości-row {
        flex-direction: column;
        align-items: center;
        gap: 1em;
    }
    .bestseller-card {
        min-width: 180px;
        max-width: 320px;
        margin-bottom: 1em;
    }
    .bestseller-img {
        height: 110px;
    }
}
.nowe-produkty-slider-section {
    max-width: 1200px;
    margin: 3em auto 2.5em auto;
    text-align: center;
}
.nowe-produkty-slider-title {
    font-size: 1.7em;
    color: #d72660;
    margin-bottom: 1.2em;
    font-weight: bold;
}
.nowe-produkty-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    overflow: hidden;
}
.slider-arrow {
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(215,38,96,0.10);
    color: #d72660;
    font-size: 2em;
    width: 48px;
    height: 48px;
    cursor: pointer;
    margin: 0 0.5em;
    transition: background 0.2s, color 0.2s;
    z-index: 2;
}
.slider-arrow:hover {
    background: #d72660;
    color: #fff;
}
.slider-track {
    display: flex;
    gap: 2em;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1em;
    width: 100%;
}
.slider-card {
    background: #fff;
    border-radius: 1.2em;
    box-shadow: 0 2px 12px rgba(215,38,96,0.10);
    min-width: 260px;
    max-width: 260px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5em 1em 1.2em 1em;
    margin-bottom: 0.5em;
    transition: transform 0.18s cubic-bezier(.4,1.4,.4,1), box-shadow 0.18s;
    scroll-snap-align: start;
}
.slider-card:hover .slider-img {
    transform: scale(1.08);
}
.slider-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 1em;
    margin-bottom: 0.7em;
    box-shadow: 0 2px 10px rgba(215,38,96,0.10);
    transition: transform 0.18s cubic-bezier(.4,1.4,.4,1);
}
.slider-name {
    font-size: 1.15em;
    color: #d72660;
    font-weight: 600;
    margin-bottom: 0.3em;
    text-align: center;
}
.slider-desc {
    font-size: 1em;
    color: #444;
    margin-bottom: 0.5em;
    text-align: center;
}
.slider-price {
    font-size: 1.15em;
    color: #185a9d;
    font-weight: bold;
    margin-bottom: 0.7em;
}
.slider-btn {
    background: #d72660;
    color: #fff;
    padding: 0.7em 2em;
    border-radius: 2em;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(215,38,96,0.10);
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    letter-spacing: 0.03em;
}
.slider-btn:hover {
    background: #a61c47;
}
@media (max-width: 900px) {
    .slider-card {
        min-width: 200px;
        max-width: 200px;
        padding: 1em 0.5em 1em 0.5em;
    }
    .slider-img {
        height: 100px;
    }
}
.nowe-kolekcje-section {
    max-width: 900px;
    margin: 3em auto 2.5em auto;
    text-align: center;
}
.nowe-kolekcje-title {
    font-size: 1.7em;
    color: #185a9d;
    margin-bottom: 1.2em;
    font-weight: bold;
}
.nowe-kolekcje-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    justify-items: center;
    align-items: stretch;
}
.kolekcja-card {
    background: #fff;
    border-radius: 1.2em;
    box-shadow: 0 2px 12px rgba(24,90,157,0.10);
    padding: 1.2em 1em 1em 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    transition: box-shadow 0.18s;
}
.kolekcja-img {
    width: 100%;
    max-width: 160px;
    height: 120px;
    object-fit: cover;
    border-radius: 1em;
    margin-bottom: 0.7em;
    box-shadow: 0 2px 10px rgba(24,90,157,0.10);
    filter: brightness(0.97) saturate(1.05);
    transition: transform 0.18s cubic-bezier(.4,1.4,.4,1);
}
.kolekcja-card:hover .kolekcja-img {
    transform: scale(1.08);
}
.kolekcja-label {
    font-size: 1.1em;
    color: #185a9d;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-align: center;
    margin-bottom: 0.3em;
}
.kolekcja-desc {
    font-size: 1em;
    color: #444;
    text-align: center;
}
@media (max-width: 700px) {
    .nowe-kolekcje-grid {
        grid-template-columns: 1fr;
        gap: 1em;
    }
    .kolekcja-img {
        max-width: 110px;
        height: 80px;
    }
}
.seasonal-decor-section {
    max-width: 1000px;
    margin: 3em auto 2.5em auto;
    text-align: center;
}
.seasonal-decor-title {
    font-size: 1.7em;
    color: #7a6fa7;
    margin-bottom: 1.2em;
    font-weight: bold;
}
.seasonal-decor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2em;
    justify-items: center;
    align-items: stretch;
}
.seasonal-decor-card {
    background: #fff;
    border-radius: 1.2em;
    box-shadow: 0 2px 12px rgba(122,111,167,0.10);
    padding: 1.2em 1em 1em 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    transition: box-shadow 0.18s;
    cursor: pointer;
}
.seasonal-decor-img {
    width: 100%;
    max-width: 160px;
    height: 120px;
    object-fit: cover;
    border-radius: 1em;
    margin-bottom: 0.7em;
    box-shadow: 0 2px 10px rgba(122,111,167,0.10);
    filter: brightness(0.95) saturate(1.05);
    transition: filter 0.18s cubic-bezier(.4,1.4,.4,1);
}
.seasonal-decor-card:hover .seasonal-decor-img {
    filter: brightness(1.08) saturate(1.25);
}
.seasonal-decor-label {
    font-size: 1.1em;
    color: #7a6fa7;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-align: center;
}
@media (max-width: 900px) {
    .seasonal-decor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1em;
    }
    .seasonal-decor-img {
        max-width: 110px;
        height: 80px;
    }
}
@media (max-width: 600px) {
    .seasonal-decor-grid {
        grid-template-columns: 1fr;
    }
    .seasonal-decor-card {
        padding: 0.7em 0.5em 0.7em 0.5em;
    }
}
.special-occasions-section {
    max-width: 1000px;
    margin: 3em auto 2.5em auto;
    text-align: center;
}
.special-occasions-title {
    font-size: 1.7em;
    color: #d72660;
    margin-bottom: 1.2em;
    font-weight: bold;
}
.special-occasions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2em;
    justify-items: center;
    align-items: stretch;
}
.special-occasion-card {
    background: #fff;
    border-radius: 1.2em;
    box-shadow: 0 2px 12px rgba(215,38,96,0.10);
    padding: 1.2em 1em 1em 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    transition: transform 0.18s cubic-bezier(.4,1.4,.4,1), box-shadow 0.18s;
    cursor: pointer;
}
.special-occasion-card:hover {
    transform: scale(1.07);
    box-shadow: 0 4px 24px rgba(215,38,96,0.18);
}
.special-occasion-img {
    width: 100%;
    max-width: 160px;
    height: 120px;
    object-fit: cover;
    border-radius: 1em;
    margin-bottom: 0.7em;
    box-shadow: 0 2px 10px rgba(215,38,96,0.10);
}
.special-occasion-label {
    font-size: 1.1em;
    color: #d72660;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-align: center;
}
@media (max-width: 900px) {
    .special-occasions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1em;
    }
    .special-occasion-img {
        max-width: 110px;
        height: 80px;
    }
}
@media (max-width: 600px) {
    .special-occasions-grid {
        grid-template-columns: 1fr;
    }
    .special-occasion-card {
        padding: 0.7em 0.5em 0.7em 0.5em;
    }
}
.wedding-flowers-section {
    max-width: 1200px;
    margin: 3em auto 2.5em auto;
}
.wedding-flowers-banner {
    position: relative;
    width: 100%;
    min-height: 320px;
    border-radius: 1.5em;
    overflow: hidden;
    margin-bottom: 2em;
    box-shadow: 0 2px 16px rgba(180,180,200,0.08);
}
.wedding-flowers-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    filter: brightness(0.85) saturate(1.1);
    display: block;
}
.wedding-flowers-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(215,38,96,0.18);
    z-index: 2;
}
.wedding-flowers-banner-content {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 700px;
    padding: 2em 1em;
}
.wedding-flowers-title {
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 0.5em;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 16px rgba(215,38,96,0.18);
}
.wedding-flowers-desc {
    font-size: 1.25em;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 12px rgba(215,38,96,0.12);
}
.wedding-flowers-cards {
    display: flex;
    gap: 2em;
    justify-content: center;
    align-items: stretch;
}
.wedding-flowers-card {
    background: #fff;
    border-radius: 1.2em;
    box-shadow: 0 2px 12px rgba(215,38,96,0.10);
    padding: 1.2em 1em 1em 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
    max-width: 300px;
    transition: transform 0.18s cubic-bezier(.4,1.4,.4,1), box-shadow 0.18s;
    cursor: pointer;
}
.wedding-flowers-card:hover {
    transform: scale(1.07);
    box-shadow: 0 4px 24px rgba(215,38,96,0.18);
}
.wedding-flowers-card-img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 1em;
    margin-bottom: 0.7em;
    box-shadow: 0 2px 10px rgba(215,38,96,0.10);
}
.wedding-flowers-card-label {
    font-size: 1.1em;
    color: #d72660;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-align: center;
}
@media (max-width: 900px) {
    .wedding-flowers-banner {
        min-height: 180px;
    }
    .wedding-flowers-img {
        height: 180px;
    }
    .wedding-flowers-cards {
        gap: 1em;
    }
    .wedding-flowers-card {
        min-width: 120px;
        max-width: 160px;
        padding: 0.7em 0.5em 0.7em 0.5em;
    }
    .wedding-flowers-card-img {
        height: 70px;
    }
}
@media (max-width: 700px) {
    .wedding-flowers-cards {
        flex-direction: column;
        align-items: center;
    }
    .wedding-flowers-card {
        min-width: 180px;
        max-width: 320px;
        margin-bottom: 1em;
    }
}
.business-offer-section {
    max-width: 1000px;
    margin: 3em auto 2.5em auto;
    padding: 0 1em;
}
.business-offer-layout {
    display: flex;
    gap: 2.5em;
    align-items: center;
    background: linear-gradient(90deg, #f8f6ff 0%, #e6e2f7 100%);
    border-radius: 1.5em;
    box-shadow: 0 2px 16px rgba(180,180,200,0.08);
    padding: 2.5em 2em;
}
.business-offer-img-col {
    flex: 0 0 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.business-offer-img {
    width: 100%;
    max-width: 280px;
    border-radius: 1.2em;
    box-shadow: 0 2px 12px rgba(122,111,167,0.10);
    object-fit: cover;
}
.business-offer-text-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 1em;
}
.business-offer-title {
    font-size: 1.5em;
    color: #7a6fa7;
    font-weight: bold;
    margin-bottom: 1em;
}
.business-offer-benefits {
    list-style: disc inside;
    font-size: 1.1em;
    color: #444;
    margin: 0;
    padding-left: 0.5em;
}
.business-offer-benefits li {
    margin-bottom: 0.7em;
    font-weight: 500;
}
@media (max-width: 900px) {
    .business-offer-layout {
        flex-direction: column;
        padding: 1.5em 0.7em;
    }
    .business-offer-img-col {
        max-width: 100%;
        margin-bottom: 1.2em;
    }
    .business-offer-img {
        max-width: 220px;
    }
    .business-offer-text-col {
        padding-left: 0;
        align-items: center;
        text-align: center;
    }
}
.top-products-section {
    max-width: 1200px;
    margin: 3em auto 2.5em auto;
    text-align: center;
}
.top-products-title {
    font-size: 1.7em;
    color: #d72660;
    margin-bottom: 1.2em;
    font-weight: bold;
}
.top-products-slider {
    display: flex;
    gap: 2em;
    overflow-x: auto;
    padding-bottom: 1em;
    scroll-snap-type: x mandatory;
}
.top-product-card {
    background: #fff;
    border-radius: 1.2em;
    box-shadow: 0 2px 12px rgba(122,111,167,0.10);
    min-width: 260px;
    max-width: 260px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5em 1em 1.2em 1em;
    margin-bottom: 0.5em;
    transition: transform 0.18s cubic-bezier(.4,1.4,.4,1), box-shadow 0.18s;
    scroll-snap-align: start;
}
.top-product-card:hover {
    transform: scale(1.06);
    box-shadow: 0 4px 24px rgba(215,38,96,0.18);
}
.top-product-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 1em;
    margin-bottom: 0.7em;
    box-shadow: 0 2px 10px rgba(122,111,167,0.10);
}
.top-product-name {
    font-size: 1.15em;
    color: #7a6fa7;
    font-weight: 600;
    margin-bottom: 0.3em;
    text-align: center;
}
.top-product-desc {
    font-size: 1em;
    color: #444;
    margin-bottom: 0.5em;
    text-align: center;
}
.top-product-price {
    font-size: 1.15em;
    color: #d72660;
    font-weight: bold;
    margin-bottom: 0.7em;
}
.top-product-btn {
    background: #d72660;
    color: #fff;
    padding: 0.7em 2em;
    border-radius: 2em;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(215,38,96,0.10);
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    letter-spacing: 0.03em;
}
.top-product-btn:hover {
    background: #a61c47;
}
@media (max-width: 900px) {
    .top-product-card {
        min-width: 200px;
        max-width: 200px;
        padding: 1em 0.5em 1em 0.5em;
    }
    .top-product-img {
        height: 100px;
    }
}
.offer-categories-section {
    max-width: 1200px;
    margin: 3em auto 2.5em auto;
    text-align: center;
}
.offer-categories-title {
    font-size: 1.7em;
    color: #7a6fa7;
    margin-bottom: 0;
    font-weight: bold;
}
.offer-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
    justify-items: center;
    align-items: stretch;
}
.offer-category-card {
    background: #fff;
    border-radius: 1.2em;
    box-shadow: 0 2px 12px rgba(122,111,167,0.10);
    padding: 2em 1em 1.5em 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.18s cubic-bezier(.4,1.4,.4,1), box-shadow 0.18s;
    cursor: pointer;
    font-size: 1.1em;
    min-width: 0;
}
.offer-category-card:hover {
    transform: scale(1.07);
    box-shadow: 0 4px 24px rgba(122,111,167,0.18);
}
.offer-category-icon {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 1em;
    margin-bottom: 0.7em;
    box-shadow: 0 2px 10px rgba(122,111,167,0.10);
    transition: transform 0.18s cubic-bezier(.4,1.4,.4,1);
    display: block;
}
.offer-category-card:hover .offer-category-icon {
    transform: scale(1.12);
}
.offer-category-label {
    font-size: 1.15em;
    color: #7a6fa7;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-align: center;
}
@media (max-width: 900px) {
    .offer-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .offer-categories-grid {
        grid-template-columns: 1fr;
    }
    .offer-category-card {
        padding: 1.5em 0.7em 1.2em 0.7em;
    }
}
.offer-header-section {
    position: relative;
    width: 100%;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5em;
}
.offer-header-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden;
    z-index: 1;
}
.offer-header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) saturate(1.1);
}
.offer-header-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(122,111,167,0.32);
    z-index: 2;
}
.offer-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 2.5em 1em;
}
.offer-header-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 0.5em;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 16px rgba(122,111,167,0.18);
}
.offer-header-subtitle {
    font-size: 1.35em;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 12px rgba(122,111,167,0.12);
}
@media (max-width: 700px) {
    .offer-header-title {
        font-size: 1.5em;
    }
    .offer-header-subtitle {
        font-size: 1em;
    }
    .offer-header-section {
        min-height: 200px;
    }
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
.cta-section {
    margin: 3em auto 2.5em auto;
    text-align: center;
}
.cta-bg {
    background: linear-gradient(135deg, #f8f6ff 0%, #e6e2f7 100%);
    border-radius: 1.5em;
    box-shadow: 0 2px 16px rgba(180,180,200,0.08);
    padding: 2.5em 1.2em 2.2em 1.2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.cta-title {
    font-size: 1.7em;
    color: #7a6fa7;
    margin-bottom: 1.2em;
    font-weight: bold;
}
.cta-btn {
    background: #d72660;
    color: #fff;
    padding: 1.1em 2.8em;
    border-radius: 2em;
    font-size: 1.25em;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(215,38,96,0.10);
    transition: background 0.2s;
    display: inline-block;
    margin-top: 1.2em;
    letter-spacing: 0.03em;
}
.cta-btn:hover {
    background: #a61c47;
}
.cta-section {
    position: relative;
    margin: 3em 0 0 0;
    padding: 0;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}
.cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) blur(1px);
    min-height: 420px;
}
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.3) 100%);
    z-index: 2;
}
.cta-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3em 1em;
    color: #222;
}
.cta-title {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 1.5em;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.cta-btn {
    display: inline-block;
    background: linear-gradient(90deg, #e91e63 0%, #ff9800 100%);
    color: #fff;
    font-size: 1.3em;
    font-weight: 600;
    padding: 0.9em 2.5em;
    border-radius: 40px;
    box-shadow: 0 4px 24px rgba(233,30,99,0.18);
    border: none;
    text-decoration: none;
    margin-top: 0.5em;
    transition: background 0.2s, box-shadow 0.2s;
}
.cta-btn:hover, .cta-btn:focus {
    background: linear-gradient(90deg, #ff9800 0%, #e91e63 100%);
    box-shadow: 0 6px 32px rgba(233,30,99,0.28);
}
@media (max-width: 700px) {
    .cta-title {
        font-size: 1.3em;
        margin-bottom: 1em;
    }
    .cta-content {
        padding: 2em 0.5em;
    }
    .cta-section {
        min-height: 260px;
    }
    .cta-img {
        min-height: 260px;
    }
}
.gallery-section {
    margin: 3em auto 2.5em auto;
    max-width: 1000px;
    text-align: center;
}
.gallery-title {
    font-size: 1.7em;
    color: #7a6fa7;
    margin-bottom: 1.2em;
    font-weight: bold;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2em;
    justify-items: center;
}
.gallery-card {
    background: #fff;
    border-radius: 1.1em;
    box-shadow: 0 2px 12px rgba(180,180,200,0.10);
    padding: 1em 0.5em 1em 0.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.gallery-card:hover {
    box-shadow: 0 4px 24px rgba(122,111,167,0.18);
}
.gallery-img-wrap {
    position: relative;
    width: 100%;
    max-width: 160px;
    height: 160px;
    border-radius: 1em;
    overflow: hidden;
    margin-bottom: 0.7em;
}
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1em;
    transition: transform 0.25s cubic-bezier(.4,1.4,.4,1);
}
.gallery-card:hover .gallery-img {
    transform: scale(1.08);
}
.gallery-hover {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(122,111,167,0.32);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    font-size: 1.1em;
    font-weight: bold;
    letter-spacing: 0.03em;
    border-radius: 1em;
    transition: opacity 0.2s;
}
.gallery-card:hover .gallery-hover {
    opacity: 1;
}
.gallery-desc {
    font-size: 1.05em;
    color: #7a6fa7;
    font-weight: 500;
    margin-top: 0.2em;
    margin-bottom: 0.2em;
    text-align: center;
}
.trust-reason-desc {
    display: block;
    font-size: 0.98em;
    color: #6a6a7a;
    margin-top: 0.3em;
    text-align: left;
}
.trust-reasons-section {
    margin: 3em auto 2.5em auto;
    max-width: 900px;
    text-align: center;
}
.trust-reasons-title {
    font-size: 1.5em;
    color: #7a6fa7;
    margin-bottom: 1.2em;
    font-weight: bold;
}
.trust-reasons-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em;
    justify-content: center;
}
.trust-reason-card {
    background: #fff;
    border-radius: 1.1em;
    box-shadow: 0 2px 12px rgba(180,180,200,0.10);
    padding: 1.2em 1.5em;
    min-width: 220px;
    max-width: 260px;
    display: flex;
    align-items: center;
    gap: 0.8em;
    font-size: 1.08em;
    margin-bottom: 0.2em;
    transition: box-shadow 0.2s;
        flex-direction: column;
}
.trust-reason-card:hover {
    box-shadow: 0 4px 24px rgba(122,111,167,0.18);
}
.trust-reason-icon {
    font-size: 1.5em;
    color: #7a6fa7;
    background: #f8f6ff;
    border-radius: 50%;
    width: 2em;
    height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 6px rgba(180,180,200,0.10);
}
.trust-reason-label {
    font-weight: 500;
    color: #444;
    text-align: left;
}
.mission-values-section {
    margin: 3em auto 2.5em auto;
    max-width: 900px;
    text-align: center;
}
.mission-values-title {
    font-size: 1.7em;
    color: #7a6fa7;
    margin-bottom: 1.2em;
    font-weight: bold;
}
.mission-values-grid {
    display: flex;
    gap: 2em;
    justify-content: center;
    flex-wrap: wrap;
}
.mission-value-card {
    background: #f8f6ff;
    border-radius: 1.2em;
    box-shadow: 0 2px 12px rgba(180,180,200,0.10);
    width: 220px;
    padding: 2em 1em 1.2em 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.5em;
}
.mission-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3em;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 0.7em;
    box-shadow: 0 2px 8px rgba(180,180,200,0.10);
}
.mission-value-icon-rose {
    background: linear-gradient(135deg, #ffb6c1 0%, #ffe4e1 100%);
    color: #d72660;
}
.mission-value-icon-trust {
    background: linear-gradient(135deg, #aee1f9 0%, #e6e2f7 100%);
    color: #2a7ab9;
}
.mission-value-icon-eco {
    background: linear-gradient(135deg, #b7e6c9 0%, #e6f7e2 100%);
    color: #2e9d5c;
}
.mission-value-label {
    font-size: 1.13em;
    color: #7a6fa7;
    font-weight: bold;
    margin-bottom: 0.3em;
    text-align: center;
}
.mission-value-desc {
    font-size: 0.98em;
    color: #6a6a7a;
    text-align: center;
    margin-bottom: 0.2em;
}
    .company-history-section {
        margin-bottom: 2.5em;
    }
    .company-history-bg {
        background: #fff;
        border-radius: 1.5em;
        box-shadow: 0 2px 16px rgba(180,180,200,0.08);
        border: 4px solid #f8f6ff;
        padding: 2.2em 1.2em;
        max-width: 900px;
        margin: 0 auto;
        position: relative;
    }
    .company-history-bg::before {
        content: "";
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        border-radius: 1.5em;
        pointer-events: none;
        border: 2px solid #e6e2f7;
        box-sizing: border-box;
    }
    .company-history-layout {
        display: flex;
        flex-wrap: wrap;
        gap: 2.2em;
        align-items: center;
        justify-content: center;
    }
    .company-history-photo-col {
        flex: 1 1 260px;
        min-width: 220px;
        text-align: center;
    }
    .company-history-photo {
        width: 100%;
        max-width: 220px;
        border-radius: 1em;
        box-shadow: 0 2px 12px rgba(180,180,200,0.10);
        margin-bottom: 0.7em;
    }
    .company-history-photo-caption {
        font-size: 0.98em;
        color: #7a6fa7;
        background: #f8f6ff;
        border-radius: 0.7em;
        padding: 0.3em 0.8em;
        display: inline-block;
        margin-bottom: 0.2em;
    }
    .company-history-text-col {
        flex: 2 1 340px;
        min-width: 220px;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .company-history-title {
        font-size: 1.5em;
        color: #7a6fa7;
        margin-bottom: 0.7em;
        font-weight: bold;
    }
    .company-history-desc {
        font-size: 1.08em;
        color: #444;
        line-height: 1.7;
    }
.about-header-section {
    position: relative;
    width: 100%;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2em;
}
.about-header-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    overflow: hidden;
}
.about-header-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    filter: brightness(0.85) saturate(1.08);
}
.about-header-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(122,111,167,0.28);
    z-index: 2;
}
.about-header-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}
.about-header-title {
    font-size: 2.7em;
    font-weight: 900;
    margin-bottom: 0.3em;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 16px rgba(122,111,167,0.18);
}
.about-header-subtitle {
    font-size: 1.4em;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 12px rgba(122,111,167,0.12);
}
.category-tile-desc {
    display: block;
    font-size: 0.98em;
    color: #6a6a7a;
    text-align: center;
    margin-top: 0.3em;
    margin-bottom: 0.2em;
}
.category-tiles-section {
    margin-bottom: 2.5em;
}
.category-tiles-title {
    text-align: center;
    font-size: 1.7em;
    color: #7a6fa7;
    margin-bottom: 1.2em;
}
.category-tiles-grid {
    display: flex;
    gap: 2em;
    justify-content: center;
    flex-wrap: wrap;
}
.category-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8f6ff;
    border-radius: 1.2em;
    box-shadow: 0 2px 12px rgba(180,180,200,0.10);
    width: 200px;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s;
    padding: 1.2em 0.5em 1em 0.5em;
    position: relative;
}
.category-tile:hover {
    box-shadow: 0 4px 24px rgba(122,111,167,0.18);
    transform: translateY(-4px) scale(1.04);
}
.category-tile-img {
    width: 100%;
    max-width: 140px;
    border-radius: 0.8em;
    margin-bottom: 1em;
    box-shadow: 0 1px 8px rgba(180,180,200,0.10);
}
.category-tile-label {
    font-size: 1.15em;
    color: #7a6fa7;
    font-weight: bold;
    text-align: center;
    margin-top: 0.2em;
    margin-bottom: 0.2em;
}
.new-arrivals-section {
    background: linear-gradient(135deg, #f8f6ff 0%, #f6fcfa 100%);
    padding: 2.5em 0;
    margin-bottom: 2em;
    border-radius: 1.5em;
    box-shadow: 0 2px 16px rgba(180,180,200,0.08);
}
.new-arrivals-title {
    text-align: center;
    margin-bottom: 1.5em;
    color: #7a6fa7;
}
.new-arrivals-grid {
    display: flex;
    gap: 2em;
    justify-content: center;
    flex-wrap: wrap;
}
.new-arrival-card {
    background: #fff;
    border-radius: 1em;
    box-shadow: 0 2px 8px rgba(180,180,200,0.10);
    padding: 1.2em;
    width: 220px;
    position: relative;
    text-align: center;
}
.new-badge {
    position: absolute;
    top: 1em;
    left: 1em;
    color: #fff;
    padding: 0.3em 0.8em;
    border-radius: 1em;
    font-size: 0.9em;
    font-weight: bold;
    box-shadow: 0 1px 4px rgba(180,180,200,0.15);
}
.new-badge-pink {
    background: #ffb6c1;
    box-shadow: 0 1px 4px rgba(255,182,193,0.15);
}
.new-badge-blue {
    background: #aee1f9;
    box-shadow: 0 1px 4px rgba(174,225,249,0.15);
}
.new-badge-yellow {
    background: #ffe4b5;
    box-shadow: 0 1px 4px rgba(255,228,181,0.15);
}
.new-badge-green {
    background: #b7e6c9;
    box-shadow: 0 1px 4px rgba(183,230,201,0.15);
}
.new-arrival-img {
    width: 100%;
    border-radius: 0.7em;
    box-shadow: 0 1px 6px rgba(180,180,200,0.10);
}
.new-arrival-name {
    margin: 0.8em 0 0.4em 0;
}
.new-arrival-desc {
    font-size: 0.98em;
    color: #6a6a7a;
}
.new-arrival-price {
    display: block;
    margin-top: 0.6em;
    font-weight: bold;
    color: #7a6fa7;
}
.new-arrivals-btn-row {
    text-align: center;
    margin-top: 2em;
}
.new-arrivals-btn {
    background: #7a6fa7;
    color: #fff;
    padding: 0.8em 2em;
    border-radius: 2em;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(122,111,167,0.10);
    transition: background 0.2s;
}
.promo-banner-section {
    background: linear-gradient(90deg, #ffe4e1 0%, #f8f6ff 100%);
    padding: 2.5em 0 2em 0;
    margin-bottom: 2em;
    border-radius: 1.5em;
    box-shadow: 0 2px 16px rgba(255,180,180,0.08);
}
.promo-banner-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2.5em;
    max-width: 900px;
    margin: 0 auto;
}
.promo-banner-text {
    flex: 1 1 320px;
    min-width: 280px;
    text-align: center;
}
.promo-banner-title {
    font-size: 2.2em;
    color: #d72660;
    font-weight: 900;
    margin-bottom: 0.5em;
    letter-spacing: 0.02em;
}
.promo-cta-btn {
    background: #d72660;
    color: #fff;
    padding: 0.9em 2.2em;
    border-radius: 2em;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(215,38,96,0.10);
    transition: background 0.2s;
    display: inline-block;
    margin-top: 1.2em;
}
.promo-banner-product {
    flex: 1 1 320px;
    min-width: 280px;
    text-align: center;
    position: relative;
}
.promo-banner-img {
    width: 220px;
    border-radius: 1em;
    box-shadow: 0 2px 12px rgba(215,38,96,0.10);
    margin-bottom: 1em;
}
.promo-banner-product-name {
    font-size: 1.1em;
    margin-bottom: 0.3em;
    font-weight: 600;
    color: #d72660;
}
.promo-banner-prices {
    font-size: 1.3em;
    font-weight: bold;
}
.promo-banner-old-price {
    text-decoration: line-through;
    color: #a6a6a6;
    font-weight: normal;
    margin-right: 0.7em;
}
.promo-banner-new-price {
    color: #d72660;
}
.new-products {
    background: #fff;
    margin: 2em auto 2em auto;
    max-width: 1200px;
    padding: 2em 1em 2em 1em;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(44,122,44,0.07);
}
.new-products h2 {
    text-align: center;
    font-size: 2em;
    color: #2d7a2d;
    margin-bottom: 1.2em;
}
.new-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2em;
}
.new-product-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(44,122,44,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: box-shadow 0.2s;
    min-height: 340px;
}
.new-product-img-wrap {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.new-product-img-wrap img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.new-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e67e22;
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    padding: 0.3em 1em;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(230,126,34,0.10);
    letter-spacing: 0.02em;
}
.new-product-info {
    padding: 1.2em 1em 1em 1em;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.new-product-info h3 {
    font-size: 1.15em;
    color: #2d7a2d;
    margin: 0.2em 0 0.5em 0;
    text-align: center;
}
.new-product-info p {
    font-size: 1em;
    color: #444;
    margin: 0 0 0.7em 0;
    text-align: center;
}
.new-details-btn {
    background: #2d7a2d;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 0.6em 1.6em;
    font-size: 1.1em;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(44,122,44,0.10);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    margin-top: 0.5em;
}
.new-details-btn:hover {
    background: #e67e22;
    transform: scale(1.07);
}
@media (max-width: 900px) {
    .new-products-grid {
        grid-template-columns: 1fr;
        gap: 1em;
    }
    .new-product-img-wrap img {
        height: 140px;
    }
}
.bestsellers-desc {
    text-align: center;
    color: #444;
    font-size: 1.15em;
    margin-bottom: 1.5em;
    margin-top: -0.5em;
}
.bestsellers {
    margin: 2em auto 2em auto;
    max-width: 1200px;
    padding: 0 1em;
}
.bestsellers h2 {
    text-align: center;
    font-size: 2em;
    color: #2d7a2d;
    margin-bottom: 1.2em;
}
.bestsellers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
}
.bestseller-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(44,122,44,0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: box-shadow 0.2s;
}
.bestseller-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.bestseller-info {
    padding: 1.2em 1em 1em 1em;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.bestseller-info h3 {
    font-size: 1.2em;
    color: #2d7a2d;
    margin: 0.2em 0 0.5em 0;
    text-align: center;
}
.bestseller-info p {
    font-size: 1em;
    color: #444;
    margin: 0 0 0.7em 0;
    text-align: center;
}
.bestseller-price {
    font-size: 1.15em;
    color: #e67e22;
    font-weight: bold;
    margin-bottom: 0.7em;
}
.bestseller-btn {
    background: #2d7a2d;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 0.6em 1.6em;
    font-size: 1.1em;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(44,122,44,0.10);
    transition: background 0.2s, transform 0.2s;
}
.bestseller-btn:hover {
    background: #e67e22;
    transform: scale(1.07);
}
@media (max-width: 900px) {
    .bestsellers-grid {
        grid-template-columns: 1fr;
        gap: 1em;
    }
    .bestseller-card img {
        height: 140px;
    }
}
.category-desc {
    display: block;
    color: #fff;
    background: rgba(44,122,44,0.35);
    font-size: 1em;
    margin: 0.5em 0 1em 0;
    padding: 0.3em 1em;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(44,122,44,0.08);
    font-weight: 400;
    letter-spacing: 0.01em;
}
.categories {
    margin: 2em auto 2em auto;
    max-width: 1200px;
    padding: 0 1em;
}
    .promotions {
        margin: 2em auto 2em auto;
        max-width: 1200px;
        padding: 2em 1em 1.5em 1em;
        background: linear-gradient(90deg, #fffbe6 0%, #ffe3e3 100%);
        border-radius: 18px;
        box-shadow: 0 4px 24px rgba(255, 180, 0, 0.08);
        text-align: center;
    }
    .why-us {
        margin: 2em auto 2em auto;
        max-width: 1200px;
        padding: 2em 1em 1.5em 1em;
        background: linear-gradient(90deg, #eaf6ea 0%, #f9e6e6 100%);
        border-radius: 18px;
        box-shadow: 0 2px 12px rgba(44,122,44,0.07);
    }
    .opinions {
        margin: 2em auto 2em auto;
        max-width: 1200px;
        padding: 2em 1em 1.5em 1em;
        background: linear-gradient(90deg, #f9e6e6 0%, #eaf6ea 100%);
        border-radius: 18px;
        box-shadow: 0 2px 12px rgba(44,122,44,0.07);
    }
    .inspirations {
        margin: 2em auto 2em auto;
        max-width: 1200px;
        padding: 2em 1em 1.5em 1em;
        background: linear-gradient(90deg, #eaf6ea 0%, #fffbe6 100%);
        border-radius: 18px;
        box-shadow: 0 2px 12px rgba(44,122,44,0.07);
    }
    .wedding-decor {
        position: relative;
        margin: 2em auto 2em auto;
        max-width: 1200px;
        min-height: 340px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(90deg, #fffbe6 0%, #ffe3e3 100%);
        border-radius: 18px;
        box-shadow: 0 2px 12px rgba(215,38,61,0.07);
        overflow: hidden;
    }
    .category-header {
        position: relative;
        width: 100%;
        min-height: 340px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 2em auto;
        overflow: hidden;
        border-radius: 18px;
        box-shadow: 0 2px 12px rgba(44,122,44,0.07);
    }
    .products-section {
        max-width: 1200px;
        margin: 0 auto 2em auto;
        display: flex;
        flex-direction: row;
        gap: 2em;
    }
    .bestsellers-slider-section {
        max-width: 1200px;
        margin: 0 auto 2em auto;
        padding: 0 1em;
    }
    .bestsellers-slider-section h2 {
        text-align: center;
        font-size: 2em;
        color: #d7263d;
        margin-bottom: 1.2em;
        font-weight: 700;
    }
    .bestsellers-slider {
        display: flex;
        gap: 2em;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding-bottom: 1em;
    }
    .bestseller-slide {
        min-width: 260px;
        max-width: 260px;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(44,122,44,0.10);
        padding: 1.2em 1em 1em 1em;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        transition: box-shadow 0.2s, transform 0.2s;
    }
    .bestseller-slide:hover {
        box-shadow: 0 6px 24px rgba(44,122,44,0.15);
        transform: scale(1.04);
    }
    .bestseller-slide img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 0.7em;
    }
    .bestseller-slide h4 {
        font-size: 1.1em;
        color: #2d7a2d;
        margin-bottom: 0.3em;
        text-align: center;
    }
    .bestseller-slide .product-price {
        font-size: 1.1em;
        color: #e67e22;
        font-weight: bold;
        margin-bottom: 0.5em;
    }
    .bestseller-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        background: #d7263d;
        color: #fff;
        font-size: 0.95em;
        font-weight: 600;
        padding: 0.3em 1em;
        border-radius: 16px;
        box-shadow: 0 2px 8px rgba(215,38,61,0.10);
        letter-spacing: 0.02em;
        z-index: 2;
    }
    @media (max-width: 900px) {
        .bestsellers-slider {
            gap: 1em;
        }
        .bestseller-slide {
            min-width: 180px;
            max-width: 180px;
        }
        .bestseller-slide img {
            height: 120px;
        }
    }
    .products-layout {
        display: flex;
        width: 100%;
        gap: 2em;
    }
    .products-filters {
        min-width: 220px;
        max-width: 260px;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(44,122,44,0.10);
        padding: 2em 1.2em 1.2em 1.2em;
        height: fit-content;
    }
    .products-filters h3 {
        font-size: 1.2em;
        color: #2d7a2d;
        margin-bottom: 1em;
        font-weight: 700;
    }
    .filter-group {
        margin-bottom: 1.2em;
    }
    .filter-label {
        display: block;
        font-size: 1em;
        color: #444;
        font-weight: 500;
        margin-bottom: 0.5em;
    }
    .filter-slider {
        width: 100%;
        margin: 0.5em 0;
    }
    .filter-slider-value {
        font-size: 0.95em;
        color: #2d7a2d;
        margin-left: 0.5em;
    }
    .products-list {
        flex: 1;
    }
    .products-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2em;
    }
    .product-card {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(44,122,44,0.10);
        padding: 1.2em 1em 1em 1em;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: box-shadow 0.2s;
    }
    .product-card:hover {
        box-shadow: 0 6px 24px rgba(44,122,44,0.15);
    }
    .product-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 0.7em;
    }
    .product-card h4 {
        font-size: 1.1em;
        color: #2d7a2d;
        margin-bottom: 0.3em;
        text-align: center;
        }
        .product-desc {
            font-size: 0.98em;
            color: #444;
            margin-bottom: 0.5em;
            text-align: center;
            font-style: italic;
            line-height: 1.5;
    }
    .product-price {
        font-size: 1.1em;
        color: #e67e22;
        font-weight: bold;
        margin-bottom: 0.5em;
    }
    @media (max-width: 900px) {
        .products-section, .products-layout {
            flex-direction: column;
            gap: 1em;
        }
        .products-filters {
            max-width: 100%;
            min-width: 0;
            margin-bottom: 1em;
        }
        .products-grid {
            grid-template-columns: 1fr;
            gap: 1em;
        }
        .product-card img {
            height: 120px;
        }
    }
    .category-header-bg {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        overflow: hidden;
    }
    .category-header-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s cubic-bezier(.23,1.01,.32,1);
        filter: brightness(0.85) saturate(1.08);
    }
    .category-header:hover .category-header-img {
        transform: scale(1.07);
    }
    .category-header-overlay {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.45);
        z-index: 2;
    }
    .category-header-content {
        position: relative;
        z-index: 3;
        width: 100%;
        text-align: center;
        color: #fff;
        padding: 2em 1em;
        max-width: 600px;
        margin: 0 auto;
    }
    .category-header-content h1 {
        font-size: 2.7em;
        font-weight: bold;
        margin-bottom: 0.5em;
        text-shadow: 0 2px 12px rgba(0,0,0,0.18);
    }
    .category-header-content h2 {
        font-size: 1.5em;
        font-weight: 500;
        margin-bottom: 1.2em;
        text-shadow: 0 2px 12px rgba(0,0,0,0.12);
    }
    .category-header-cta {
        background: #e67e22;
        color: #fff;
        border: none;
        border-radius: 32px;
        padding: 0.8em 2.2em;
        font-size: 1.2em;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 2px 12px rgba(230,126,34,0.12);
        transition: background 0.2s, transform 0.2s;
        text-decoration: none;
    }
    .category-header-cta:hover {
        background: #2d7a2d;
        transform: scale(1.07);
    }
    @media (max-width: 900px) {
        .category-header {
            min-height: 180px;
        }
        .category-header-content h1 {
            font-size: 1.5em;
        }
        .category-header-content h2 {
            font-size: 1.1em;
        }
        .category-header-content {
            padding: 1.2em 0.5em;
        }
        .category-header-img {
            height: 180px;
        }
    }
    .wedding-bg {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        overflow: hidden;
    }
    .wedding-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s cubic-bezier(.23,1.01,.32,1);
        filter: brightness(0.92) saturate(1.08);
    }
    .wedding-decor:hover .wedding-img {
        transform: scale(1.07);
    }
    .wedding-content {
        position: relative;
        z-index: 2;
        background: rgba(255,255,255,0.85);
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(215,38,61,0.10);
        padding: 2em 2em 1.5em 2em;
        max-width: 480px;
        margin: 2em;
        text-align: center;
    }
    .wedding-content h2 {
        font-size: 2em;
        color: #d7263d;
        margin-bottom: 0.7em;
        font-weight: 700;
    }
    .wedding-content p {
        font-size: 1.1em;
        color: #444;
        margin-bottom: 1.2em;
    }
    .wedding-cta {
        background: #d7263d;
        color: #fff;
        border: none;
        border-radius: 24px;
        padding: 0.7em 2em;
        font-size: 1.15em;
        font-weight: 500;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(215,38,61,0.10);
        text-decoration: none;
        transition: background 0.2s, transform 0.2s;
    }
    .wedding-cta:hover {
        background: #e67e22;
        transform: scale(1.07);
    }
    @media (max-width: 900px) {
        .wedding-content {
            max-width: 95vw;
            margin: 1em;
            padding: 1.2em 1em 1em 1em;
        }
        .wedding-decor {
            min-height: 220px;
        }
        .wedding-img {
            height: 220px;
        }
    }
    .inspirations h2 {
        text-align: center;
        font-size: 2em;
        color: #2d7a2d;
        margin-bottom: 1.2em;
        font-weight: 700;
        letter-spacing: 0.02em;
    }
    .inspirations-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2em;
        margin-bottom: 1.5em;
    }
    .inspiration-card {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(44,122,44,0.10);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        transition: box-shadow 0.2s;
    }
    .inspiration-card:hover {
        box-shadow: 0 6px 24px rgba(44,122,44,0.15);
    }
    .inspiration-img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
    }
    .inspiration-info {
        padding: 1.2em 1em 1em 1em;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .inspiration-info h3 {
        font-size: 1.15em;
        color: #2d7a2d;
        margin: 0.2em 0 0.5em 0;
        text-align: center;
    }
    .inspiration-info p {
        font-size: 1em;
        color: #444;
        margin: 0 0 0.7em 0;
        text-align: center;
    }
    .inspiration-btn {
        background: #e67e22;
        color: #fff;
        border: none;
        border-radius: 24px;
        padding: 0.6em 1.6em;
        font-size: 1.1em;
        font-weight: 500;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(230,126,34,0.10);
        text-decoration: none;
        transition: background 0.2s, transform 0.2s;
        margin-top: 0.5em;
    }
    .inspiration-btn:hover {
        background: #2d7a2d;
        transform: scale(1.07);
    }
    @media (max-width: 900px) {
        .inspirations-grid {
            grid-template-columns: 1fr;
            gap: 1em;
        }
        .inspiration-img {
            height: 140px;
        }
    }
    .opinions h2 {
        text-align: center;
        font-size: 2em;
        color: #2d7a2d;
        margin-bottom: 1.2em;
        font-weight: 700;
        letter-spacing: 0.02em;
    }
    .opinions-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2em;
        margin-bottom: 1.5em;
    }
    .opinion-card {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(44,122,44,0.10);
        padding: 2em 1.2em 1.2em 1.2em;
        display: flex;
        align-items: center;
        gap: 1.2em;
        min-height: 160px;
        transition: box-shadow 0.2s;
    }
    .opinion-card:hover {
        box-shadow: 0 6px 24px rgba(44,122,44,0.15);
    }
    .opinion-photo {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0 2px 8px rgba(44,122,44,0.10);
        border: 2px solid #e67e22;
    }
    .opinion-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .opinion-name {
        font-size: 1.1em;
        color: #2d7a2d;
        font-weight: 600;
        margin-bottom: 0.2em;
    }
    .opinion-stars {
        color: #e67e22;
        font-size: 1.2em;
        margin-bottom: 0.3em;
        letter-spacing: 0.1em;
    }
    .opinion-info blockquote {
        font-size: 1em;
        color: #444;
        margin: 0;
        font-style: italic;
        background: #fffbe6;
        border-radius: 8px;
        padding: 0.7em 1em;
        box-shadow: 0 1px 4px rgba(255,180,0,0.07);
    }
    .opinions-btn-wrap {
        text-align: center;
        margin-top: 1em;
    }
    .opinions-btn {
        background: #e67e22;
        color: #fff;
        border: none;
        border-radius: 24px;
        padding: 0.7em 2em;
        font-size: 1.15em;
        font-weight: 500;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(230,126,34,0.10);
        text-decoration: none;
        transition: background 0.2s, transform 0.2s;
    }
    .opinions-btn:hover {
        background: #2d7a2d;
        transform: scale(1.07);
    }
    @media (max-width: 900px) {
        .opinions-grid {
            grid-template-columns: 1fr;
            gap: 1em;
        }
        .opinion-card {
            flex-direction: column;
            align-items: flex-start;
            min-height: 120px;
        }
        .opinion-photo {
            width: 48px;
            height: 48px;
        }
    }
    .why-us h2 {
        text-align: center;
        font-size: 2em;
        color: #2d7a2d;
        margin-bottom: 1.2em;
        font-weight: 700;
        letter-spacing: 0.02em;
    }
    .why-us-features {
        display: flex;
        justify-content: center;
        gap: 2em;
        flex-wrap: wrap;
    }
    .why-us-feature {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(44,122,44,0.10);
        padding: 2em 1.2em 1.2em 1.2em;
        min-width: 220px;
        max-width: 260px;
        flex: 1 1 220px;
        text-align: center;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s, transform 0.7s;
    }
    .why-us-feature.visible {
        opacity: 1;
        transform: translateY(0);
    }
    .why-us-icon {
        font-size: 2.7em;
        margin-bottom: 0.5em;
        color: #e67e22;
        filter: drop-shadow(0 2px 8px rgba(44,122,44,0.10));
    }
    .why-us-text {
        font-size: 1.15em;
        color: #2d7a2d;
        font-weight: 500;
        margin-bottom: 0.2em;
    }
    @media (max-width: 900px) {
        .why-us-features {
            flex-direction: column;
            align-items: center;
            gap: 1em;
        }
        .why-us-feature {
            min-width: 180px;
            max-width: 100%;
        }
    }
    .promotions h2 {
        text-align: center;
        font-size: 2em;
        color: #d7263d;
        margin-bottom: 1.2em;
        font-weight: 700;
        letter-spacing: 0.02em;
    }
    .promotions-grid {
        display: flex;
        justify-content: center;
        gap: 2em;
        flex-wrap: wrap;
        margin-bottom: 1.5em;
    }
    .promotion-card {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(215,38,61,0.08);
        overflow: hidden;
        max-width: 340px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: transform 0.2s, box-shadow 0.2s;
    }
    .promotion-card:hover {
        transform: scale(1.03);
        box-shadow: 0 6px 24px rgba(215,38,61,0.15);
    }
    .promotion-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        border-bottom: 1px solid #ffe3e3;
        display: block;
    }
    .promotion-info {
        padding: 1.2em 1em 1em 1em;
        text-align: center;
        width: 100%;
    }
    .promotion-info h3 {
        font-size: 1.15em;
        color: #d7263d;
        margin: 0.2em 0 0.5em 0;
        text-align: center;
    }
    .promotion-prices {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1em;
        margin-top: 0.5em;
    }
    .old-price {
        font-size: 1.1em;
        color: #999;
        text-decoration: line-through;
        background: #ffe3e3;
        border-radius: 6px;
        padding: 0.2em 0.8em;
        font-weight: 500;
    }
    .new-price {
        font-size: 1.3em;
        color: #fff;
        background: #d7263d;
        border-radius: 6px;
        padding: 0.3em 1.2em;
        font-weight: bold;
        box-shadow: 0 2px 8px rgba(215,38,61,0.10);
        letter-spacing: 0.02em;
    }
    .promotion-timer {
        text-align: center;
        font-size: 1.1em;
        color: #d7263d;
        margin: 0.7em auto;
        font-weight: 600;
        background: #fffbe6;
        border-radius: 8px;
        display: inline-block;
        padding: 0.5em 1.2em;
        box-shadow: 0 2px 8px rgba(255,180,0,0.07);
    }
    @media (max-width: 900px) {
        .promotions-grid {
            flex-direction: column;
            align-items: center;
            gap: 1em;
        }
        .promotion-card img {
            height: 160px;
        }
    }
.categories h2 {
    text-align: center;
    font-size: 2em;
    color: #2d7a2d;
    margin-bottom: 1.2em;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2em;
}
.category-tile {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(44,122,44,0.10);
    min-height: 220px;
    transition: box-shadow 0.2s;
}
.category-tile img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: filter 0.3s;
}
.category-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(44,122,44,0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: background 0.3s;
}
.category-name {
    font-size: 1.5em;
    color: #fff;
    background: rgba(44,122,44,0.55);
    padding: 0.4em 1.2em;
    border-radius: 8px;
    margin-bottom: 0.7em;
    font-weight: 600;
    letter-spacing: 0.03em;
    box-shadow: 0 2px 8px rgba(44,122,44,0.10);
}
.category-btn {
    display: none;
    background: #e67e22;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 0.6em 1.6em;
    font-size: 1.1em;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(230,126,34,0.10);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.category-tile:hover img {
    filter: brightness(0.6);
}
.category-tile:hover .category-overlay {
    background: rgba(44,122,44,0.38);
}
.category-tile:hover .category-btn {
    display: inline-block;
    animation: fadeInBtn 0.4s;
}
@keyframes fadeInBtn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 700px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1em;
    }
    .category-tile img {
        height: 160px;
    }
}
.hero-banner {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 2em;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    background: url('../images/flower-basket-gift-5817.webp') center center/cover no-repeat;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.45);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInHero 1.2s ease-out 0.2s forwards;
}
.hero-title {
    font-size: 2.7em;
    font-weight: bold;
    color: #2d7a2d;
    margin-bottom: 1em;
    text-shadow: 0 2px 12px rgba(44,122,44,0.08);
}
.hero-cta {
    background: #e67e22;
    color: #fff;
    border: none;
    border-radius: 32px;
    padding: 0.8em 2.2em;
    font-size: 1.3em;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(230,126,34,0.12);
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}
.hero-cta:hover {
    background: #2d7a2d;
    transform: scale(1.07);
}
@keyframes fadeInHero {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 700px) {
    .hero-title {
        font-size: 2em;
    }
    .hero-content {
        max-width: 95vw;
    }
    .hero-banner {
        min-height: 260px;
    }
}
.newsletter-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.newsletter-popup-content {
    background: #fff;
    color: #2d7a2d;
    padding: 2em 2em 1em 2em;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(44,122,44,0.15);
    text-align: center;
    max-width: 350px;
}
.newsletter-popup-content h4 {
    margin-top: 0;
    color: #e67e22;
}
.newsletter-popup-content button {
    margin-top: 1em;
    background: #2d7a2d;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0.5em 1.5em;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.2s;
}
.newsletter-popup-content button:hover {
    background: #e67e22;
}
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8f8f8;
    color: #222;
}
header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding-bottom: 10px;
}
nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}
nav ul li {
    margin: 0 1em;
}
nav ul li a {
    text-decoration: none;
    color: #2d7a2d;
    font-weight: 500;
    padding: 1em 0.5em;
    transition: color 0.2s;
}
nav ul li a:hover {
    color: #e67e22;
}
.hero {
    background: linear-gradient(90deg, #eaf6ea 0%, #f9e6e6 100%);
    text-align: center;
    padding: 3em 1em;
}
.hero h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    margin: 2em 0;
}
.features div {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 2em;
    min-width: 220px;
    max-width: 320px;
    flex: 1 1 220px;
    text-align: center;
}
footer {
    background: #2d7a2d;
    color: #fff;
    text-align: center;
    padding: 1em 0;
    margin-top: 2em;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #2d7a2d;
    color: #fff;
    padding: 2em 1em 1em 1em;
    gap: 2em;
}
.footer-col {
    flex: 1 1 180px;
    min-width: 180px;
    max-width: 260px;
    margin-bottom: 1em;
}
.footer-col h3 {
    margin-top: 0;
    font-size: 1.1em;
    color: #e67e22;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 0.5em;
}
.footer-col a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: #e67e22;
}
.newsletter-form {
    display: flex;
    gap: 0.5em;
    margin-bottom: 0.5em;
}
.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.5em;
    border-radius: 4px;
    border: none;
    font-size: 1em;
}
.newsletter-form button {
    background: #e67e22;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0.5em 1em;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.2s;
}
.newsletter-form button:hover {
    background: #2d7a2d;
}
.footer-copyright {
    background: #245c24;
    text-align: center;
    padding: 0.7em 0 0.3em 0;
    font-size: 0.95em;
    color: #fff;
}

@media (max-width: 900px) {
    .footer-columns {
        flex-direction: column;
        align-items: stretch;
        gap: 1em;
    }
    .footer-col {
        max-width: 100%;
    }
}

.menu-toggle {
    display: none;
}
@media (max-width: 900px) {
    .features {
        flex-direction: column;
        gap: 1em;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    nav ul li {
        margin: 0.5em 0;
    }
       .menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 1em;
        margin: 0 auto;
        position: relative;
        z-index: 1001;
    }
    .menu-bar {
        display: block;
        width: 28px;
        height: 4px;
        margin: 5px auto;
        background: #2d7a2d;
        border-radius: 2px;
        transition: all 0.3s;
    }
    .nav-list {
        display: none;
        flex-direction: column;
        align-items: center;
        background: #fff;
        position: absolute;

        left: 0;
        width: 100%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        z-index: 1000;
    }
    nav.open .nav-list {
        display: flex;
    }
    nav ul li {
        margin: 1em 0;
    }
    nav ul li a {
        font-size: 1.2em;
    }
}
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em 0 0.5em 0;
}
.logo-container img {
    height: 48px;
    box-shadow: 0 2px 8px rgba(44,122,44,0.12);
    border-radius: 12px;
    background: #fff;
    padding: 4px 12px;
}
.cookie-policy-block {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background: none;
    pointer-events: none;
}
.cookie-policy-content {
    background: #fff;
    color: #333;
    box-shadow: 0 4px 32px 0 rgba(44,122,44,0.13);
    border-radius: 18px 18px 0 0;
    padding: 28px 32px 22px 32px;
    width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    pointer-events: auto;
    border: 2px solid #e67e22;
}
.cookie-policy-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 8px #e67e22aa);
}
.cookie-policy-text h4 {
    margin: 0 0 8px 0;
    font-size: 1.18em;
    color: #e67e22;
    text-align: center;
}
.cookie-policy-text p {
    margin: 0;
    font-size: 1em;
    text-align: center;
    line-height: 1.5;
}
.cookie-policy-text a {
    color: #1976d2;
    text-decoration: underline;
    transition: color 0.2s;
}
.cookie-policy-text a:hover {
    color: #e67e22;
}
.cookie-policy-actions {
    display: flex;
    gap: 18px;
    margin-top: 10px;
    justify-content: center;
}
.cookie-btn {
    padding: 0.7em 1.6em;
    border-radius: 8px;
    border: none;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(44,122,44,0.07);
}
.cookie-btn.accept {
    background: #2d7a2d;
    color: #fff;
}
.cookie-btn.accept:hover {
    background: #e67e22;
    color: #fff;
}
.cookie-btn.decline {
    background: #fff;
    color: #e67e22;
    border: 2px solid #e67e22;
}
.cookie-btn.decline:hover {
    background: #e67e22;
    color: #fff;
}
@media (max-width: 600px) {
    .cookie-policy-content {
        padding: 18px 8vw 14px 8vw;
        max-width: 98vw;
    }
    .cookie-policy-icon {
        width: 36px;
        height: 36px;
    }
    .cookie-policy-actions {
        flex-direction: column;
        gap: 10px;
    }
}