:root {
    --accent: #df3511;
    --accent-dark: #bb2c0d;
    --ink: #08050f;
    --muted: #534b48;
    --paper: #fffdfb;
    --soft: #f5f4f3;
    --line: #efe7e3;
    --shadow: 0 22px 42px rgba(214, 69, 31, 0.12);
    --serif: "Times New Roman", "Noto Serif", Georgia, serif;
    --sans: Arial, "Helvetica Neue", "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container,
.header-container,
.products-inner {
    width: min(100%, 900px);
    margin: 0 auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 10;
    height: 52px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(244, 238, 235, 0.72);
    backdrop-filter: blur(10px);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--serif);
    line-height: 1;
    letter-spacing: 0.02em;
}

.logo span {
    font-size: 15px;
    font-weight: 700;
}

.logo small {
    margin-top: 4px;
    font-family: var(--sans);
    font-size: 5px;
    font-weight: 700;
    letter-spacing: 0.48em;
}

.nav {
    display: flex;
    align-items: center;
    gap: clamp(24px, 5vw, 58px);
    color: #160d09;
    font-size: 13px;
    font-weight: 700;
}

.nav a {
    white-space: nowrap;
}

.nav a:hover {
    color: var(--accent);
}

.cart-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 0 10px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #160d09;
    background: transparent;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.cart-button:hover,
.cart-button.is-bumping {
    color: var(--accent);
    border-color: rgba(223, 53, 17, 0.18);
    background: #fff3ee;
    box-shadow: 0 0 0 4px rgba(223, 53, 17, 0.08);
}

.cart-button.is-bumping {
    animation: cartShake 420ms ease;
}

.cart-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    padding: 0 5px;
    border: 2px solid #fff;
    border-radius: 999px;
    color: #fff;
    background: var(--accent);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    opacity: 0;
    transform: scale(0.72);
    transition: opacity 160ms ease, transform 160ms ease;
}

.cart-count.is-visible {
    opacity: 1;
    transform: scale(1);
}

@keyframes cartShake {
    0%, 100% { transform: translateX(0) rotate(0); }
    20% { transform: translateX(-2px) rotate(-2deg); }
    40% { transform: translateX(3px) rotate(2deg); }
    60% { transform: translateX(-2px) rotate(-1deg); }
    80% { transform: translateX(2px) rotate(1deg); }
}

.hero {
    min-height: 414px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 368px;
    align-items: start;
    gap: 64px;
    width: min(100%, 900px);
    margin: 0 auto;
    padding: 52px 4px 52px;
    background:
        radial-gradient(circle at 48% 40%, rgba(223, 53, 17, 0.08), transparent 34%),
        linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 239, 234, 0.34), rgba(255, 255, 255, 0));
}

.hero-content {
    padding-top: 2px;
}

.hero h1,
.section-title h2,
.cta-section h2 {
    font-family: var(--serif);
    font-weight: 700;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 610px;
    font-size: clamp(36px, 4.3vw, 39px);
    line-height: 1.18;
}

.hero h1 span,
.section-title span {
    color: var(--accent);
}

.hero h1::after {
    content: "";
    display: block;
    width: 66px;
    height: 2px;
    margin: 8px 0 6px 24px;
    background: var(--accent);
}

.hero p {
    margin-bottom: 30px;
    color: #170d0a;
    font-family: var(--serif);
    font-size: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 214px;
    padding: 0 28px;
    border: 0;
    border-radius: 5px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn-primary {
    color: #fff;
    background: var(--accent);
    box-shadow: 0 3px 6px rgba(223, 53, 17, 0.2);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.btn-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.76);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-image,
.about-image {
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: var(--shadow);
}

.hero-image {
    height: 288px;
    margin-top: 24px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 356px;
    gap: 56px;
    width: 100%;
    padding: 50px calc((100% - 826px) / 2) 50px;
    background: var(--soft);
}

.about-content {
    padding-top: 52px;
}

.section-title {
    margin-bottom: 30px;
    padding-left: 12px;
    border-left: 3px solid #ff744a;
}

.section-title h2 {
    font-size: clamp(28px, 3.1vw, 31px);
    line-height: 1.25;
}

.section-title p {
    margin-top: 8px;
    color: var(--muted);
}

.about p {
    max-width: 505px;
    color: #171217;
    font-family: var(--serif);
    font-size: 15px;
    line-height: 1.25;
}

.about-image {
    height: 270px;
}

.products {
    padding: 12px 40px 42px;
    background: var(--paper);
}

.products-inner,
.faq .container {
    width: min(100%, 960px);
}

.products .section-title,
.faq .section-title {
    margin: 0 0 18px;
    padding-left: 0;
    border-left: 0;
    text-align: center;
}

.products .section-title h2,
.faq .section-title h2 {
    font-size: 28px;
    line-height: 1.2;
}

.products .section-title p,
.faq .section-title p {
    margin-top: 10px;
    color: #140d0a;
    font-family: var(--serif);
    font-size: 13px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    min-height: 560px;
    overflow: hidden;
    border: 1px solid #f0e8e4;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(30, 20, 14, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
    box-shadow: 0 10px 22px rgba(38, 24, 17, 0.1);
    transform: translateY(-2px);
}

.product-image-container {
    position: relative;
    height: 315px;
    padding: 12px;
    background: #faf8f6;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: zoom-in;
    transition: opacity 180ms ease;
}

.product-image.is-fading {
    opacity: 0.25;
}

.product-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 34px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    color: rgba(33, 22, 17, 0.52);
    background: rgba(255, 255, 255, 0.48);
    font-family: var(--serif);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.34;
    transform: translateY(-50%);
    transition: opacity 160ms ease, background 160ms ease, color 160ms ease;
}

