/* ========================================
   HOME PAGE STYLES
   ======================================== */

/* ========================================
   HERO SLIDER SECTION
   ======================================== */

.hero-slider {
    position: relative;
    aspect-ratio: 21 / 9;
    overflow: hidden;
    background: var(--brown-dark);
}

@media (max-width: 900px) {
    .hero-slider {
        aspect-ratio: 16 / 13;
    }
}

@media (max-width: 600px) {
    .hero-slider {
        aspect-ratio: 9 / 13;
        max-height: 100vh;
    }
}

/* Individual Slides */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    height: 100%;
}

@media (max-width: 600px) {
    .hero-slide {
        padding: 80px 0 100px;
        align-items: center;
    }
}

/* Slide Backgrounds */
.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Slide 1 - Full Background Video Only */
.slide-bg-1 {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.slide-video {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    width: auto;
    min-width: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

@media (max-width: 600px) {
    .slide-video {
        width: 100%;
        height: auto;
        min-height: 100%;
    }
}

/* Vignette Overlay - darker edges, clear center */
.slide-bg-1::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 80%,
        rgba(45, 20, 8, 0.65) 90%,
        rgba(45, 20, 8, 0.8) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Slide 2 - Background Image */
.slide-bg-2 {
    background-image: url('../img/hero-bg-2.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 600px) {
    .slide-bg-2 {
        background-position: center center;
    }
}

.slide-bg-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 40%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

/* Slide 3 - Gradient Background */
.slide-bg-3 {
    background: linear-gradient(135deg, #0d0705 0%, #2c1810 50%, var(--brown-dark) 100%);
}

.slide-bg-3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(250,179,3,0.08) 0%, transparent 60%),
        radial-gradient(circle at 90% 80%, rgba(226,0,26,0.1) 0%, transparent 40%);
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-grid > div:first-child {
        order: 2;
    }

    .hero-grid > div:last-child {
        order: 1;
    }
}

@media (max-width: 600px) {
    .hero-grid {
        gap: 20px;
        padding: 0 10px;
    }
}

/* Hero Content */
.hero-content {
    animation: slideInLeft 0.8s ease forwards;
}

.hero-slide:not(.active) .hero-content {
    animation: none;
    opacity: 0;
    transform: translateX(-50px);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Badge */
.hero-badge {
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .hero-badge {
        margin-bottom: 12px;
    }
}

.badge-animated {
    animation: pulse 2s ease-in-out infinite;
    font-size: 0.75rem;
}

@media (max-width: 600px) {
    .badge-animated {
        font-size: 0.65rem;
        padding: 6px 12px;
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-gold {
    background: linear-gradient(135deg, var(--gold), #d4a004) !important;
    color: var(--brown-dark) !important;
}

.badge-red {
    background: linear-gradient(135deg, var(--red), #c40020) !important;
}

/* Hero Title */
.hero-title {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.25;
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }
}

.hero-title span {
    color: var(--gold);
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}

@media (max-width: 600px) {
    .hero-title span::after {
        height: 1px;
        bottom: -2px;
    }
}

/* Hero Text */
.hero-text {
    font-size: 0.95rem;
    color: var(--gold-light);
    margin-bottom: 25px;
    max-width: 420px;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .hero-text {
        font-size: 0.8rem;
        margin-bottom: 18px;
        line-height: 1.5;
        max-width: 100%;
    }
}

/* Hero Buttons */
.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .hero-btns {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero-btns {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
    }
}

.hero-btns .btn {
    padding: 12px 28px;
    font-size: 0.8rem;
}

@media (max-width: 600px) {
    .hero-btns .btn {
        padding: 10px 20px;
        font-size: 0.7rem;
    }
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #d4a004);
    color: var(--brown-dark);
    font-weight: 700;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #d4a004, var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(250, 179, 3, 0.3);
}

/* Hero Stats (Slide 3) */
.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 900px) {
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero-stats {
        gap: 15px;
        margin-top: 18px;
        padding-top: 15px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 10px;
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    display: inline;
}

@media (max-width: 600px) {
    .stat-number {
        font-size: 1.3rem;
    }
}

.stat-plus {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
}

@media (max-width: 600px) {
    .stat-plus {
        font-size: 0.8rem;
    }
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--gold-light);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    .stat-label {
        font-size: 0.55rem;
        letter-spacing: 0.3px;
        margin-top: 2px;
    }
}

/* ========================================
   JAR / PRODUCT VISUALS
   ======================================== */

.jar-wrap {
    display: flex;
    justify-content: center;
    animation: slideInRight 0.8s ease forwards;
}

.hero-slide:not(.active) .jar-wrap {
    animation: none;
    opacity: 0;
    transform: translateX(50px);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.jar-box {
    position: relative;
    width: 350px;
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 900px) {
    .jar-box {
        width: 280px;
    }
}

@media (max-width: 600px) {
    .jar-box {
        width: 180px;
    }
}

@media (max-width: 400px) {
    .jar-box {
        width: 150px;
    }
}

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

.jar-box-rotate {
    animation: floatRotate 6s ease-in-out infinite;
}

@keyframes floatRotate {
    0%, 100% { 
        transform: translateY(0) rotate(-3deg); 
    }
    50% { 
        transform: translateY(-15px) rotate(3deg); 
    }
}

.jar-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 60px rgba(0,0,0,0.5));
}

@media (max-width: 600px) {
    .jar-img {
        filter: drop-shadow(0 15px 30px rgba(0,0,0,0.4));
    }
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.95);
    padding: 10px 16px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: floatBadge 4s ease-in-out infinite;
}

@media (max-width: 600px) {
    .floating-badge {
        padding: 6px 10px;
        gap: 5px;
        border-radius: 30px;
    }
}

.turkey-badge {
    top: 20%;
    right: -15px;
}

@media (max-width: 600px) {
    .turkey-badge {
        top: 10%;
        right: -5px;
    }
}

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

.floating-badge img {
    width: 24px;
    height: auto;
    border-radius: 3px;
}

@media (max-width: 600px) {
    .floating-badge img {
        width: 16px;
        border-radius: 2px;
    }
}

.floating-badge span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--brown-dark);
    line-height: 1.3;
}

@media (max-width: 600px) {
    .floating-badge span {
        font-size: 0.5rem;
        line-height: 1.2;
    }
}

/* Products Showcase (Slide 3) */
.products-showcase {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    animation: none;
    padding: 20px 0;
}

@media (max-width: 600px) {
    .products-showcase {
        gap: 6px;
        padding: 10px 0;
    }
}

.showcase-item {
    transition: transform 0.5s ease;
}

.showcase-item img {
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

@media (max-width: 600px) {
    .showcase-item img {
        filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    }
}

.item-1 {
    animation: showcaseFloat1 5s ease-in-out infinite;
}

.item-1 img {
    max-height: 200px;
    width: auto;
}

@media (max-width: 600px) {
    .item-1 img {
        max-height: 100px;
    }
}

.item-2 {
    animation: showcaseFloat2 5s ease-in-out infinite 0.5s;
    transform: translateY(-20px);
}

.item-2 img {
    max-height: 240px;
    width: auto;
}

@media (max-width: 600px) {
    .item-2 {
        transform: translateY(-10px);
    }
    
    .item-2 img {
        max-height: 120px;
    }
}

.item-3 {
    animation: showcaseFloat3 5s ease-in-out infinite 1s;
}

.item-3 img {
    max-height: 160px;
    width: auto;
}

@media (max-width: 600px) {
    .item-3 img {
        max-height: 80px;
    }
}

@keyframes showcaseFloat1 {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(-3deg); }
}

@keyframes showcaseFloat2 {
    0%, 100% { transform: translateY(-20px); }
    50% { transform: translateY(-35px); }
}

@keyframes showcaseFloat3 {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

/* ========================================
   SLIDER NAVIGATION
   ======================================== */

.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

@media (max-width: 600px) {
    .slider-nav {
        bottom: 25px;
        gap: 10px;
    }
}

/* Arrow Buttons */
.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

@media (max-width: 600px) {
    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
        border-width: 1px;
    }
}

.slider-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--brown-dark);
    transform: scale(1.1);
}

