/* ========================================
   HERO - Full Width Dark
======================================== */
.hero-full {
    height: 100vh;
    min-height: clamp(500px, 80vh, 800px);
    background-image: url('../images/hero-desktop.png');
    background-size: cover;
    background-position: center right;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-full::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.6) 40%,
            rgba(0, 0, 0, 0.1) 100%);
}

.hero-overlay-content {
    position: relative;
    z-index: 10;
    max-width: 50%;
    padding-left: 0;
    padding-top: 100px;
    text-align: left;
    color: var(--white);
}


.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-overlay-content p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-weight: 300;
}

.hero-poetic p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    border-left: none;
    padding-left: 0;
}

@media (max-width: 900px) {
    .hero-full {
        background-image: url('../images/hero-mobile.png');
        background-position: center;
        text-align: center;
        justify-content: center;
        min-height: clamp(450px, 70vh, 600px);
    }

    .hero-overlay-content {
        max-width: 100%;
        padding: 120px 20px 60px;
        text-align: center;
    }

    .hero-full::before {
        background: rgba(0, 0, 0, 0.7);
    }

    .hero-poetic p {
        border-left: none;
        border-top: none;
        padding-left: 0;
        padding-top: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-full {
        min-height: clamp(400px, 85vh, 550px);
    }

    .hero-overlay-content {
        padding: 100px 15px 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .hero-overlay-content p {
        font-size: 1rem;
    }

    .hero-poetic p {
        font-size: 1rem;
    }
}

/* ========================================
   OFFERINGS SECTION
======================================== */
.offerings-section {
    display: flex;
    flex-direction: column;
}

.offering-row {
    display: flex;
    width: 100%;
    min-height: 400px;
    background-color: #fff;
    flex-direction: row;
}

/* Image Half */
.offering-image {
    width: 50%;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.offering-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.offering-row:hover .offering-image img {
    transform: scale(1.05);
}

/* Content Half */
.offering-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px;
    background-color: #fff;
    box-sizing: border-box;
}

.offering-content h3 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: var(--black);
    margin-bottom: 20px;
    font-weight: 400;
}

.offering-content p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 35px;
    max-width: 480px;
}

/* Criss-Cross Logic: Force Order using !important */
/* Normal Logic: Image (Left) - Content (Right) */
.offering-row .offering-image {
    order: 1 !important;
}

.offering-row .offering-content {
    order: 2 !important;
}

/* Reverse Logic: Content (Left) - Image (Right) */
.offering-row.reverse .offering-image {
    order: 2 !important;
}

.offering-row.reverse .offering-content {
    order: 1 !important;
}

/* Links with Arrow */
.text-link {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    position: relative;
    padding-bottom: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.text-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.text-link:hover {
    color: var(--brand-red);
}

.text-link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 900px) {

    .offering-row,
    .offering-row.reverse {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }

    /* Reset Order for Mobile - Image First */
    .offering-row .offering-image,
    .offering-row.reverse .offering-image,
    .offering-row .offering-content,
    .offering-row.reverse .offering-content {
        order: initial !important;
    }

    .offering-image,
    .offering-content {
        width: 100%;
        height: auto;
    }

    .offering-image {
        height: 350px;
    }

    .offering-content {
        padding: 60px 30px;
        align-items: center;
        text-align: center;
    }
}

/* ========================================
   TESTIMONIALS
======================================== */
.testimonials-section {
    padding-top: 100px;
    margin-top: 0;
    background: #fff;
    overflow: hidden;
    /* For slider */
}

.slider {
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider::before,
.slider::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 200px;
    position: absolute;
    width: 200px;
    z-index: 2;
    top: 0;
}

.slider::after {
    right: 0;
    transform: rotateZ(180deg);
}

.slider::before {
    left: 0;
}

.slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(350px * 14);
}

.slide {
    height: 200px;
    width: 350px;
    padding: 0 25px;
    display: flex;
    align-items: center;
}

.testimonial-card {
    background: transparent;
    padding: 0 30px;
    width: 100%;
    position: relative;
    text-align: center;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--grey-dark);
    line-height: 1.5;
    margin-bottom: 20px;
}

