/* Base Styles */
.container-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

.section-heading h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.section-heading p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Categories Section */
.category-display-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.category-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
}

.category-item {
    text-align: center;
    transition: all 0.3s ease;
}

.category-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: #6e260e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 30px;
    transition: all 0.3s ease;
}

.category-item:hover .category-icon-wrapper {
    background: #996756;
    transform: scale(1.1);
}

.item-title {
    font-size: 18px;
    color: #333;
    margin: 0;
}

/* Exclusive Promos Section */
.special-promos-section {
    padding: 60px 0;
    background: #e2d3ce;
}

.promo-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.promo-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.promo-icon-circle {
    width: 60px;
    height: 60px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fedd2b;
    font-size: 24px;
    flex-shrink: 0;
}

.promo-content h3 {
    font-size: 18px;
    margin: 0 0 10px;
    color: #333;
}

/* Editor's Picks Section */
.editors-picks-section {
    margin: 60px 0;
}

.editor-banner {
	background: linear-gradient(to right, #996756, #996756);
	color: #fff;
	padding: 20px 30px;
	border-radius: 6px 0 0 6px;
	margin-bottom: 40px;
}

.editor-banner h2 {
    font-size: 32px;
    margin: 0 0 10px;
}

.editors-carousel-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.editors-carousel-items {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.editors-store-item {
    flex: 0 0 25%;
    padding: 0 10px;
    transition: all 0.3s ease;
}

.editors-store-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.editors-store-item img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    background: #f5f5f5;
    border-radius: 8px 8px 0 0;
    padding: 20px;
}

.store-info {
    padding: 20px;
    background: #ffffff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.store-info h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-controls button {
    padding: 8px 15px;
    background: #8b513e;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-controls button:hover {
    background: #7c3b26;
}

/* Coupons Sections */
.highlighted-coupons-section,
.recent-coupons-section {
    padding: 60px 0;
}

.highlighted-coupons-section {
    background: #f8f9fa;
}

.coupon-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .editors-store-item {
        flex: 0 0 33.333%;
    }
}

@media (max-width: 992px) {
    .category-grid-layout {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .editors-store-item {
        flex: 0 0 50%;
    }
    
    .promo-grid-layout {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .category-grid-layout {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .editors-store-item {
        flex: 0 0 100%;
    }
    
    .promo-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .section-heading h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .category-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promo-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .editor-banner h2 {
        font-size: 26px;
    }
    
    .editor-banner p {
        font-size: 16px;
    }
}