.slider-arrow:active {
    transform: scale(0.95);
}

/* Dots Navigation */
.slider-dots {
    display: flex;
    gap: 12px;
}

@media (max-width: 600px) {
    .slider-dots {
        gap: 6px;
    }
}

.slider-dot {
    width: 50px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

@media (max-width: 600px) {
    .slider-dot {
        width: 28px;
        height: 4px;
        border-radius: 2px;
    }
}

.slider-dot:hover {
    background: rgba(255,255,255,0.5);
}

.slider-dot.active {
    background: rgba(255,255,255,0.3);
}

.dot-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--gold);
    border-radius: 3px;
    transition: width 0.1s linear;
}

@media (max-width: 600px) {
    .dot-progress {
        border-radius: 2px;
    }
}

.slider-dot.active .dot-progress {
    animation: progressBar 6s linear forwards;
}

@keyframes progressBar {
    from { width: 0; }
    to { width: 100%; }
}

/* Slide Counter */
.slide-counter {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: 'Montserrat', sans-serif;
    z-index: 10;
}

@media (max-width: 600px) {
    .slide-counter {
        bottom: 25px;
        right: 15px;
        gap: 2px;
    }
}

.current-slide {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}

@media (max-width: 600px) {
    .current-slide {
        font-size: 1.2rem;
    }
}

