/**
* 2007-2025 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
*  @author    Seldom Group <contact@seldomgroup.com>
*  @copyright 2007-2025 Seldom Group
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*/

.sg-newproducts-homepage-slider {
    padding: 40px 0 120px;
    background-color: #fff;
}

.sg-newproducts-homepage-slider-inner {
    position: relative;
}

.sg-newproducts-main-title-wrapper {
    text-align: center;
    margin-bottom: 70px;
}

.sg-newproducts-main-title h2 {
    font-size: 32px;
    font-weight: 400;
    color: #000;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
	font-family: 'Graphik', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}

/* New divider matching other sections */
.sg-newproducts-divider {
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #B88452 0%, rgba(184, 132, 82, 0.3) 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

.sg-newproducts-all-product {
    width: 100%;
    margin: 0 auto;
}

.sg-newproducts-all-product-wrapper {
    overflow: hidden;
    margin: 0 -15px;
}

.sg-newproducts-all-product-content-box {
    width: 100%;
}

.sg-newproducts-all-product-slider {
    margin: 0;
}

.sg-newproducts-all-product-slider .item {
    padding: 0 15px;
}

.sg-newproducts-not-found {
    text-align: center;
    padding: 40px 0;
    font-size: 16px;
    color: #666;
}

/* Product spacing - ensures spacing between name and price like original module */
.sg-newproducts-all-product-slider .tvproduct-name {
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 1289px) {
	.sg-newproducts-all-product-slider .item {
		padding: 0 5px;
	}
}

@media (max-width: 1209px) {
	.sg-newproducts-all-product-slider .tv-product-price {
		margin-top: 36px;
	}
}

@media (max-width: 991px) {
    .sg-newproducts-main-title h2 {
        font-size: 28px;
    }
	.sg-newproducts-all-product-slider .tv-product-price {
		margin-top: 0px;
	}
}

@media (max-width: 767px) {
    .sg-newproducts-homepage-slider {
        padding: 30px 0;
    }

    .sg-newproducts-main-title h2 {
        font-size: 24px;
    }

    .sg-newproducts-main-title-wrapper {
        margin-bottom: 20px;
    }

    .sg-newproducts-all-product-wrapper {
        margin: 0 -10px;
    }

    .sg-newproducts-all-product-slider .item {
        padding: 0 10px;
    }
}

@media (max-width: 597px) {
	.sg-newproducts-all-product-slider .item {
		padding: 0 2px;
	}
}

@media (max-width: 525px) {
	.sg-newproducts-all-product-slider .tv-product-price {
		margin-top: 15px;
	}
}

/* Button styling - matching sg_homepagecms */
.sg-newproducts-button-wrapper {
    text-align: center;
    margin-top: 50px;
    padding: 20px 0;
}

.sg-newproducts-view-all-btn.homepage-but {
    border-radius: 0px !important;
    background-color: #000000 !important;
    border: 1px solid #000000 !important;
    color: white;
    padding: 30px 100px !important;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 300;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sg-newproducts-view-all-btn.homepage-but:hover {
    border-radius: 0px !important;
    color: #000000;
    background-color: #b4aaa0 !important;
    text-decoration: none;
}

.sg-newproducts-view-all-btn.homepage-but:focus {
    border-radius: 0px !important;
    color: #B88452;
    outline: none;
    text-decoration: none;
}

/* Responsive button */
@media (max-width: 767px) {
    .sg-newproducts-button-wrapper {
        margin-top: 30px;
    }

    .sg-newproducts-view-all-btn.homepage-but {
        padding: 20px 60px !important;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .sg-newproducts-view-all-btn.homepage-but {
        padding: 15px 40px !important;
        font-size: 13px;
    }
}