/* ═══════════════════════════════════════
     SHOP PAGE STYLES
   ═══════════════════════════════════════ */

/* --- Hero Section --- */
.tam {
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), url('Images/Frame 811.png');
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
/* 
.hero__content {
    text-align: center;
    color: white;
    z-index: 2;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    max-width: 800px;
    animation: fadeIn 1s ease-out;
} */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero__content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero__content .highlight {
    color: #f5c800; /* Brand Yellow */
}

.hero__content p {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* --- Main Products Section --- */
.long {
    padding:20px 5%;
    background-color: #fcfcfc;
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Product Section Header --- */
.h1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.h1 h1 {
    font-size: 1.9rem;
    color: #0c0c0c;
    margin: 0;
    text-align: left;
}

.h1 .see-all-btn {
    padding: 10px 24px;
    background: #207A3A;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.h1 .see-all-btn:hover {
    background: #1a6b2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(32, 122, 58, 0.2);
}

/* --- Product Grid --- */
.productsdiv {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    width: 100%;
    align-items: stretch;
}

.product1 {
    background: white;
    border-radius: 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.08);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(15,23,42,0.06);
    transform: translateY(0);
    animation: cardFadeIn 0.7s ease forwards;
}

.product1:nth-child(1) { animation-delay: 0.06s; }
.product1:nth-child(2) { animation-delay: 0.12s; }
.product1:nth-child(3) { animation-delay: 0.18s; }
.product1:nth-child(4) { animation-delay: 0.24s; }

.product1:hover {
    transform: translateY(-8px) scale(1.005);
    border-color: rgba(46, 158, 71, 0.18);
    box-shadow: 0 22px 48px rgba(15,23,42,0.10);
}

/* Image Wrapper with silk background */
.product__img-wrap {
    width: 100%;
    height: 220px;
    background: linear-gradient(180deg, rgba(248,250,252,1) 0%, rgba(255,255,255,1) 100%);
    border-radius: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    overflow: hidden;
    position: relative;
    transition: background 0.4s ease;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.product1:hover .product__img-wrap {
    background: rgba(236, 248, 241, 0.9);
}

.product1 img {
    max-height: 84%;
    max-width: 84%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product1:hover img {
    transform: scale(1.08) rotate(-1.5deg);
}

/* Info Section */
.product__info {
    padding: 16px 15px 16px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.product__category {
    font-size: 0.68rem;
    color: #5f7d5f;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 0;
    display: block;
}

.product1 h3 {
    font-size: 1.12rem;
    color: #0f172a;
    margin: 0;
    font-weight: 800;
    text-align: left;
    line-height: 1.3;
}

.product__desc-short {
    font-size: 0.9rem;
    color: #5f6f7f;
    margin: 0;
    line-height: 1.65;
}

.product__price {
    font-size: 0.98rem;
    color: #1f4f2d; /* Brand Green */
    font-weight: 800;
    margin-bottom: 0;
    display: block;
}

/* Elegant Button */
.product1 button {
    width: 100%;
    padding: 11px 16px;
    border-radius: 14px;
    background: #1f4f2d;
    color: white;
    font-weight: 700;
    font-size: 0.86rem;
    border: none;
    cursor: pointer;
    transition: all 0.23s ease;
    margin-top: auto;
    box-shadow: 0 10px 20px rgba(31,79,45,0.14);
}

.product1:hover button {
    transform: translateY(-1px);
    background: #176134;
}

/* Badge */
.product__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    color: #1f4f2d;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 12px 24px rgba(15,23,42,0.08);
}

@keyframes cardFadeIn {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Promo Carousel (Coming Soon replacement) --- */
.promo-carousel {
    padding: 0;
    margin: 0;
    height: 60vh;
    max-height: 560px;
    min-height: 48vh;
    background-color: #f8fbf8;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    margin-top: calc(var(--nav-h) + 20px);
}

.carousel-container {
    width: min(1180px, 100%);
    margin: 0 auto;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
    height: 100%;
    background: rgba(166, 166, 166, 0.605);
}

.promo-carousel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.16), transparent 36%),
                linear-gradient(180deg, rgba(255,255,255,0.18), transparent 45%, rgba(0,0,0,0.08));
    pointer-events: none;
}

.carousel-caption {
    position: absolute;
    left: 4.5vw;
    top: 50%;
    transform: translateY(-50%);
    max-width: 360px;
    z-index: 12;
    color: #111;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    border-radius: 32px;
    padding: 26px 28px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.carousel-caption p {
    margin: 0 0 14px;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.75;
    color: #2e9e47;
}

.carousel-caption h2 {
    margin: 0 0 20px;
    font-size: clamp(2rem, 2.75vw, 2.8rem);
    line-height: 1.08;
    color: #0c1721;
}

.carousel-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: #1f4f2d;
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.94rem;
    text-decoration: none;
    box-shadow: 0 16px 36px rgba(31,79,45,0.18);
    transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-cta:hover {
    background: #176134;
    transform: translateY(-1px);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    height: 100%;
    position: relative;
    padding: 16px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    max-width: none;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.carousel-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, transparent 45%, rgba(0,0,0,0.18) 100%);
    pointer-events: none;
}

/* Desktop view */
@media (min-width: 901px) {
    .promo-carousel {
        height: 60vh;
        max-height: 560px;
    }
    .carousel-caption {
        left: 4.5vw;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        max-width: 360px;
    }
    .carousel-slide {
        padding: 0;
    }
    .carousel-slide img {
        width: 100%;
        height: 100%;
        min-height: 100%;
        max-width: none;
    }
}

/* Mobile view */
@media (max-width: 900px) {
    .promo-carousel {
        height: auto;
        min-height: 52vh;
        max-height: 520px;
    }
    .carousel-container {
        min-height: 52vh;
        height: auto;
        border-radius: 18px;
    }
    .carousel-caption {
        left: 50%;
        top: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
        max-width: 92%;
        padding: 20px 22px;
        background: rgba(255, 255, 255, 0.62);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.45);
        color: #34d173;
    }
    .carousel-caption h2 {
        font-size: clamp(1.7rem, 4vw, 2.4rem);
    }
    .carousel-caption p {
        font-size: 0.78rem;
        letter-spacing: 0.16em;
    }
    .carousel-cta {
        padding: 10px 18px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    .carousel-slide {
        padding: 12px;
    }
    .carousel-slide img {
        width: 100%;
        height: auto;
        max-height: 380px;
        border-radius: 22px;
    }
}

/* Extra small mobile */
@media (max-width: 520px) {
    .promo-carousel {
        min-height: 44vh;
        max-height: 440px;
    }
    .carousel-container {
        min-height: 44vh;
    }
    .carousel-caption {
        bottom: 18px;
        padding: 16px 18px;
        max-width: calc(100% - 32px);
    }
    .carousel-caption h2 {
        font-size: 1.8rem;
    }
    .carousel-caption p {
        font-size: 0.75rem;
    }
    .carousel-slide img {
        max-height: 280px;
        border-radius: 20px;
    }
}

/* Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: #1f4f2d;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    transition: all 0.25s ease;
}

.carousel-btn:hover {
    transform: scale(1.05);
    background: white;
}

.carousel-btn svg {
    stroke: #1f4f2d;
}

/* Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.85);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.dot.active {
    background: #1f4f2d;
    transform: scale(1.3);
}

@media (max-width: 900px) {
    .promo-carousel {
        height: auto;
        min-height: 42vh;
        max-height: 440px;
    }
    .carousel-container {
        min-height: auto;
        height: auto;
        aspect-ratio: 16 / 9;
        border-radius: 18px;
    }
    .carousel-slide {
        padding: 0;
    }
    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 18px;
    }
    .carousel-caption {
        left: 50%;
        top: auto;
        bottom: 20px;
        transform: translateX(-50%);
        max-width: 88%;
        padding: 18px 20px;
        background: rgba(255, 255, 255, 0.86);
        color: #111;
        border: 1px solid rgba(255,255,255,0.65);
    }
    .carousel-caption h2 {
        font-size: clamp(1.65rem, 4vw, 2.2rem);
        line-height: 1.1;
    }
    .carousel-caption p {
        font-size: 0.78rem;
        letter-spacing: 0.14em;
    }
    .carousel-cta {
        padding: 10px 18px;
        font-size: 0.9rem;
        width: auto;
    }
    .carousel-btn {
        width: 42px;
        height: 42px;
    }
    .productsdiv {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .product__img-wrap {
        height: auto;
        padding: 16px;
        border-radius: 22px 22px 0 0;
    }
    .product1 img {
        width: 100%;
        max-height: 260px;
        height: auto;
    }
    .product__info {
        padding: 16px 16px 20px;
    }
    .product1 button {
        padding: 13px 16px;
    }
}

/* --- Delivery Strip --- */
.deliver {
    position: relative;
    height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-left: 10%; */
    background-image:url('Images/Banner.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.deliver img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6);
}

.deliver__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 40px;
}

.deliver__content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.deliver button {
    height: auto;
    width: auto;
    padding: 20px 50px;
    border: 2px solid #f5c800;
    border-radius: 50px;
    color: #f5c800;
    background: transparent;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s;
    text-transform: uppercase;
}

.deliver button:hover {
    background: #f5c800;
    color: #0c0c0c;
    box-shadow: 0 0 30px rgba(245, 200, 0, 0.4);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero__content h1 { font-size: 2.5rem; }
    .tam { height: 50vh; }
    .h1 h1 { font-size: 2.2rem; }
    .productsdiv { grid-template-columns: 1fr; gap: 18px; }
    .product__img-wrap { height: auto; padding: 16px; }
    .product1 img { width: 100%; max-height: 260px; height: auto; }
    .deliver { height: auto; min-height: 420px; padding: 60px 20px 40px; }
    .promo-carousel { min-height: 48vh; max-height: 470px; }
    .carousel-container { min-height: auto; height: auto; }
    .carousel-caption {
        left: 50%;
        transform: translateX(-50%);
        max-width: 92%;
        bottom: 18px;
    }
    .carousel-btn { width: 44px; height: 44px; }
}

@media (max-width: 520px) {
    .h1 { flex-direction: column; align-items: flex-start; gap: 16px; }
    .h1 .see-all-btn { width: 100%; text-align: center; }
    .product__info { padding: 16px 14px; }
    .product__price { font-size: 1.02rem; }
    .deliver__content h2 { font-size: 2rem; }
    .deliver button { width: 100%; padding: 16px 20px; }
    .promo-carousel { min-height: 44vh; max-height: 420px; }
    .carousel-caption {
        width: calc(100% - 32px);
        left: 50%;
        transform: translateX(-50%);
        bottom: 18px;
        padding: 14px 16px;
        max-width: 95%;
    }
    .carousel-caption h2 { font-size: 1.7rem; }
    .carousel-caption p { font-size: 0.74rem; }
    .carousel-cta { width: 100%; justify-content: center; }
    .carousel-slide { padding: 8px; }
    .carousel-slide img { border-radius: 18px; }
}