.separator {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    margin: 0 4px;
}

@media (max-width: 600px) {
    .separator {
        font-size: 0.7rem;
        margin: 0 2px;
    }
}

.total-slides {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
}

@media (max-width: 600px) {
    .total-slides {
        font-size: 0.7rem;
    }
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

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

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.feature-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all var(--transition-base);
}

@media (max-width: 600px) {
    .feature-card {
        padding: 25px 20px;
        border-radius: 16px;
    }
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.1);
    box-shadow: var(--shadow-lg);
}

.feature-card-light {
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.feature-card-light:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 18px;
}

@media (max-width: 600px) {
    .feature-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
}

.feature-card h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
}

.feature-card-light h3 {
    color: var(--brown-dark);
}

.feature-card p {
    color: var(--gold-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .feature-card p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

.feature-card-light p {
    color: var(--brown-med);
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .about-grid {
        gap: 30px;
    }
}

.about-img-wrap {
    position: relative;
}

.about-img {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--brown-med), var(--brown-dark));
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

@media (max-width: 600px) {
    .about-img {
        border-radius: 20px;
    }
}

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

.about-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--white);
    box-shadow: var(--shadow-red);
    line-height: 1.3;
    text-align: center;
}

@media (max-width: 600px) {
    .about-badge {
        width: 70px;
        height: 70px;
        font-size: 0.6rem;
        bottom: -10px;
        right: -10px;
    }
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */

.products-section {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .products-grid {
        max-width: 100%;
        gap: 20px;
    }
}

.product-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

@media (max-width: 600px) {
    .product-card {
        border-radius: 16px;
    }
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--red);
}

.product-card-featured {
    border-color: var(--red);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.product-card-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

@media (max-width: 900px) {
    .product-card-featured {
        transform: scale(1);
    }
    
    .product-card-featured:hover {
        transform: translateY(-10px);
    }
}

.product-image {
    position: relative;
    padding: 20px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 600px) {
    .product-image {
        padding: 15px;
    }
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform var(--transition-base);
}

.product-card:hover .product-image img {
    transform: scale(1.1) rotate(-3deg);
}

.product-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--red);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    .product-tag {
        padding: 4px 10px;
        font-size: 0.55rem;
        top: 10px;
        right: 10px;
    }
}

.product-tag.tag-gold {
    background: var(--gold);
    color: var(--brown-dark);
}

.product-content {
    padding: 25px 30px 30px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (max-width: 600px) {
    .product-content {
        padding: 20px;
    }
}

.product-content h3 {
    font-size: 1.3rem;
    color: var(--brown-dark);
    margin-bottom: 5px;
}

@media (max-width: 600px) {
    .product-content h3 {
        font-size: 1.1rem;
    }
}

.product-size {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .product-size {
        font-size: 0.95rem;
    }
}

.product-desc {
    font-size: 0.9rem;
    color: var(--brown-med);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

@media (max-width: 600px) {
    .product-desc {
        font-size: 0.8rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.75rem;
}

@media (max-width: 600px) {
    .btn-sm {
        padding: 8px 18px;
        font-size: 0.7rem;
    }
}

.about-content h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    color: var(--brown-dark);
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .about-content h2 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
}

.about-content h2 span {
    color: var(--red);
}

.about-content > p {
    color: var(--brown-med);
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 600px) {
    .about-content > p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 12px;
    }
}

/* ========================================
   TAGS
   ======================================== */

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px 0;
}

@media (max-width: 600px) {
    .tags {
        gap: 8px;
        margin: 18px 0;
    }
}

.tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--cream);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--brown-dark);
    font-weight: 600;
}

