
body {
    font-family: 'Inter', sans-serif !important;
}

.round-16 {
    border-radius: 16px;
}

.bg-goldenta-300 {
    background-color: #ffc95c;
}
.bg-text-300 {
    background-color: #ffc95c;
}

.text-goldenta-600 {
    color: #dd6202;
}

.text-goldenta-950 {
    color: #461302;
}


.twf_navbar .header_menu_links:hover {
    background-color: #461302 !important;
    color: #ffdb88 !important;
}

.twf-aiz-carousel .carousel-box {
    margin-right: 15px !important;
}

.twf-aiz-carousel .carousel-box:last-child {
    margin-right: 0 !important;
}

.flashCardWrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    height: 100%;
    padding: 1rem;
}

.flashCardWrap .flashCard {
    width: 100%;
    height: 450px;
    max-height: 450px;
    overflow: hidden;
    border-radius: 14px;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    background-color: #1a1a1a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flashCardWrap .flashCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.flashCardWrap .imgWrap {
    width: 100%;
    height: 100%;
    max-height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.flashCardWrap .imgWrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
    z-index: 1;
    border-radius: 14px;
}

.flashCardWrap .imgWrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    transition: transform 0.5s ease;
}

.flashCardWrap .flashCard:hover .imgWrap img {
    transform: scale(1.05);
}

.flashCardWrap .textWrap {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 2;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    max-width: calc(100% - 2rem);
    font-size: 1rem;
    line-height: 1.4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.flashCardWrap .flashCard:hover .textWrap {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.flashCardWrap .textWrap h5 {
    display: flex;
    gap: .5rem;
    align-items: baseline;
}

.flashCardWrap .textWrap h5 del {
    font-size: 14px;
}

@media (min-width: 1200px) {
    .twf-home-slider {
        max-width: 100% !important;
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 20px;
    margin: 0 auto;
    padding: 10px;
}

.product-grid .card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-grid .card:hover {
    transform: scale(1.02);
}

.product-grid .img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.product-grid .card:hover img {
    transform: scale(1.1);
}

.product-grid .info {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 2;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    max-width: calc(100% - 2rem);
    font-size: 1rem;
    line-height: 1.4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.product-grid .card:hover .info {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.product-grid h5 {
    display: flex;
    gap: .5rem;
    align-items: baseline;
}

.product-grid h5 del {
    font-size: 14px;
}

/* .product-grid .price {
    display: block;
    font-weight: 700;
    font-size: 16px;
  }
  
  .product-grid .old-price {
    font-size: 12px;
    text-decoration: line-through;
    opacity: 0.8;
  } */

/* Layout for 5 specific cards */
.card1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.card2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.card3 {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

.card4 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.card5 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

/* ✅ Responsive layout */
@media (max-width: 991px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 300px);
    }

    .card1 {
        grid-column: 1;
        grid-row: 1;
    }

    .card2 {
        grid-column: 2;
        grid-row: 1;
    }

    .card3 {
        grid-column: 1 / 3;
        grid-row: 2;
    }

    .card4 {
        grid-column: 1;
        grid-row: 3;
    }

    .card5 {
        grid-column: 2;
        grid-row: 3;
    }
}

@media (max-width: 575px) {
    .product-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 250px);
    }

    .card1,
    .card2,
    .card3,
    .card4,
    .card5 {
        grid-column: 1 / 2;
        grid-row: auto;
    }
}

/** card style chage */
.slick-slide img {
    height: 100%; 
}
