/* ========================================
   HOMEPAGE - LICENZE SHOP
   Design System
   ======================================== */

/* ---------- LAYOUT ---------- */
#ls-homepage {
    overflow-x: hidden;
}

#ls-homepage .storefront-breadcrumb,
#ls-homepage .entry-header {
    display: none !important;
}

.ls-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.ls-section {
    padding: 80px 0;
}

.ls-section--alt {
    background-color: #F8F5FA;
}

.ls-section__header {
    text-align: center;
    margin-bottom: 50px;
}

.ls-section__title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.2rem;
    font-weight: 700;
    color: #000222;
    margin-bottom: 12px;
    line-height: 1.2;
}

.ls-section__subtitle {
    font-family: 'Lato', sans-serif !important;
    font-size: 1.1rem;
    color: #4A4A6A;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.ls-section__cta {
    text-align: center;
    margin-top: 40px;
}

/* ---------- BUTTONS ---------- */
.ls-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 10px;
    padding: 14px 28px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    letter-spacing: 0.3px;
    border: 2px solid transparent;
}

.ls-btn--primary {
    background: linear-gradient(135deg, #7B2D8E 0%, #9B4DB0 100%);
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(123, 45, 142, 0.35);
}

.ls-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(123, 45, 142, 0.45);
    color: #fff !important;
}

.ls-btn--outline {
    background: transparent;
    color: #7B2D8E !important;
    border: 2px solid #7B2D8E;
}

.ls-btn--outline:hover {
    background: #7B2D8E;
    color: #fff !important;
    transform: translateY(-2px);
}

.ls-btn--white {
    background: #fff;
    color: #7B2D8E !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.ls-btn--white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: #5E1F6D !important;
}

.ls-btn--lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.ls-hero {
    position: relative;
    background: linear-gradient(135deg, #0D0028 0%, #1A0040 30%, #2D0A5E 60%, #3D1270 100%);
    padding: 80px 0 100px;
    overflow: hidden;
}

.ls-hero__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ls-hero__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.ls-hero__shape--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #9B4DB0 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: ls-float 8s ease-in-out infinite;
}

.ls-hero__shape--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #7B2D8E 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation: ls-float 10s ease-in-out infinite reverse;
}

.ls-hero__shape--3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #B86FCC 0%, transparent 70%);
    top: 50%;
    left: 40%;
    animation: ls-float 6s ease-in-out infinite;
}

@keyframes ls-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.ls-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ls-hero__badge {
    display: inline-block;
    background: rgba(155, 77, 176, 0.2);
    border: 1px solid rgba(155, 77, 176, 0.3);
    color: #C88FDB;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ls-hero__title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 3.2rem;
    font-weight: 800;
    color: #FFFFFF !important;
    line-height: 1.15;
    margin-bottom: 20px;
}

.ls-hero__title span {
    background: linear-gradient(135deg, #B86FCC 0%, #D4A0E8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ls-hero__subtitle {
    font-family: 'Lato', sans-serif !important;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

.ls-hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.ls-hero__actions .ls-btn--outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff !important;
}

.ls-hero__actions .ls-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.ls-hero__trust-mini {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.ls-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Visual - Floating Cards */
.ls-hero__visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ls-hero__card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
    min-width: 160px;
}

.ls-hero__card:hover {
    transform: scale(1.05);
}

.ls-hero__card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

.ls-hero__card-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
}

.ls-hero__card-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #D4A0E8;
}

.ls-hero__card--1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: ls-card-float 6s ease-in-out infinite;
}

.ls-hero__card--2 {
    bottom: 40px;
    left: 10%;
    animation: ls-card-float 7s ease-in-out infinite 1s;
}

.ls-hero__card--3 {
    bottom: 60px;
    right: 5%;
    animation: ls-card-float 5s ease-in-out infinite 2s;
}

@keyframes ls-card-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.ls-hero__card--1:hover,
.ls-hero__card--2:hover,
.ls-hero__card--3:hover {
    animation-play-state: paused;
    transform: scale(1.08);
}