@media (max-width: 600px) {
    .tag {
        padding: 8px 12px;
        font-size: 0.7rem;
        gap: 5px;
    }
}

.tag-icon {
    color: var(--red);
    font-weight: 700;
}

/* ========================================
   EXPERIENCE CARDS
   ======================================== */

.exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

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

@media (max-width: 600px) {
    .exp-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.exp-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
}

@media (max-width: 600px) {
    .exp-card {
        border-radius: 16px;
        aspect-ratio: 16/9;
    }
}

.exp-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brown-dark), var(--brown-light));
    transition: transform var(--transition-slow);
}

.exp-card:hover .exp-bg {
    transform: scale(1.1);
}

.exp-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

@media (max-width: 600px) {
    .exp-content {
        padding: 20px;
    }
}

.exp-icon {
    font-size: 3.5rem;
    margin-bottom: 18px;
}

@media (max-width: 600px) {
    .exp-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
}

.exp-content h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .exp-content h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
}

.exp-content p {
    color: var(--gold-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .exp-content p {
        font-size: 0.75rem;
    }
}

.exp-meta {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--gold-light);
}

@media (max-width: 600px) {
    .exp-meta {
        gap: 10px;
        margin-top: 10px;
        font-size: 0.7rem;
    }
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta {
    background: var(--red);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 600px) {
    .cta {
        padding: 50px 0;
    }
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta > .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    color: var(--white);
    margin-bottom: 12px;
}

@media (max-width: 600px) {
    .cta h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
}

.cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 600px) {
    .cta p {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
}

/* ========================================
   FOOTER CONTACT EMAIL
   ======================================== */

.footer-contact-email {
    margin: 15px 0;
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .footer-contact-email {
        font-size: 0.85rem;
    }
}

.footer-contact-email i {
    color: var(--gold);
    margin-right: 8px;
}

.footer-contact-email a {
    color: var(--gold-light);
    transition: color 0.3s ease;
}

.footer-contact-email a:hover {
    color: var(--gold);
}

/* ========================================
   PAGE HEADER (Products, About, etc.)
   ======================================== */

.page-header {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-med) 100%);
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 600px) {
    .page-header {
        padding: 100px 0 40px;
    }
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(250,179,3,0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(226,0,26,0.1) 0%, transparent 40%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header .badge {
    margin-bottom: 15px;
}

.page-header-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .page-header-logo {
        width: 80px;
        margin-bottom: 15px;
    }
}

/* Page Header with Image Background */
.page-header-image {
    background: url('../img/page-header-products.jpg') center center / cover no-repeat;
    position: relative;
}

.page-header-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(45, 25, 15, 0.85) 0%,
        rgba(74, 44, 23, 0.8) 50%,
        rgba(45, 25, 15, 0.85) 100%
    );
}

.page-header-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 40%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

@media (max-width: 600px) {
    .page-header .badge {
        margin-bottom: 10px;
        font-size: 0.65rem;
    }
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 15px;
}

@media (max-width: 600px) {
    .page-header h1 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
}

.page-header h1 span {
    color: var(--gold);
}

.page-header p {
    font-size: 1.05rem;
    color: var(--gold-light);
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .page-header p {
        font-size: 0.85rem;
    }
}

/* ========================================
   PRODUCTS PAGE SPECIFIC
   ======================================== */

.products-page {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (max-width: 600px) {
    .products-page {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.products-grid-full {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
}

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

@media (max-width: 600px) {
    .products-grid-full {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 0 auto;
    }
}

.products-page .product-card {
    cursor: pointer;
}

.products-page .product-card:hover {
    transform: translateY(-10px);
}

/* ========================================
   PRODUCT POPUP MODAL
   ======================================== */

.product-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

@media (max-width: 600px) {
    .product-popup-overlay {
        padding: 15px;
    }
}

.product-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.product-popup {
    background: var(--white);
    border-radius: 24px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

@media (max-width: 600px) {
    .product-popup {
        border-radius: 16px;
        max-height: 85vh;
    }
}

.product-popup-overlay.active .product-popup {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brown-dark);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    z-index: 10;
}

@media (max-width: 600px) {
    .popup-close {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        top: 10px;
        right: 10px;
    }
}

.popup-close:hover {
    background: var(--red);
    transform: rotate(90deg);
}

.popup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

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

.popup-image {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 600px) {
    .popup-image {
        padding: 30px 20px;
    }
}

.popup-image img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    animation: popupFloat 3s ease-in-out infinite;
}

@media (max-width: 600px) {
    .popup-image img {
        max-height: 180px;
    }
}

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

.popup-details {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 600px) {
    .popup-details {
        padding: 25px 20px 30px;
        text-align: center;
    }
}

.popup-details h2 {
    font-size: 1.8rem;
    color: var(--brown-dark);
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .popup-details h2 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
}

.popup-weight {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 15px 20px;
    background: var(--cream);
    border-radius: 12px;
}

@media (max-width: 600px) {
    .popup-weight {
        justify-content: center;
        padding: 12px 15px;
        margin-bottom: 20px;
        gap: 8px;
    }
}

.weight-label {
    font-size: 0.9rem;
    color: var(--brown-med);
}

@media (max-width: 600px) {
    .weight-label {
        font-size: 0.8rem;
    }
}

.weight-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--red);
}