.testimonial-author {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-350px * 7));
    }
}

/* Testimonials Mobile Responsive */
@media (max-width: 576px) {
    .slide {
        width: 280px;
        padding: 0 15px;
    }

    .slide-track {
        width: calc(280px * 14);
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .slider::before,
    .slider::after {
        width: 80px;
    }
}

@keyframes scroll-mobile {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-280px * 7));
    }
}

@media (max-width: 576px) {
    .slide-track {
        animation: scroll-mobile 35s linear infinite;
    }
}

/* ========================================
   NEW PRODUCTS SECTION
======================================== */
.new-products-section {
    padding-bottom: 0;
}

.new-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 1100px) {
    .new-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ========================================
   DELIVERY & PICKUP SECTION
======================================== */
.delivery-section {
    padding: var(--section-gap) 0;
    background: #fff;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Single card - centered */
.delivery-grid.delivery-grid-single {
    grid-template-columns: 1fr;
    max-width: 450px;
}

.delivery-card {
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 4px;
    text-align: left;
}

.delivery-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-red);
    display: block;
    margin-bottom: 10px;
}

.delivery-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 400;
}

.delivery-desc {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.delivery-pricing {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.delivery-pricing .price-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.95rem;
    color: #444;
}

.delivery-pricing .price-row:last-child {
    border-bottom: none;
}

.delivery-pricing .price-row span:last-child {
    font-weight: 600;
    color: var(--black);
}

.delivery-info p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.delivery-info p:last-child {
    margin-bottom: 0;
}

.delivery-info strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #999;
    margin-bottom: 3px;
    font-weight: 500;
}

.delivery-info a {
    color: var(--black);
}

.delivery-info a:hover {
    color: var(--brand-red);
}

.delivery-note {
    text-align: center;
    margin-top: 50px;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: #666;
}

@media (max-width: 768px) {
    .delivery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .delivery-card {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .delivery-section {
        padding: 80px 0;
    }

    .delivery-card {
        padding: 25px;
    }

    .delivery-card h3 {
        font-size: 1.5rem;
    }
}

/* ========================================
   HERO CTA GROUP - Clean Professional
======================================== */
.hero-cta-group {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.btn-cta-main {
    background: var(--brand-red) !important;
    border: 1px solid var(--brand-red) !important;
    color: #fff !important;
    padding: 14px 28px !important;
    font-size: 0.8rem !important;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.2s ease;
}

.btn-cta-main:hover {
    background: var(--brand-red-dark) !important;
    border-color: var(--brand-red-dark) !important;
    transform: none;
}

.btn-cta-secondary {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    color: #fff !important;
    padding: 14px 28px !important;
    font-size: 0.8rem !important;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.2s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #fff !important;
}

@media (max-width: 576px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-cta-main,
    .btn-cta-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   TRUST STRIP - Clean Professional
======================================== */
.trust-strip {
    background: var(--near-black, #1a1a1a);
    padding: 16px 0;
    border-bottom: none;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

.trust-icon {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
}

.trust-icon svg {
    width: 18px;
    height: 18px;
}

.trust-text {
    font-weight: 500;
}

@media (max-width: 768px) {
    .trust-strip {
        display: none;
    }

    .trust-items {
        gap: 20px 30px;
    }

    .trust-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .trust-items {
        justify-content: flex-start;
        gap: 15px 20px;
    }

    .trust-item {
        flex: 0 0 calc(50% - 10px);
    }
}

/* ========================================
   ORDER CUTOFF COUNTDOWN BANNER - Clean
======================================== */
.cutoff-banner {
    background: var(--surface);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.cutoff-text {
    margin: 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--grey-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cutoff-icon {
    display: flex;
    align-items: center;
    color: var(--grey-muted);
}

.cutoff-icon svg {
    width: 16px;
    height: 16px;
}

#cutoff-countdown {
    color: var(--brand-red);
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 576px) {
    .cutoff-text {
        font-size: 0.8rem;
    }

    #cutoff-countdown {
        font-size: 0.9rem;
    }
}