.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: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: #111;
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.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 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(209, 168, 66, 0.2);
    padding: 15px 30px;
    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: #d1a842; /* Gold line */
    margin-left: -5px; /* overlap slightly */
    z-index: 1;
}

.product-item-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    padding: 2.5rem 2rem;
    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: 1px solid rgba(209, 168, 66, 0.15);
    cursor: pointer;
    overflow: hidden;
}

/* Premium Hover State */
.product-item-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 20px 40px rgba(209, 168, 66, 0.12);
    border-color: #d1a842;
}

/* 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(209, 168, 66, 0.05) 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: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fcf8ed 0%, #f4e6c1 100%);
    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: #f3e9cc;
}

.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: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #111;
    margin: 0;
    transition: color 0.4s ease;
    z-index: 1;
}

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

.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: #d1a842;
    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; }
/* Merged from inline styles */

/* Premium Page Banner */
.premium-page-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 1280 / 720; /* Match exactly the video's 1280x720 aspect ratio */
    max-height: 720px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(209, 168, 66, 0.3);
    overflow: hidden;
}
.banner-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPjxyZWN0IHdpZHRoPSI0IiBoZWlnaHQ9IjQiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==') repeat;
    background-color: rgba(0, 0, 0, 0.4); /* Darken video */
    opacity: 1;
    z-index: 1;
}
.banner-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Since container matches 16:9, cover will show 100% of the video without stretching */
    opacity: 1;
}

.banner-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.banner-subtitle .line {
    height: 1px;
    width: 60px;
    background: var(--gold);
    opacity: 0.5;
}
.banner-subtitle .text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
}

@media (max-width: 768px) {
    .premium-page-banner {
        aspect-ratio: 16 / 9; /* Maintain 16:9 on mobile too */
        min-height: 250px;
    }
    .banner-title {
        font-size: 2.5rem !important;
    }
}