@media (max-width: 600px) {
    .weight-value {
        font-size: 1.1rem;
    }
}

.popup-details .btn-lg {
    padding: 16px 32px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 600px) {
    .popup-details .btn-lg {
        padding: 12px 24px;
        font-size: 0.8rem;
        gap: 8px;
    }
}

.popup-details .btn-lg i {
    font-size: 1rem;
}

@media (max-width: 600px) {
    .popup-details .btn-lg i {
        font-size: 0.85rem;
    }
}

/* ========================================
   CTA BUTTON WHITE VARIANT
   ======================================== */

.btn-white {
    background: var(--white);
    color: var(--red);
    font-weight: 700;
}

.btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}




/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red);
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: flex-start;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
        padding-left: 60px;
    }
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--white);
    box-shadow: var(--shadow-red);
    z-index: 2;
}

@media (max-width: 768px) {
    .timeline-marker {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 0.65rem;
    }
}

.timeline-content {
    width: calc(50% - 60px);
    background: var(--white);
    padding: 28px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .timeline-content {
        width: 100%;
    }
}

.timeline-content h3 {
    font-size: 1.15rem;
    color: var(--brown-dark);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--brown-med);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

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

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

.stat-item h3 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--gold-light);
    font-size: 0.95rem;
    font-weight: 600;
}

/* Values Section - reuses feature-card styles from home.css */

/* Section Logo (replaces badge) */
.section-logo {
    height: 50px;
    width: auto;
    margin: 0 auto 20px;
    display: block;
}

@media (max-width: 600px) {
    .section-logo {
        height: 40px;
    }
}


/* ========================================
   CATALOG PAGE STYLES
   ======================================== */

/* Catalog Section */
.catalog-section {
    background: var(--cream);
}

.catalog-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* Catalog Image */
.catalog-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 3/4;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.catalog-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 3rem 2rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

.catalog-overlay i {
    font-size: 2.5rem;
    color: var(--red);
}

.catalog-overlay span {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Catalog Content */
.catalog-content {
    padding: 2rem 0;
}

.catalog-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--brown);
}

.catalog-content h2 span {
    color: var(--red);
}

.catalog-content > p {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Catalog Features List */
.catalog-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: grid;
    gap: 1rem;
}

.catalog-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--brown);
}

.catalog-features i {
    width: 28px;
    height: 28px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Download Button */
.catalog-content .btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.catalog-content .btn-lg i {
    font-size: 1.25rem;
}

/* Catalog Note */
.catalog-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.catalog-note i {
    color: var(--red);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 900px) {
    .catalog-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 600px;
    }
    
    .catalog-image {
        aspect-ratio: 4/3;
    }
    
    .catalog-content {
        text-align: center;
        padding: 0;
    }
    
    .catalog-features {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .catalog-features li {
        justify-content: flex-start;
    }
    
    .catalog-note {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .catalog-content h2 {
        font-size: 2rem;
    }
    
    .catalog-content > p {
        font-size: 1rem;
    }
    
    .catalog-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .catalog-overlay i {
        font-size: 2rem;
    }
    
    .catalog-overlay span {
        font-size: 1rem;
    }
    
    .catalog-content .btn-lg {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   CONTACT PAGE - Contained Split Design
   ======================================== */

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--cream);
}

/* Contact Wrapper - Contained */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1000px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Left Side - Info */
.contact-info-side {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-med) 100%);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.contact-info-side::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(226,0,26,0.08) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
}

.contact-info-side::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(250,179,3,0.1) 0%, transparent 60%);
}

