/**
 * MySiliconeLux Premium Styles
 * Fullscreen Fashion Style - Flatsome Inspired
 * Version: 1.0.0
 */

/* =================================================================
   HERO SECTIONS - FULLSCREEN FASHION STYLE
================================================================= */

.hero-fullscreen {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--neutral-900);
}

.hero-fullscreen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 var(--space-6);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-6);
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: var(--space-10);
    opacity: 0.9;
}

.hero-cta-group {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }
    .hero-subtitle {
        font-size: 18px;
    }
}

/* =================================================================
   COLLECTION GRID - FULLSCREEN TILES
================================================================= */

.collection-grid-fullscreen {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    min-height: 100vh;
}

.collection-tile {
    position: relative;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

.collection-tile:hover::before {
    opacity: 0.9;
}

.collection-tile-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-tile:hover .collection-tile-bg {
    transform: scale(1.1);
}

.collection-tile-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-10);
    z-index: 2;
    color: white;
}

.collection-tile-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: var(--space-3);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.collection-tile-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: var(--space-4);
}

.collection-tile-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.collection-tile:hover .collection-tile-link {
    transform: translateX(8px);
}

@media (max-width: 768px) {
    .collection-grid-fullscreen {
        grid-template-columns: 1fr;
    }
    .collection-tile-title {
        font-size: 32px;
    }
}

/* =================================================================
   PRODUCT GRID - MODERN LAYOUT
================================================================= */

.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    padding: var(--space-20) 0;
}

.product-item {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--neutral-100);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-item:hover .product-image {
    transform: scale(1.08);
}

.product-badges {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    z-index: 2;
}

.product-quick-actions {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    z-index: 2;
}

.product-item:hover .product-quick-actions {
    opacity: 1;
    transform: translateX(0);
}

.quick-action-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-action-btn:hover {
    background: var(--primary-500);
    color: white;
    transform: scale(1.1);
}

.product-info {
    padding: var(--space-5);
}

.product-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--neutral-500);
    margin-bottom: var(--space-2);
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--space-3);
    line-height: 1.4;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-500);
}

.product-price del {
    font-size: 18px;
    font-weight: 400;
    color: var(--neutral-400);
    margin-right: var(--space-2);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-3);
}

.stars {
    display: flex;
    gap: 2px;
    color: var(--accent-gold-300);
}

.rating-count {
    font-size: 14px;
    color: var(--neutral-500);
}

@media (max-width: 1200px) {
    .products-grid-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-6);
    }
}

@media (max-width: 768px) {
    .products-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
}

@media (max-width: 480px) {
    .products-grid-modern {
        grid-template-columns: 1fr;
    }
}

/* =================================================================
   TRUST BADGES SECTION
================================================================= */

.trust-section {
    background: white;
    padding: var(--space-20) 0;
    border-top: 1px solid var(--neutral-200);
    border-bottom: 1px solid var(--neutral-200);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    text-align: center;
}

.trust-item {
    padding: var(--space-6);
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: 50%;
    font-size: 32px;
}

.trust-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--space-2);
}

.trust-description {
    font-size: 14px;
    color: var(--neutral-600);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
}

/* =================================================================
   FEATURED COLLECTION SECTION
================================================================= */

.featured-collection {
    padding: var(--space-24) 0;
    background: var(--neutral-50);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: 20px;
    color: var(--neutral-600);
    max-width: 600px;
    margin: 0 auto;
}

/* =================================================================
   SPLIT SECTION - IMAGE + TEXT
================================================================= */

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.split-section.reverse {
    direction: rtl;
}

.split-section.reverse > * {
    direction: ltr;
}

.split-image {
    position: relative;
    overflow: hidden;
    background: var(--neutral-200);
}

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

.split-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-16);
    background: white;
}

.split-content-inner {
    max-width: 500px;
}

.split-content h2 {
    font-size: 40px;
    margin-bottom: var(--space-6);
}

.split-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--neutral-600);
    margin-bottom: var(--space-8);
}

@media (max-width: 968px) {
    .split-section {
        grid-template-columns: 1fr;
    }
    .split-image {
        min-height: 400px;
    }
}

/* =================================================================
   TESTIMONIALS SLIDER
================================================================= */

.testimonials-section {
    padding: var(--space-24) 0;
    background: white;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-item {
    padding: var(--space-10);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: var(--space-1);
    color: var(--accent-gold-300);
    font-size: 24px;
    margin-bottom: var(--space-6);
}

.testimonial-text {
    font-size: 24px;
    line-height: 1.6;
    color: var(--neutral-800);
    margin-bottom: var(--space-6);
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--neutral-900);
}

.testimonial-verified {
    font-size: 14px;
    color: var(--success-500);
    margin-top: var(--space-2);
}

/* =================================================================
   CTA SECTION - CENTERED
================================================================= */

.cta-section {
    padding: var(--space-24) 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    color: white;
}

.cta-section h2 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: var(--space-6);
    color: white;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: var(--space-10);
    opacity: 0.9;
}

.cta-button-white {
    background: white;
    color: var(--primary-500);
    padding: var(--space-5) var(--space-12);
    font-size: 18px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-button-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0,0,0,0.3);
}

/* =================================================================
   NEWSLETTER SECTION
================================================================= */

.newsletter-section {
    padding: var(--space-20) 0;
    background: var(--neutral-100);
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.newsletter-subtitle {
    font-size: 18px;
    color: var(--neutral-600);
    margin-bottom: var(--space-8);
}

.newsletter-form {
    display: flex;
    gap: var(--space-3);
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: var(--space-4);
    font-size: 16px;
    border: 2px solid var(--neutral-300);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.newsletter-button {
    padding: var(--space-4) var(--space-8);
    background: var(--primary-500);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.newsletter-button:hover {
    background: var(--primary-600);
}

@media (max-width: 640px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* =================================================================
   STICKY ADD TO CART BAR (Mobile)
================================================================= */

.sticky-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: var(--space-4);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cart-bar.visible {
    transform: translateY(0);
}

.sticky-cart-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    gap: var(--space-4);
}

.sticky-cart-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-500);
}

.sticky-cart-button {
    flex: 1;
    padding: var(--space-4);
    background: var(--primary-500);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

/* =================================================================
   ANIMATIONS
================================================================= */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* =================================================================
   LOADING STATES
================================================================= */

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* =================================================================
   SCROLLBAR STYLING
================================================================= */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--neutral-100);
}

::-webkit-scrollbar-thumb {
    background: var(--neutral-400);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-500);
}
