@font-face {
    font-family: "Forum";
    src: url("../fonts/forum/Forum-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Forum", serif;
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.9);
    overflow-x: hidden;
}

/* Video Banner */
.video-banner {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.video-banner video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    z-index: 1;
}

.banner-texts {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.banner-texts h1 {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: -1px;
    position: absolute;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    line-height: 1.2;
}

.banner-texts h1 span {
    color: #d4af37;
    font-weight: 400;
}

.banner-texts h1.active {
    opacity: 1;
    transform: translateY(0);
}

/* Product Section */
section.content {
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    padding: 120px 8% 150px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 50px;
}

.product-card {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.2);
}

.card-image {
    position: relative;
    height: 340px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.price-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    color: #d4af37;
    font-weight: 400;
    font-size: 1.2rem;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 2;
}

.hover-actions {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    width: calc(100% - 40px);
    max-width: 280px;
}

.product-card:hover .hover-actions {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.hover-actions button {
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    border: none;
    border-radius: 30px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: "Forum", serif;
    letter-spacing: 0.5px;
}

.hover-actions button:hover {
    background: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.card-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
}