@media (max-width: 600px) {
    .contact-info-side {
        padding: 50px 30px;
    }
}

.contact-info-content {
    position: relative;
    z-index: 1;
}

.contact-info-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.2rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 15px;
}

.contact-info-content h2 span {
    color: var(--gold);
}

.contact-intro {
    font-size: 0.95rem;
    color: var(--gold-light);
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    transition: all var(--transition-base);
    text-decoration: none;
}

.contact-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    transform: translateX(8px);
}

.contact-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(226,0,26,0.3);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-text span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
}

.contact-text strong {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.5;
}

/* Social Links */
.contact-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-social > span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-light);
    font-family: 'Montserrat', sans-serif;
    opacity: 0.7;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

.social-icons a:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(226,0,26,0.4);
}

/* Right Side - Map */
.contact-map-side {
    position: relative;
    min-height: 500px;
}

@media (max-width: 1000px) {
    .contact-map-side {
        min-height: 400px;
    }
}

.map-frame {
    position: absolute;
    inset: 0;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
}

.map-directions-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--white);
    color: var(--brown-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    text-decoration: none;
}

.map-directions-btn:hover {
    background: var(--red);
    color: var(--white);
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 15px 35px rgba(226,0,26,0.3);
}

.map-directions-btn i {
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 600px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-wrapper {
        border-radius: 20px;
        margin: 0 15px;
    }
    
    .contact-item {
        padding: 16px;
    }
    
    .contact-social {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .map-directions-btn {
        bottom: 20px;
        padding: 12px 24px;
        font-size: 0.75rem;
    }
}
/* ========================================
   FOOTER STYLES - Red Theme
   ======================================== */

.footer {
    background: var(--red);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.footer > .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

@media (max-width: 1000px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
}

/* Footer Brand */
.footer-brand .logo-img {
    height: 55px;
    width: auto;
}

@media (max-width: 1000px) {
    .footer-brand .logo-img {
        margin: 0 auto;
    }
}

.footer-brand p {
    color: rgba(255,255,255,0.85);
    margin-top: 20px;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

@media (max-width: 1000px) {
    .footer-social {
        justify-content: center;
    }
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.95rem;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Footer Columns */
.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
}

@media (max-width: 600px) {
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

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

.footer-col a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width var(--transition-base);
}

.footer-col a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-col a:hover::before {
    width: 10px;
}

@media (max-width: 600px) {
    .footer-col a {
        justify-content: center;
    }
    
    .footer-col a:hover {
        transform: translateX(0);
    }
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

@media (max-width: 600px) {
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}
/* ========================================
   HEADER / NAVBAR STYLES
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-base);
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 100%);
    opacity: 1;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.navbar.scrolled::before {
    opacity: 0;
}

.navbar.scrolled {
    padding: 12px 5%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

/* Navbar on light pages */
.navbar.navbar-light::before {
    opacity: 0;
}

.navbar.navbar-light {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.navbar.navbar-light .nav-links a {
    color: var(--brown-dark);
}

.navbar.navbar-light .menu-btn span {
    background: var(--brown-dark);
}

/* Logo */
.logo {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    transition: transform var(--transition-base);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 80px;
    width: auto;
}

.navbar.scrolled .logo-img,
.navbar.navbar-light .logo-img {
    height: 65px;
}

.logo-n {
    color: var(--black);
}

.logo-rest {
    color: var(--red);
}

/* Nav Links */
.nav-links {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: block;
    padding: 10px 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--white);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    border-radius: 50px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-base);
    z-index: -1;
}

.nav-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

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

.nav-links a.active {
    background: var(--red);
    color: var(--white);
    box-shadow: var(--shadow-red);
}

.nav-links a.active:hover {
    background: var(--red-dark);
    color: var(--white);
}

.nav-links a.active::before {
    display: none;
}

/* Scrolled & Light state */
.navbar.scrolled .nav-links a,
.navbar.navbar-light .nav-links a {
    color: var(--brown-dark);
}

.navbar.scrolled .nav-links a:hover,
.navbar.navbar-light .nav-links a:hover {
    color: var(--red);
    background: var(--gray-100);
}

.navbar.scrolled .nav-links a::before,
.navbar.navbar-light .nav-links a::before {
    background: var(--gray-100);
}

.navbar.scrolled .nav-links a.active,
.navbar.navbar-light .nav-links a.active {
    background: var(--red);
    color: var(--white);
}

/* Nav CTA */
.nav-cta {
    margin-left: 10px;
}

.nav-cta a {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    box-shadow: var(--shadow-red);
}

.nav-cta a::before {
    display: none !important;
}

.nav-cta a:hover {
    background: var(--red-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(226,0,26,0.4);
}

/* Nav Language Switcher */
.nav-lang {
    margin-left: 5px;
}

.nav-lang a {
    padding: 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-lang a::before {
    display: none !important;
}

.flag-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all var(--transition-base);
}

.nav-lang a:hover .flag-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.navbar.scrolled .flag-icon,
.navbar.navbar-light .flag-icon {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Mobile Menu Button */
.menu-btn {
    display: none;
    position: relative;
    z-index: 1001;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all var(--transition-base);
}

.menu-btn:hover {
    background: rgba(255,255,255,0.2);
}

.navbar.scrolled .menu-btn,
.navbar.navbar-light .menu-btn {
    background: var(--gray-100);
    border-color: var(--gray-200);
}

.menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.navbar.scrolled .menu-btn span,
.navbar.navbar-light .menu-btn span {
    background: var(--brown-dark);
}

.menu-btn.active span {
    background: var(--white);
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
@media (max-width: 900px) {
    .menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(85%, 380px);
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(135deg, var(--brown-dark), var(--brown-med));
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 80px 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.3s ease;
    }

    .nav-links.open li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.open li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.open li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.open li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.open li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.open li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.open li:nth-child(6) { transition-delay: 0.35s; }

    .nav-links a {
        color: var(--white) !important;
        font-size: 1rem;
        padding: 14px 20px;
        text-align: center;
        border-radius: 12px;
    }

    .nav-links a:hover {
        background: rgba(255,255,255,0.1);
        color: var(--gold) !important;
    }

    .nav-links a::before {
        display: none;
    }

    .nav-links a.active {
        background: var(--red);
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }

    .nav-cta a {
        width: 100%;
        text-align: center;
        padding: 14px 20px !important;
        border-radius: 12px !important;
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.6);
        backdrop-filter: blur(5px);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
        z-index: 998;
    }

    .nav-overlay.open {
        opacity: 1;
        visibility: visible;
    }
}
/* ========================================
   INGREDIENTS PAGE STYLES
   ======================================== */

/* Ingredient Showcase */
.ingredient-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.ingredient-showcase:nth-child(even) {
    direction: rtl;
}

.ingredient-showcase:nth-child(even) > * {
    direction: ltr;
}

@media (max-width: 900px) {
    .ingredient-showcase,
    .ingredient-showcase:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
        text-align: center;
        gap: 30px;
    }
}

.ingredient-image {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--brown-med), var(--brown-dark));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base);
}