.product-arrow:hover,
.product-card:hover .product-arrow {
    opacity: 0.78;
}

.product-arrow:hover {
    color: rgba(33, 22, 17, 0.86);
    background: rgba(255, 255, 255, 0.78);
}

.product-arrow-prev {
    left: 10px;
}

.product-arrow-next {
    right: 10px;
}

.product-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    z-index: 2;
    display: flex;
    gap: 6px;
    transform: translateX(-50%);
}

.product-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(33, 22, 17, 0.2);
}

.product-dot.is-active {
    background: var(--accent);
}

.product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 3;
    padding: 2px 8px;
    border-radius: 7px;
    color: #fff;
    background: #ff805d;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
}

.product-heart {
    position: absolute;
    top: 8px;
    right: 10px;
    z-index: 3;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #ff7658;
    background: #fff1ed;
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
}

.product-heart.is-selected {
    color: #df3511;
    background: #ffe4dc;
}

.product-info {
    display: flex;
    min-height: 242px;
    flex-direction: column;
    padding: 20px 20px 22px;
}

.product-name {
    min-height: 46px;
    margin-bottom: 8px;
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.12;
}

.product-price {
    margin-bottom: 14px;
    padding: 10px 12px;
    border: 1px solid rgba(223, 53, 17, 0.14);
    border-radius: 8px;
    background: linear-gradient(135deg, #fff7f3 0%, #fff 58%, #fff1e9 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 2px;
}

.price-original {
    color: #90817b;
    font-size: 14px;
    font-weight: 700;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.price-discount {
    padding: 3px 8px;
    border-radius: 999px;
    color: #fff;
    background: var(--accent);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 6px 12px rgba(223, 53, 17, 0.2);
}

.price-sale {
    color: var(--accent);
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.05;
}

.price-sale-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.free-ship-badge {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex: 0 0 auto;
    padding: 5px 9px;
    border-radius: 999px;
    color: #0f7438;
    background: #e9f9ef;
    border: 1px solid rgba(15, 116, 56, 0.16);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 7px 16px rgba(15, 116, 56, 0.12);
    animation: freeShipPulse 1800ms ease-in-out infinite;
}

.free-ship-badge::before {
    content: "";
    width: 14px;
    height: 14px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6.5A1.5 1.5 0 0 1 4.5 5h9A1.5 1.5 0 0 1 15 6.5V9h2.4a2 2 0 0 1 1.6.8l1.6 2.1c.26.35.4.77.4 1.2v3.4h-2.05a2.5 2.5 0 0 1-4.9 0h-4.1a2.5 2.5 0 0 1-4.9 0H3v-10Zm12 4V15h.55a2.5 2.5 0 0 1 3.7 0H19v-1.9L17.4 11H15ZM7.5 18a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm9 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.free-ship-badge::after {
    content: "";
    position: absolute;
    inset: -30% auto -30% -45%;
    width: 34%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
    transform: skewX(-18deg);
    animation: freeShipShine 2400ms ease-in-out infinite;
}

@keyframes freeShipPulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-1px);
    }
}

@keyframes freeShipShine {
    0% {
        left: -45%;
    }
    55%, 100% {
        left: 112%;
    }
}

.product-description {
    flex: 1;
    margin-bottom: 18px;
    padding: 12px 13px;
    border-left: 3px solid rgba(223, 53, 17, 0.36);
    border-radius: 6px;
    color: #120b08;
    background: #fff8f5;
}

