/* Shopping Page Styles */

/* Bootstrap Container Override */
.container {
    max-width: 1400px !important;
}

/* Shop By Category Section */
.shop-category-section {
    padding: 80px 20px;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    color: #333;
    margin-bottom: 60px;
    font-family: 'Playfair Display', serif;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
}

.category-item {
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.category-item:hover .category-circle {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.category-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.category-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    transition: border-color 0.3s ease;
    border-bottom: 2px solid transparent;
    display: inline-block;
    padding-bottom: 2px;
}

.category-item:hover .category-name {
    border-bottom-color: #D2A679;
}
/* Shop By Style Section */
.shop-style-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.style-content {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.style-text {
    padding-right: 40px;
}

.style-title {
    font-size: 48px;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.style-highlight {
    font-size: 72px;
    font-weight: 400;
    display: block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.style-description {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

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

.style-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16/10;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.style-card:hover {
    transform: scale(1.02);
}

.style-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 30px 25px;
}

.style-card-title {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 2px;
}

/* Hosting Essentials Section */
.hosting-section {
    padding: 80px 20px;
    background: #fff;
}

.hosting-carousel-wrapper {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}

.hosting-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
}

.hosting-carousel::-webkit-scrollbar {
    display: none;
}

.hosting-item {
    flex: 0 0 280px;
}

.hosting-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.hosting-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.hosting-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    outline: none;
}

.carousel-nav-btn:hover {
    background: #B8845F;
    border-color: #B8845F;
    color: #fff;
}

.carousel-nav-btn:focus {
    outline: none;
    box-shadow: none;
}

.carousel-nav-btn i {
    font-size: 16px;
    color: #333;
    transition: color 0.3s ease;
}

.carousel-nav-btn:hover i {
    color: #fff;
}

.prev-hosting {
    left: -20px;
}

.next-hosting {
    right: -20px;
}

/* Limited-Time Deals Section */
.deals-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.deals-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.deals-nav {
    display: flex;
    gap: 10px;
}

.deals-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.deals-nav-btn:hover {
    background: #B8845F;
    border-color: #B8845F;
}

.deals-nav-btn:focus {
    outline: none;
    box-shadow: none;
}

.deals-nav-btn i {
    font-size: 14px;
    color: #333;
    transition: color 0.3s ease;
}

.deals-nav-btn:hover i {
    color: #fff;
}

.deals-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    max-width: 1440px;
    margin: 0 auto;
    scrollbar-width: none;
}

.deals-carousel::-webkit-scrollbar {
    display: none;
}

.deal-card {
    flex: 0 0 320px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
}

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

.deal-images {
    position: relative;
}

.deal-main-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.deal-thumbnails {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.deal-thumbnails img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.deal-info {
    padding: 20px;
    position: relative;
}

.deal-discount {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #333;
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
}

.deal-brand {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    margin-top: 10px;
}

.deal-offer {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #D2A679;
    margin-bottom: 15px;
}

.btn-deal-shop {
    display: inline-block;
    width: auto;
    margin: 0 20px 20px;
    padding: 8px 30px;
    background: linear-gradient(135deg, #D2A679 0%, #B8845F 50%, #8B5A3C 100%);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(184, 132, 95, 0.3);
}

.btn-deal-shop:hover {
    background: linear-gradient(135deg, #C0935E 0%, #A0714A 50%, #704A2E 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 132, 95, 0.5);
    color: #fff;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .style-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .style-text {
        padding-right: 0;
        text-align: center;
    }
    
    .style-title {
        font-size: 40px;
    }
    
    .style-highlight {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .shop-category-section,
    .shop-style-section,
    .hosting-section,
    .deals-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .category-circle {
        width: 120px;
        height: 120px;
    }
    
    .category-name {
        font-size: 12px;
    }
    
    .style-title {
        font-size: 32px;
    }
    
    .style-highlight {
        font-size: 48px;
    }
    
    .style-grid {
        grid-template-columns: 1fr;
    }
    
    .hosting-item {
        flex: 0 0 240px;
    }
    
    .hosting-card img {
        height: 240px;
    }
    
    .carousel-nav-btn {
        display: none;
    }
    
    .deals-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .deal-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .shop-category-section,
    .shop-style-section,
    .hosting-section,
    .deals-section {
        padding: 100px 20px;
    }
    
    .category-circle {
        width: 100px;
        height: 100px;
    }
    
    .category-name {
        font-size: 11px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .style-title {
        font-size: 28px;
    }
    
    .style-highlight {
        font-size: 40px;
    }
    
    .style-description {
        font-size: 14px;
    }
    
    .hosting-item {
        flex: 0 0 200px;
    }
    
    .hosting-card img {
        height: 200px;
    }
    
    .deal-card {
        flex: 0 0 260px;
    }
    
    .deal-main-img {
        height: 240px;
    }
}