.ingredient-image:hover {
    transform: scale(1.02);
}

.ingredient-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.origin-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--red);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

@media (max-width: 900px) {
    .origin-badge {
        left: 50%;
        transform: translateX(-50%);
    }
}

.ingredient-info h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    color: var(--brown-dark);
    margin-bottom: 15px;
}

.ingredient-info h3 span {
    color: var(--red);
}

.ingredient-info > p {
    font-size: 0.95rem;
    color: var(--brown-med);
    line-height: 1.7;
    margin-bottom: 12px;
}

.ingredient-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

@media (max-width: 900px) {
    .ingredient-facts {
        justify-content: center;
    }
}

.fact-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--cream);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--brown-dark);
    font-weight: 600;
    transition: all var(--transition-base);
}

.fact-tag::before {
    content: '✓';
    color: var(--red);
    font-weight: 700;
}

.fact-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Sourcing Section - Feature cards with images */
.sourcing-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: all var(--transition-base);
}

.sourcing-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.1);
    box-shadow: var(--shadow-lg);
}

.sourcing-card-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.sourcing-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.sourcing-card:hover .sourcing-card-image img {
    transform: scale(1.1);
}

.sourcing-card-content {
    padding: 25px 20px;
}

.sourcing-card h3 {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 10px;
}

.sourcing-card p {
    color: var(--gold-light);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Section Logo (replaces badge) */
.section-logo {
    height: 50px;
    width: auto;
    margin: 0 auto 20px;
    display: block;
}

@media (max-width: 600px) {
    .section-logo {
        height: 40px;
    }
}

/* Quality Promise Cards with images */
.quality-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: all var(--transition-base);
}