.product-description-text {
    margin: 0;
    font-family: var(--serif);
    font-size: 15px;
    line-height: 1.58;
}

.description-toggle {
    display: inline-flex;
    margin-top: 8px;
    padding: 0;
    border: 0;
    color: var(--accent);
    background: transparent;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.description-toggle:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

.product-actions {
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(86px, 1fr);
    gap: 8px;
}

.product-card .btn {
    width: 100%;
    min-width: 0;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 5px;
    font-size: 13px;
}

.buy-now-button {
    padding: 0 10px;
    border: 1px solid rgba(223, 53, 17, 0.22);
    color: var(--accent);
    background: #fff5f0;
    box-shadow: none;
    white-space: nowrap;
}

.buy-now-button:hover {
    color: #fff;
    background: var(--accent);
    transform: translateY(-1px);
}

.faq {
    padding: 42px 40px 56px;
    background: var(--soft);
}

.faq .section-title {
    margin-bottom: 18px;
}

.faq .section-title h2 {
    font-size: 29px;
}

.faq .section-title h2::after {
    content: "";
    display: block;
    width: 66px;
    height: 2px;
    margin: 7px auto 0;
    background: var(--accent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    width: min(100%, 760px);
    margin: 0 auto;
}

.testimonial-card {
    min-height: 202px;
    display: flex;
    flex-direction: column;
    padding: 18px 16px 14px;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(30, 20, 14, 0.12);
}

.testimonial-card > p {
    flex: 1;
    color: #160d09;
    font-family: var(--serif);
    font-size: 12px;
    line-height: 1.45;
}

.stars {
    margin: 14px 0 6px;
    color: #ffab00;
    font-size: 13px;
    letter-spacing: 2px;
}

.customer {
    display: flex;
    align-items: center;
    gap: 9px;
}

.customer img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.customer strong,
.customer span {
    display: block;
    line-height: 1.2;
}

.customer strong {
    color: #150d0a;
    font-size: 12px;
}

.customer span {
    color: #5c5350;
    font-size: 11px;
}

.cta-section {
    padding: 60px 20px;
    color: #fff;
    background: #241b17;
    text-align: center;
}

.cta-section h2 {
    max-width: 620px;
    margin: 0 auto 24px;
    font-size: 30px;
    line-height: 1.25;
}

.footer {
    padding: 44px 20px 18px;
    color: #fff;
    background: #191413;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 8px;
    font-family: var(--serif);
    letter-spacing: 0.02em;
}

.footer-col p,
.footer-col a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    width: min(100%, 900px);
    margin: 30px auto 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    text-align: center;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(18, 10, 6, 0.36);
    opacity: 0;
    transition: opacity 220ms ease;
}

.cart-open .cart-overlay {
    opacity: 1;
}

.mini-cart {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    width: min(75vw, 760px);
    height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    background: #fffdfb;
    box-shadow: -22px 0 42px rgba(25, 12, 7, 0.18);
    transform: translateX(104%);
    transition: transform 260ms ease;
}

.cart-open .mini-cart {
    transform: translateX(0);
}

body.cart-open {
    overflow: hidden;
}

.mini-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px 18px;
    border-bottom: 1px solid var(--line);
}

.mini-cart-eyebrow {
    display: block;
    margin-bottom: 4px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.mini-cart-header h2 {
    font-family: var(--serif);
    font-size: 34px;
    line-height: 1;
}

.mini-cart-close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: var(--ink);
    background: #fff3ee;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.mini-cart-body {
    overflow-y: auto;
    padding: 22px 28px;
}

.cart-items {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
}

.cart-empty {
    display: grid;
    gap: 6px;
    padding: 22px;
    border: 1px dashed rgba(223, 53, 17, 0.28);
    border-radius: 8px;
    color: var(--muted);
    background: #fff8f5;
}

.cart-empty strong {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 21px;
}

.mini-cart-item {
    display: grid;
    grid-template-columns: 86px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(30, 20, 14, 0.05);
}

.mini-cart-item img {
    width: 86px;
    height: 86px;
    border-radius: 7px;
    object-fit: contain;
    background: #faf8f6;
}

.mini-cart-item-info h3 {
    margin-bottom: 5px;
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.15;
}

.mini-cart-item-price {
    display: block;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 18px;
    font-weight: 800;
}

.quantity-controls {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fffaf7;
}

.quantity-controls button {
    width: 32px;
    height: 30px;
    border: 0;
    color: var(--accent);
    background: transparent;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
}