/* ========================================
   TRUST BAR
   ======================================== */
.ls-trust-bar {
    background: #FFFFFF;
    border-bottom: 1px solid #E8E0ED;
    padding: 28px 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 2, 34, 0.04);
}

.ls-trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ls-trust-bar__item {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.ls-trust-bar__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #F3E5F7, #E8D5F0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7B2D8E;
}

.ls-trust-bar__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ls-trust-bar__text strong {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000222;
}

.ls-trust-bar__text span {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    color: #4A4A6A;
}

/* ========================================
   CATEGORIES GRID
   ======================================== */
.ls-categories__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ls-category-card {
    background: #FFFFFF;
    border: 1px solid #E8E0ED;
    border-radius: 16px;
    padding: 32px 28px;
    text-decoration: none !important;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.ls-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #7B2D8E, #9B4DB0);
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: left;
}

.ls-category-card:hover {
    border-color: #C88FDB;
    box-shadow: 0 12px 40px rgba(123, 45, 142, 0.12);
    transform: translateY(-6px);
}

.ls-category-card:hover::before {
    transform: scaleX(1);
}

.ls-category-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: transform 0.3s ease;
}

.ls-category-card:hover .ls-category-card__icon {
    transform: scale(1.1);
}

.ls-category-card--microsoft .ls-category-card__icon { background: #E8F4FD; color: #0078D4; }
.ls-category-card--office .ls-category-card__icon    { background: #FDF0E8; color: #D83B01; }
.ls-category-card--windows .ls-category-card__icon   { background: #E5F6FE; color: #00A4EF; }
.ls-category-card--norton .ls-category-card__icon     { background: #FFF8E0; color: #FFC800; }
.ls-category-card--eset .ls-category-card__icon       { background: #E5F6FE; color: #00AEEF; }
.ls-category-card--vpn .ls-category-card__icon        { background: #EBF0FF; color: #4687FF; }

.ls-category-card h3 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000222 !important;
    margin: 0 0 8px 0;
}

.ls-category-card p {
    font-family: 'Lato', sans-serif !important;
    font-size: 0.92rem;
    color: #4A4A6A !important;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.ls-category-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #7B2D8E !important;
    transition: gap 0.3s ease;
}

.ls-category-card:hover .ls-category-card__link {
    gap: 10px;
}

/* ========================================
   HOW IT WORKS - STEPS
   ======================================== */
.ls-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.ls-step {
    text-align: center;
    max-width: 220px;
    position: relative;
}

.ls-step__number {
    position: absolute;
    top: -8px;
    right: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #7B2D8E;
    opacity: 0.08;
    line-height: 1;
}

.ls-step__icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, #F3E5F7, #E8D5F0);
    color: #7B2D8E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.3s ease;
}

.ls-step:hover .ls-step__icon {
    background: linear-gradient(135deg, #7B2D8E, #9B4DB0);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(123, 45, 142, 0.3);
}

.ls-step:hover .ls-step__icon svg {
    stroke: #fff;
}

.ls-step h3 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.05rem;
    font-weight: 700;
    color: #000222;
    margin: 0 0 8px 0;
}

.ls-step p {
    font-family: 'Lato', sans-serif !important;
    font-size: 0.9rem;
    color: #4A4A6A;
    line-height: 1.6;
    margin: 0;
}

.ls-step__connector {
    display: flex;
    align-items: center;
    padding-top: 36px;
    flex-shrink: 0;
    margin: 0 8px;
}

/* ========================================
   CTA BANNER
   ======================================== */
.ls-cta-banner {
    background: linear-gradient(135deg, #1A0040 0%, #3D1270 50%, #5E1F6D 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.ls-cta-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(155, 77, 176, 0.3) 0%, transparent 70%);
    top: -100px;
    right: -50px;
}

.ls-cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.ls-cta-banner__content h2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF !important;
    margin: 0 0 12px 0;
}

.ls-cta-banner__content p {
    font-family: 'Lato', sans-serif !important;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75) !important;
    max-width: 550px;
    line-height: 1.7;
    margin: 0;
}

.ls-cta-banner__actions {
    flex-shrink: 0;
}

/* ========================================
   WHY US
   ======================================== */
.ls-why-us__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.ls-why-us__item {
    text-align: center;
    padding: 36px 24px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E8E0ED;
    transition: all 0.3s ease;
}

.ls-why-us__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(123, 45, 142, 0.1);
    border-color: #C88FDB;
}

.ls-why-us__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #F3E5F7, #E8D5F0);
    color: #7B2D8E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.3s ease;
}

.ls-why-us__item:hover .ls-why-us__icon {
    background: linear-gradient(135deg, #7B2D8E, #9B4DB0);
    color: #fff;
}

.ls-why-us__item:hover .ls-why-us__icon svg {
    stroke: #fff;
}

.ls-why-us__item h3 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.05rem;
    font-weight: 700;
    color: #000222;
    margin: 0 0 10px 0;
}

.ls-why-us__item p {
    font-family: 'Lato', sans-serif !important;
    font-size: 0.9rem;
    color: #4A4A6A;
    line-height: 1.65;
    margin: 0;
}

/* ========================================
   BRAND FOOTER
   ======================================== */
.ls-brand-footer {
    background: #F3E5F7;
    padding: 28px 0;
    text-align: center;
    border-top: 1px solid #E8D5F0;
}

.ls-brand-footer p {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: #4A4A6A;
    margin: 0;
}

.ls-brand-footer a {
    color: #7B2D8E;
    font-weight: 700;
    text-decoration: none;
}

.ls-brand-footer a:hover {
    color: #5E1F6D;
    text-decoration: underline;
}

/* ========================================
   HOMEPAGE WOOCOMMERCE PRODUCT OVERRIDES
   ======================================== */
#ls-homepage .woocommerce {
    max-width: 100%;
}

