/* Products Premium Styles */
:root {
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #C48A00 100%);
    --tan-gradient: linear-gradient(135deg, #C2B280 0%, #A69766 100%); /* Axiom Tan */
    --dark-gradient: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

.product-section-premium {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.product-section-premium.dark {
    background: var(--black);
    color: var(--white);
}

.product-section-premium.light {
    background: var(--white);
    color: var(--black);
}

/* Carousel Styles */
.product-carousel-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-carousel-main {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
    background: var(--grey-light);
}

.dark .product-carousel-main {
    background: var(--black-2);
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

.carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.dark .carousel-dot { background: rgba(255,255,255,0.2); }

.carousel-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s, color 0.3s;
}

.dark .carousel-arrow {
    background: var(--black-2);
    color: var(--white);
}

.carousel-arrow:hover {
    background: var(--gold);
    color: var(--black);
}

.carousel-arrow.prev { left: -20px; }
.carousel-arrow.next { right: -20px; }

/* Product Info Grid */
.product-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 1024px) {
    .product-info-grid { grid-template-columns: 1fr; gap: 40px; }
}

.feature-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gold-light);
    color: var(--gold-dark);
    font-family: var(--font-label);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    border-radius: 4px;
    margin-bottom: 20px;
}

.premium-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem); /* Refined for premium balance */
    line-height: 0.9;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.premium-desc {
    font-size: 1.45rem; /* Increased for better premium legibility */
    line-height: 1.7;
    color: var(--black-3);
    margin-bottom: 32px;
}

.dark .premium-desc { color: var(--grey-dark); }

/* Feature Cards */
.feature-cards-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.feature-card-mini {
    background: var(--grey-light);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--grey-mid);
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.dark .feature-card-mini {
    background: var(--black-2);
    border-color: var(--black-3);
}

.feature-card-mini:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.feature-card-mini i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.feature-card-mini span {
    font-family: var(--font-label);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    display: block;
}

/* Detailed Specs Table */
.specs-container {
    margin-top: 40px;
}

.specs-title {
    font-family: var(--font-label);
    font-size: 1.35rem; /* Standardized to 22px (1.35rem) for absolute readability */
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.specs-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--grey-mid);
}

.dark .specs-title::after { background: var(--black-3); }

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--grey-mid);
}

.dark .spec-item { border-color: var(--black-3); }

.spec-label { color: var(--grey-dark); font-size: 0.9rem; }
.spec-value { font-weight: 600; text-align: right; }

/* "What's in the Box" Section */
.box-content {
    background: var(--grey-light);
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
}

.dark .box-content { background: var(--black-2); border: 1px solid var(--black-3); }

.box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.box-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.box-item i { color: var(--gold); font-size: 1.2rem; }

/* Modal/Popup Styles */
.premium-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center; justify-content: center;
    padding: 40px;
}

.premium-popup.active { display: flex; }

.premium-popup-content {
    background: var(--white);
    border-radius: 24px;
    width: 100%;
    max-width: 900px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    padding: 60px;
}

.dark .premium-popup-content { background: var(--black-2); color: var(--white); border: 1px solid var(--black-3); }

.popup-close {
    position: absolute;
    top: 30px; right: 30px;
    background: none; border: none;
    font-size: 1.5rem; color: var(--grey-dark);
    cursor: pointer;
    transition: color 0.3s;
}

.popup-close:hover { color: var(--gold); }