.quantity-controls strong {
    min-width: 30px;
    text-align: center;
}

.remove-cart-item {
    align-self: start;
    border: 0;
    color: #8a746c;
    background: transparent;
    font-weight: 700;
    cursor: pointer;
}

.remove-cart-item:hover {
    color: var(--accent);
}

.checkout-form {
    display: grid;
    gap: 13px;
    padding: 18px;
    border-radius: 8px;
    background: var(--soft);
}

.checkout-form h3 {
    font-family: var(--serif);
    font-size: 24px;
}

.checkout-form label {
    display: grid;
    gap: 6px;
    color: #251813;
    font-size: 13px;
    font-weight: 800;
}

.address-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.address-fields label:first-child,
.address-fields label:last-child {
    grid-column: 1 / -1;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
    width: 100%;
    border: 1px solid #e4d8d2;
    border-radius: 7px;
    padding: 11px 12px;
    color: var(--ink);
    background: #fff;
    font: inherit;
    resize: vertical;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
    outline: 2px solid rgba(223, 53, 17, 0.22);
    border-color: rgba(223, 53, 17, 0.5);
}

.checkout-form select {
    cursor: pointer;
}

.mini-cart-footer {
    padding: 18px 28px 24px;
    border-top: 1px solid var(--line);
    background: #fff;
}

.cart-total-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px;
}

.cart-total-row span {
    color: var(--muted);
    font-weight: 800;
}

/* Floating Call Button */
.floating-call-button {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 95;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(223, 53, 17, 0.35);
    transition: all 240ms ease;
    text-decoration: none;
    animation: floatIn 400ms ease-out, pulse 2s ease-in-out infinite;
}

.floating-call-button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(223, 53, 17, 0.5) 0%, transparent 70%);
    animation: wave 2.5s ease-out infinite;
}

.floating-call-button::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(223, 53, 17, 0.3) 0%, transparent 70%);
    animation: wave 2.5s ease-out 0.8s infinite;
}

.floating-call-button svg {
    position: relative;
    z-index: 2;
    animation: iconPulse 2s ease-in-out infinite;
}

.floating-call-button:hover {
    background: var(--accent-dark);
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 12px 32px rgba(223, 53, 17, 0.45);
    animation: floatHover 0.6s ease infinite;
}

.floating-call-button:hover::before,
.floating-call-button:hover::after {
    animation: waveHover 1.5s ease-out infinite;
}

.floating-call-button:active {
    transform: scale(0.95);
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translate(80px, 80px) scale(0.5);
    }
    to {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(223, 53, 17, 0.35);
    }
    50% {
        box-shadow: 0 8px 32px rgba(223, 53, 17, 0.5);
    }
}

@keyframes wave {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

@keyframes waveHover {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(-5deg);
    }
}

@keyframes floatHover {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
}

