/* New Premium Collection Section Styles */
.new-premium-collection {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.new-premium-collection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.new-premium-collection .container-fluid {
    position: relative;
    z-index: 2;
}

/* Header Styles */
.premium-header {
    margin-bottom: 4rem;
}

.premium-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 8px 25px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.premium-main-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-main-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin-bottom: 2rem;
    font-style: italic;
}

.premium-main-divider {
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, white, transparent);
    margin: 0 auto;
    border-radius: 2px;
}

/* Tabs Styles */
.premium-tabs-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.premium-tabs {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.premium-tab {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 15px 30px;
    border-radius: 45px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.premium-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.premium-tab:hover::before {
    left: 100%;
}

.premium-tab.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.premium-tab:hover {
    color: white;
    transform: translateY(-2px);
}

/* Tab Content */
.premium-content-wrapper {
    position: relative;
}

.premium-tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.premium-tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Featured Tab Styles */
.premium-product-display {
    position: relative;
    padding: 2rem;
}

.premium-product-stage {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.stage-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.stage-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    animation: float-circles 8s ease-in-out infinite;
}

.stage-circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.stage-circle-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: -30px;
    animation-delay: 2s;
}

.stage-circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float-circles {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.6; }
}

.premium-product-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.premium-main-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.6s ease;
}

.premium-product-stage:hover .premium-main-image {
    transform: scale(1.1) rotate(-5deg);
}

.product-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.2); }
}

/* Floating Specs */
.floating-specs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.spec-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #FFD700;
    border-radius: 50%;
    cursor: pointer;
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
}

.spec-dot-1 { top: 30%; left: 20%; animation-delay: 0s; }
.spec-dot-2 { top: 60%; right: 25%; animation-delay: 1s; }
.spec-dot-3 { bottom: 30%; left: 15%; animation-delay: 2s; }

@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.spec-tooltip {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.spec-dot:hover .spec-tooltip {
    opacity: 1;
}

/* Product Info Styles */
.premium-product-info {
    color: white;
    padding: 2rem;
}

.info-header {
    margin-bottom: 2rem;
}

.premium-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-product-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* Features Grid */
.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.feature-text h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 700;
}

.feature-text p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Tags Section */
.premium-tags-section {
    margin-bottom: 2rem;
}

.premium-feature-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 5px 10px 5px 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

/* Pricing */
.premium-pricing {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-label {
    display: block;
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* Action Buttons */
.premium-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.premium-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    justify-content: center;
    min-width: 200px;
}

.premium-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.premium-action-btn:hover::before {
    left: 100%;
}

.primary-action {
    background: white;
    color: #667eea;
    border: 2px solid white;
}

.primary-action:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.secondary-action {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.secondary-action:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

/* Luxury Tab Styles */
.luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.luxury-item {
    perspective: 1000px;
}

.luxury-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.4s ease;
    transform-style: preserve-3d;
}

.luxury-card:hover {
    transform: rotateY(10deg) rotateX(5deg) scale(1.05);
}

.luxury-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.luxury-card:hover .luxury-image img {
    transform: scale(1.1);
}

.luxury-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.luxury-card:hover .luxury-overlay {
    opacity: 1;
}

.luxury-btn {
    background: white;
    color: #667eea;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.luxury-btn:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

.luxury-info {
    padding: 1.5rem;
    text-align: center;
    color: white;
}

.luxury-info h4 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.luxury-category {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Innovation Tab Styles */
.innovation-showcase {
    padding: 2rem 0;
}

.innovation-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 80px;
    width: 2px;
    height: calc(100% + 2rem);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-right: 2rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    flex-shrink: 0;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.timeline-image {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-info {
    color: white;
}

.timeline-info h4 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.timeline-info p {
    margin: 0 0 15px 0;
    opacity: 0.8;
    line-height: 1.6;
}

.timeline-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.timeline-link:hover {
    color: white;
    text-shadow: 0 0 10px #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-main-title {
        font-size: 2.5rem;
    }
    
    .premium-product-title {
        font-size: 2rem;
    }
    
    .premium-features-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-actions {
        flex-direction: column;
    }
    
    .premium-action-btn {
        min-width: auto;
        width: 100%;
    }
    
    .luxury-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-content {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .premium-main-title {
        font-size: 2rem;
    }
    
    .premium-product-title {
        font-size: 1.5rem;
    }
    
    .premium-tabs {
        flex-direction: column;
        width: 100%;
    }
    
    .premium-tab {
        width: 100%;
        margin-bottom: 5px;
    }
}
