.hero {
    padding: 24px 0 48px;
}

.hero__inner {
    background: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    min-height: 500px;
}

@media (min-width: 900px) {
    .hero__inner {
        grid-template-columns: 1fr 1fr;
        min-height: 560px;
    }
}

.hero__content {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 900px) {
    .hero__content {
        padding: 60px;
    }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-gray-100);
    color: #334155;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    width: fit-content;
}

.hero__badge svg {
    width: 16px;
    height: 16px;
}

.hero__title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-black);
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 48px;
    }
}

.hero__title span {
    color: #334155;
}

.hero__desc {
    font-size: 17px;
    color: var(--color-gray-500);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 440px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn--primary {
    background: var(--color-orange);
    color: white;
}

.btn--primary:hover {
    background: var(--color-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--color-gray-700);
    border: 2px solid var(--color-gray-200);
}

.btn--outline:hover {
    border-color: var(--color-gray-300);
    background: var(--color-gray-50);
}

.btn svg {
    width: 20px;
    height: 20px;
}

.hero__image {
    background: linear-gradient(135deg, var(--color-orange-light) 0%, #fef3c7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.hero__image img {
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

.hero__image::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.usp-bar {
    padding: 0 0 40px;
}

.usp-bar__inner {
    background: var(--color-white);
    border-radius: 16px;
    padding: 24px 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (min-width: 768px) {
    .usp-bar__inner {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.usp-item__icon {
    width: 48px;
    height: 48px;
    background: var(--color-green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.usp-item__icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-green);
}

.usp-item__text {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-700);
    line-height: 1.4;
}

.categories {
    padding: 0 0 64px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header__title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-header__desc {
    font-size: 16px;
    color: var(--color-gray-500);
    max-width: 500px;
    margin: 0 auto;
}

.categories__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .categories__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.category-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.1);
}

.category-card__image {
    aspect-ratio: 1;
    background: var(--color-gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.category-card__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.category-card:hover .category-card__image img {
    transform: scale(1.08);
}

.category-card__info {
    padding: 20px;
    text-align: center;
}

.category-card__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 4px;
}

.category-card__count {
    font-size: 13px;
    color: var(--color-gray-400);
}

.featured {
    padding: 0 0 64px;
}

.featured__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.featured__title {
    font-size: 28px;
    font-weight: 800;
}

.featured__link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition: gap 0.2s;
}

.featured__link:hover {
    gap: 12px;
}

.featured__link svg {
    width: 20px;
    height: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.product-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.1);
}

.product-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-card__badge {
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
}

.product-card__badge--sale {
    background: var(--color-red);
    color: white;
}

.product-card__badge--new {
    background: var(--color-green);
    color: white;
}

.product-card__wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s;
}

.product-card:hover .product-card__wishlist {
    opacity: 1;
    transform: scale(1);
}

.product-card__wishlist:hover {
    background: var(--color-red);
}

.product-card__wishlist svg {
    width: 20px;
    height: 20px;
    color: var(--color-gray-400);
}

.product-card__wishlist:hover svg {
    color: white;
}

.product-card__image {
    aspect-ratio: 1;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-50);
    text-decoration: none;
}

.product-card__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__info {
    padding: 20px;
}

.product-card__category {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.product-card__name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-card__name a {
    color: var(--color-black);
    text-decoration: none;
}

.product-card__name a:hover {
    color: #334155;
}

.product-card__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.product-card__price-from {
    font-size: 13px;
    color: var(--color-gray-400);
}

.product-card__price-current {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-black);
}

.product-card__price-current .woocommerce-Price-amount {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-black);
}

.product-card__price-old {
    font-size: 14px;
    color: var(--color-gray-400);
    text-decoration: line-through;
}

.banner {
    padding: 0 0 64px;
}

.banner__inner {
    background: linear-gradient(135deg, var(--color-black) 0%, #374151 100%);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 900px) {
    .banner__inner {
        grid-template-columns: 1fr 1fr;
    }
}

.banner__content {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 900px) {
    .banner__content {
        padding: 60px;
    }
}

.banner__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    width: fit-content;
}

.banner__title {
    font-size: 32px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .banner__title {
        font-size: 40px;
    }
}

.banner__desc {
    font-size: 16px;
    color: #dfdfdf;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 400px;
}

.banner__image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

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

.made-italy-section {
    padding: 0 0 64px;
}

.made-italy-section__inner {
    background: var(--color-white);
    border-radius: 24px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    align-items: center;
}

@media (min-width: 900px) {
    .made-italy-section__inner {
        grid-template-columns: 1fr 1.2fr;
        padding: 60px;
    }
}

.made-italy-section__flag {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.made-italy-section__flag span {
    width: 8px;
    height: 40px;
    border-radius: 4px;
}

.made-italy-section__flag span:nth-child(1) {
    background: #008c45;
}

.made-italy-section__flag span:nth-child(2) {
    background: #f4f5f0;
}

.made-italy-section__flag span:nth-child(3) {
    background: #cd212a;
}

.made-italy-section__title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.made-italy-section__desc {
    font-size: 16px;
    color: var(--color-gray-500);
    line-height: 1.8;
    margin-bottom: 24px;
}

.made-italy-section__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat {
    text-align: center;
}

.stat__number {
    font-size: 36px;
    font-weight: 900;
    color: #334155;
    line-height: 1;
    margin-bottom: 4px;
}

.stat__label {
    font-size: 13px;
    color: var(--color-gray-500);
    font-weight: 500;
}

.made-italy-section__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.made-italy-section__image img {
    max-width: 100%;
    border-radius: 16px;
}

.newsletter {
    padding: 0 0 64px;
}

.newsletter__inner {
    background: var(--color-orange);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .newsletter__inner {
        padding: 60px;
    }
}

.newsletter__title {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.newsletter__desc {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

@media (min-width: 600px) {
    .newsletter__form {
        flex-direction: row;
    }
}

.newsletter__input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    background: white;
}

.newsletter__input:focus {
    outline: 3px solid rgba(255,255,255,0.5);
    outline-offset: 2px;
}

.newsletter__btn {
    padding: 16px 32px;
    background: var(--color-black);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.newsletter__btn:hover {
    background: transparent;
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