@media (max-width: 640px) {
    .floating-call-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

.cart-total-row strong {
    color: var(--accent);
    font-family: var(--serif);
    font-size: 34px;
    line-height: 1;
}

.checkout-button,
.back-to-page {
    width: 100%;
}

.checkout-button {
    position: relative;
}

.btn-loading {
    display: none;
}

.checkout-button.is-loading .btn-text {
    display: none;
}

.checkout-button.is-loading .btn-loading {
    display: inline;
}

.checkout-button:disabled {
    cursor: wait;
    opacity: 0.78;
}

.form-success {
    display: none;
    margin-top: 2px;
    padding: 10px 12px;
    border-radius: 7px;
    color: #1f6b3a;
    background: #eaf8ef;
    font-size: 13px;
    font-weight: 800;
}

.form-success.is-visible {
    display: block;
}

.hidden-iframe {
    position: absolute;
    width: 0;
    height: 0;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

.back-to-page {
    margin-top: 10px;
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 5px;
    color: #241813;
    background: #fff;
    font-weight: 800;
    cursor: pointer;
}

.back-to-page:hover {
    border-color: rgba(223, 53, 17, 0.25);
    color: var(--accent);
    background: #fff8f5;
}

.fly-cart-image {
    position: fixed;
    z-index: 120;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    pointer-events: none;
    box-shadow: 0 18px 32px rgba(34, 18, 10, 0.22);
    transition: left 680ms cubic-bezier(.2,.75,.18,1), top 680ms cubic-bezier(.2,.75,.18,1), width 680ms ease, height 680ms ease, opacity 680ms ease, transform 680ms ease;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: grid;
    place-items: center;
    padding: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
}

.lightbox-open .image-lightbox {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-open {
    overflow: hidden;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(18, 10, 6, 0.74);
    cursor: zoom-out;
}

.lightbox-panel {
    position: relative;
    z-index: 1;
    width: min(94vw, 1080px);
    height: min(88vh, 760px);
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: center;
    border-radius: 12px;
    background: rgba(255, 253, 251, 0.96);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
    overflow: hidden;
}

.lightbox-image {
    width: 100%;
    height: 100%;
    max-height: calc(88vh - 70px);
    padding: 22px 62px 10px;
    object-fit: contain;
    transition: opacity 180ms ease;
}

.lightbox-image.is-fading {
    opacity: 0.35;
}

.lightbox-close,
.lightbox-arrow {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    color: #241813;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
    color: #fff;
    background: var(--accent);
    transform: translateY(-1px);
}

.lightbox-close {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 32px;
    line-height: 1;
}

.lightbox-arrow {
    top: 50%;
    width: 46px;
    height: 58px;
    font-family: var(--serif);
    font-size: 46px;
    line-height: 1;
    transform: translateY(-50%);
}

.lightbox-arrow:hover {
    transform: translateY(-50%) translateY(-1px);
}

.lightbox-prev {
    left: 16px;
}

.lightbox-next {
    right: 16px;
}

.lightbox-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 58px;
    padding: 13px 22px;
    border-top: 1px solid var(--line);
    color: #241813;
    background: #fff;
}

.lightbox-caption strong {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.15;
}

.lightbox-caption span {
    flex: 0 0 auto;
    color: var(--accent);
    font-weight: 900;
}

.call-popup {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 17px 0 14px;
    border-radius: 999px;
    color: #fff;
    background: #10a64a;
    box-shadow: 0 14px 30px rgba(16, 166, 74, 0.32);
    font-size: 14px;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    animation: callPulse 1800ms ease-in-out infinite;
}

.call-popup:hover {
    color: #fff;
    background: #0c8e3e;
    box-shadow: 0 18px 36px rgba(16, 166, 74, 0.42);
    transform: translateY(-2px);
}

.call-popup svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes callPulse {
    0%, 100% {
        box-shadow: 0 14px 30px rgba(16, 166, 74, 0.32), 0 0 0 0 rgba(16, 166, 74, 0.3);
    }
    50% {
        box-shadow: 0 14px 30px rgba(16, 166, 74, 0.32), 0 0 0 11px rgba(16, 166, 74, 0);
    }
}

@media (max-width: 920px) {
    .header-container,
    .hero,
    .products-inner,
    .container {
        width: calc(100% - 32px);
    }

    .about {
        padding-right: 16px;
        padding-left: 16px;
    }

    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
}

@media (max-width: 760px) {
    .header {
        height: auto;
    }

    .header-container {
        flex-direction: column;
        gap: 12px;
        padding: 12px 0;
    }

    .nav {
        width: 100%;
        justify-content: space-around;
        gap: 10px;
        font-size: 14px;    
        flex-wrap: wrap;
    }

    .nav a {
        flex: 1;
        text-align: center;
        white-space: normal;
    }

    .hero,
    .about {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero {
        padding: 36px 0;
    }

    .hero-image,
    .about-image {
        height: auto;
        aspect-ratio: 4 / 3;
        margin-top: 0;
    }

    .about-content {
        padding-top: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .products {
        padding-right: 16px;
        padding-left: 16px;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .product-description {
        min-height: 0;
    }

    .mini-cart {
        width: min(92vw, 520px);
    }

    .mini-cart-header,
    .mini-cart-body,
    .mini-cart-footer {
        padding-right: 18px;
        padding-left: 18px;
    }

    .mini-cart-item {
        grid-template-columns: 72px 1fr;
    }

    .mini-cart-item img {
        width: 72px;
        height: 72px;
    }

    .address-fields {
        grid-template-columns: 1fr;
    }

    .remove-cart-item {
        grid-column: 2;
        justify-self: start;
    }

    .call-popup {
        right: 14px;
        bottom: 14px;
        min-height: 48px;
        padding-right: 14px;
        font-size: 13px;
    }

    .image-lightbox {
        padding: 14px;
    }

    .lightbox-panel {
        width: 96vw;
        height: 82vh;
    }

    .lightbox-image {
        max-height: calc(82vh - 76px);
        padding: 58px 14px 10px;
    }

    .lightbox-arrow {
        width: 38px;
        height: 48px;
        font-size: 38px;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }

    .lightbox-caption {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
        min-height: 76px;
        padding: 11px 14px;
    }

    .lightbox-caption strong {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}
