.responsive-video {
    width: 100%;
    height: 296px;
    object-fit: cover;
    margin: 0;
    display: block;
}
@media (max-width: 768px) {
    .responsive-video {
        height: 150px; /* Reduced height for mobile to maintain better aspect ratio */
    }
}

/* Product Page Redesign */
.products-header-container {
    position: relative;
    padding: 3rem 0 1rem;
    overflow: hidden;
    background: transparent;
    max-width: 100%;
}

.watermark-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    text-transform: uppercase;
    z-index: 0;
    line-height: 1;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    max-width: 100vw;
    overflow: hidden;
}

.products-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.brand-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.brand-logo-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.brand-logo-card img {
    height: 90px;
    object-fit: contain;
}

.brand-line {
    flex-grow: 1;
    height: 1px;
    background-color: #ff7b00; /* Orange line */
    margin-left: -5px; /* overlap slightly */
    z-index: 1;
}

.product-item-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    padding: 2rem 1.5rem;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
}

/* Premium Hover State */
.product-item-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 51, 0, 0.15);
    border-color: #ff3300;
}

/* Add a subtle glow overlay on hover */
.product-item-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,51,0,0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}
.product-item-card:hover::after {
    opacity: 1;
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    background-color: transparent;
    border-radius: 0;
    overflow: visible;
    z-index: 1;
}

.dotted-circle-bg {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: #ffe8d6;
    border: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-item-card:hover .dotted-circle-bg {
    transform: translate(-50%, -50%) scale(1.2);
    background-color: #ffd8bd;
}

.product-item-image {
    max-height: 180px;
    max-width: 90%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.product-item-card:hover .product-item-image {
    transform: scale(1.18) translateY(-10px) rotate(2deg);
    filter: drop-shadow(0 20px 25px rgba(0,0,0,0.2));
}

.product-item-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    transition: color 0.4s ease;
    z-index: 1;
}

.product-item-card:hover .product-item-title {
    color: #ff3300;
}

.product-item-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    z-index: 1;
}

/* Sweeping Arrow Animation */
.product-arrow {
    margin-top: auto;
    padding-top: 15px;
    color: #ff3300;
    font-size: 1.5rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.product-item-card:hover .product-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Cascade Entry Animation */
@keyframes fadeUpSlide {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.col {
    animation: fadeUpSlide 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    opacity: 0;
}

.col:nth-child(1) { animation-delay: 0.1s; }
.col:nth-child(2) { animation-delay: 0.2s; }
.col:nth-child(3) { animation-delay: 0.3s; }
.col:nth-child(4) { animation-delay: 0.4s; }
.col:nth-child(5) { animation-delay: 0.5s; }
.col:nth-child(6) { animation-delay: 0.6s; }