/* css/pc/products.css */

.products-section {
    padding: 60px 0 0 0;
    background-color: #faf5eb;
    overflow: hidden;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 0.65rem;
    font-weight: 600;
    color: #c49553;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 700;
    color: #0c182c;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.golden-dot {
    color: #c49553;
}

.products-header-right {
    max-width: 400px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.section-desc {
    font-size: 1rem;
    color: #122136;
    font-weight: 500;
    line-height: 1.5;
}

.btn-outline-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid #c49a62;
    border-radius: 100px;
    color: #c49a62;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-pill:hover {
    background: #c49a62;
    color: #ffffff;
}

.products-carousel-wrap {
    width: 100%;
    overflow: hidden;
    padding: 20px 0 0 0;
    margin-bottom: 0;
}

.products-grid.products-marquee {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollProducts 30s linear infinite;
}

.products-carousel-wrap:hover .products-marquee {
    animation-play-state: paused;
}

@keyframes scrollProducts {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

.product-card {
    width: 270px;
    min-height: 480px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-badge-new {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #e74c3c;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.45);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(229, 62, 62, 0.45);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 25px rgba(229, 62, 62, 0.7), 0 0 10px rgba(229, 62, 62, 0.3);
        transform: scale(1.08);
    }
}

.product-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 12px 24px rgba(0, 0, 0, 0.1);
}

.product-card-img-wrap {
    background: linear-gradient(135deg, #fdfbf7 0%, #f4eade 100%);
    box-shadow: inset 0 -10px 20px rgba(0,0,0,0.04);
    background-size: cover;
    background-position: center;
    padding: 24px 16px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 220px;
    border-radius: 16px 16px 0 0;
}

.product-card-img {
    width: 100%;
    max-width: 140px;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.product-card:hover .product-card-img {
    transform: scale(1.15) translateY(-8px);
}

.product-card-content {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
}

.product-category {
    font-size: 0.65rem;
    color: var(--theme-color);
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0c182c;
    line-height: 1.3;
    margin-bottom: 6px;
}

.product-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 12px;
    flex: 1;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    width: 100%;
    margin-bottom: 16px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 12px;
}

.feature-icon-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 4px;
}

.feature-icon-item i {
    font-size: 1.1rem;
    color: var(--theme-color);
}

.feature-icon-item span {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    color: #475569;
}

.product-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    padding: 10px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    align-self: center;
    position: relative;
    overflow: hidden;
}

.product-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.45) 50%,
        transparent 100%
    );
    animation: btn-shine 2.5s ease-in-out infinite;
}

@keyframes btn-shine {
    0%   { left: -100%; }
    35%  { left: 150%; }
    100% { left: 150%; }
}

.product-link::after {
    content: none;
}

.product-card:hover .product-link {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Quick Links Bar (Restored) */
.quick-links-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px 0 40px;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #f7f3ed;
    border-radius: 12px;
    overflow: hidden;
}

.quick-link-card {
    display: flex;
    align-items: center;
    padding: 30px;
    gap: 16px;
    text-decoration: none;
    color: #0c182c;
    border-right: 1px solid rgba(0,0,0,0.05);
    transition: background 0.3s ease;
}

.quick-link-card:last-child {
    border-right: none;
}

.quick-link-card:hover {
    background: #f0e9df;
}

.quick-link-icon-wrap {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.quick-link-text {
    flex: 1;
}

.quick-link-text h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.quick-link-text p {
    font-size: 0.8rem;
    color: #718096;
}

.quick-link-arrow {
    font-size: 1.2rem;
    color: #a0aec0;
    transition: transform 0.3s ease;
}

.quick-link-card:hover .quick-link-arrow {
    transform: translateX(4px);
    color: #0c182c;
}

/* Scroll Animations */
.anim-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-slide-right-card {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.anim-slide-left.show,
.anim-slide-right.show,
.anim-slide-right-card.show {
    opacity: 1;
    transform: translateX(0);
}

.anim-slide-right-card.show:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 12px 24px rgba(0, 0, 0, 0.1);
}