#ls-homepage .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

#ls-homepage .woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
}

#ls-homepage .woocommerce ul.products::before,
#ls-homepage .woocommerce ul.products::after {
    display: none;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .ls-hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ls-hero__visual {
        height: 280px;
    }

    .ls-hero__title {
        font-size: 2.6rem;
    }

    .ls-categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ls-why-us__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ls-trust-bar__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .ls-cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .ls-cta-banner__content p {
        max-width: 100%;
    }

    #ls-homepage .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ls-section {
        padding: 50px 0;
    }

    .ls-hero {
        padding: 50px 0 60px;
    }

    .ls-hero__title {
        font-size: 2rem;
    }

    .ls-hero__subtitle {
        font-size: 1rem;
    }

    .ls-hero__actions {
        flex-direction: column;
    }

    .ls-hero__actions .ls-btn {
        justify-content: center;
    }

    .ls-hero__trust-mini {
        flex-direction: column;
        gap: 10px;
    }

    .ls-hero__visual {
        height: 220px;
    }

    .ls-hero__card {
        padding: 16px;
        min-width: 130px;
    }

    .ls-section__title {
        font-size: 1.7rem;
    }

    .ls-categories__grid {
        grid-template-columns: 1fr;
    }

    .ls-steps {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .ls-step__connector {
        transform: rotate(90deg);
        margin: 0;
        padding: 0;
    }

    .ls-step {
        max-width: 280px;
    }

    .ls-trust-bar__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ls-trust-bar__item {
        justify-content: flex-start;
        padding: 0 12px;
    }

    .ls-why-us__grid {
        grid-template-columns: 1fr;
    }

    .ls-cta-banner {
        padding: 50px 0;
    }

    .ls-cta-banner__content h2 {
        font-size: 1.5rem;
    }

    #ls-homepage .woocommerce ul.products {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .ls-hero__title {
        font-size: 1.7rem;
    }

    .ls-hero__visual {
        display: none;
    }

    .ls-hero {
        padding: 40px 0 50px;
    }

    .ls-section__title {
        font-size: 1.5rem;
    }

    #ls-homepage .woocommerce ul.products {
        grid-template-columns: 1fr;
    }

    .ls-btn--lg {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}