.quality-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.quality-card-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.quality-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.quality-card:hover .quality-card-image img {
    transform: scale(1.1);
}

.quality-card-content {
    padding: 25px 20px;
}

.quality-card h3 {
    font-size: 1.05rem;
    color: var(--brown-dark);
    margin-bottom: 10px;
}

.quality-card p {
    color: var(--brown-med);
    font-size: 0.85rem;
    line-height: 1.6;
}


/* ========================================
   RECIPES PAGE STYLES
   ======================================== */

/* Section Logo */
.section-logo {
    height: 50px;
    width: auto;
    margin: 0 auto 20px;
    display: block;
}

@media (max-width: 600px) {
    .section-logo {
        height: 40px;
    }
}

/* Recipes Showcase */
.recipes-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.recipe-showcase-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.recipe-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.recipe-showcase-card:nth-child(even) {
    direction: rtl;
}

.recipe-showcase-card:nth-child(even) > * {
    direction: ltr;
}

@media (max-width: 900px) {
    .recipe-showcase-card,
    .recipe-showcase-card:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }
}

.recipe-showcase-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.recipe-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.recipe-showcase-card:hover .recipe-showcase-image img {
    transform: scale(1.05);
}

.recipe-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--red);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recipe-tag.tag-gold {
    background: var(--gold);
    color: var(--brown-dark);
}

.recipe-showcase-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 600px) {
    .recipe-showcase-content {
        padding: 30px;
    }
}

.recipe-category {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--red);
    margin-bottom: 10px;
}

.recipe-showcase-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--brown-dark);
    margin-bottom: 15px;
}

.recipe-showcase-content > p {
    color: var(--brown-med);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.recipe-info {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.recipe-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--brown-med);
    font-size: 0.9rem;
}

.recipe-info-item i {
    color: var(--red);
    font-size: 1rem;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 900px) {
    .tips-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

.tip-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.tip-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tip-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-red);
}

.tip-item h4 {
    font-size: 1.1rem;
    color: var(--brown-dark);
    margin-bottom: 10px;
}

.tip-item p {
    color: var(--brown-med);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================
   INDIVIDUAL RECIPE PAGE STYLES
   ======================================== */

.recipe-page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.recipe-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .recipe-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.recipe-hero-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.recipe-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.recipe-hero-text .badge {
    margin-bottom: 15px;
}

.recipe-hero-text h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--brown-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.recipe-hero-text h1 span {
    color: var(--red);
}

.recipe-hero-text > p {
    font-size: 1.1rem;
    color: var(--brown-med);
    line-height: 1.7;
    margin-bottom: 30px;
}

.recipe-meta-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.recipe-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.recipe-meta-item i {
    width: 40px;
    height: 40px;
    background: var(--red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.recipe-meta-item span {
    font-size: 0.9rem;
    color: var(--brown-med);
}

.recipe-meta-item strong {
    display: block;
    font-size: 1rem;
    color: var(--brown-dark);
}

/* Recipe Content Section */
.recipe-content-section {
    padding: 80px 0;
}

.recipe-content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

@media (max-width: 900px) {
    .recipe-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Ingredients Card */
.ingredients-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 120px;
    height: fit-content;
}

@media (max-width: 900px) {
    .ingredients-card {
        position: relative;
        top: 0;
    }
}

.ingredients-card h3 {
    font-size: 1.3rem;
    color: var(--brown-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-200);
}

.ingredients-list {
    list-style: none;
}

.ingredients-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.95rem;
    color: var(--brown-med);
}

.ingredients-list li:last-child {
    border-bottom: none;
}

.ingredients-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.ingredients-list li strong {
    color: var(--brown-dark);
}

/* Instructions */
.instructions-section h3 {
    font-size: 1.5rem;
    color: var(--brown-dark);
    margin-bottom: 30px;
}

.instruction-step {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: var(--shadow-red);
}

.step-content h4 {
    font-size: 1.1rem;
    color: var(--brown-dark);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--brown-med);
    font-size: 1rem;
    line-height: 1.7;
}

/* More Recipes Section */
.more-recipes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

.more-recipe-card {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    text-decoration: none;
}

.more-recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.more-recipe-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.more-recipe-card h4 {
    font-size: 1rem;
    color: var(--brown-dark);
    margin-bottom: 5px;
}

.more-recipe-card p {
    font-size: 0.85rem;
    color: var(--brown-med);
    line-height: 1.5;
}
