/**
 * Collection Details Page Styles - Premium Design
 * High specificity selectors to override global styles
 */

:root {
    --dark-bg: #212529;
    --black: #000000;
    --white: #ffffff;
    --text-color: #333;
    --text-light: #666;
    --text-muted: #6c757d;
    --border-color: #e5e5e5;
    --bg-light: #f8f9fa;
    --transition-medium: 0.3s ease;
    --transition-fast: 0.2s ease;
    --accent-color: #212529;
}

/* Page Wrapper */
.collection-page-wrapper {
    min-height: 100vh;
    background: var(--white);
    overflow-x: hidden;
}

/* ============================================
   BANNER SECTION
   ============================================ */
.collection-banner {
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.collection-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.collection-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.collection-banner-title {
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.collection-banner-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.9;
}

.collection-banner-breadcrumbs {
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    letter-spacing: 1px;
}

.collection-banner-breadcrumbs a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

.collection-banner-breadcrumbs a:hover {
    color: var(--white);
    text-decoration: underline;
}

.collection-banner-breadcrumbs .separator {
    margin: 0 12px;
    opacity: 0.6;
}

.collection-banner-breadcrumbs .current {
    color: var(--white);
    font-weight: 600;
}

/* ============================================
   CONTAINER
   ============================================ */
.collection-page-wrapper .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ============================================
   DESCRIPTION SECTION
   ============================================ */
.description-section {
    padding: 70px 0;
    background: var(--white);
}

.description-box {
    background: var(--bg-light);
    padding: 45px 50px;
    border: 1px solid var(--border-color);
    position: relative;
}

.description-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--dark-bg);
}

[dir="rtl"] .description-box::before {
    left: auto;
    right: 0;
}

.description-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

[dir="rtl"] .description-title {
    text-align: right;
}

.description-content {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-light);
}

[dir="rtl"] .description-content {
    text-align: right;
}

.description-content p {
    margin: 0 0 15px 0;
}

.description-content p:last-child {
    margin-bottom: 0;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.collection-page-wrapper .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 15px;
    padding: 8px 20px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
}

.collection-page-wrapper .section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    line-height: 1.2;
    letter-spacing: 1px;
}

.section-underline {
    display: none;
}

/* ============================================
   PRODUCT SECTIONS
   ============================================ */
.best-sellers-section {
    padding: 70px 0;
    background: var(--white);
}

.all-products-section {
    padding: 70px 0;
    background: var(--bg-light);
}

/* ============================================
   PRODUCT GRIDS
   ============================================ */
.collection-page-wrapper .best-sellers-grid,
.collection-page-wrapper .products-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 25px !important;
}

.collection-page-wrapper .best-sellers-grid > .product-card-ultimate,
.collection-page-wrapper .products-grid > .product-card-ultimate {
    width: calc(33.333% - 17px) !important;
    flex: 0 0 calc(33.333% - 17px) !important;
}

/* ============================================
   PRODUCT CARDS - HIGH SPECIFICITY OVERRIDES
   ============================================ */
.collection-page-wrapper .product-card-ultimate {
    background: var(--white) !important;
    border: 1px solid var(--border-color) !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    border-radius: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
}

.collection-page-wrapper .product-card-ultimate:hover {
    border-color: var(--dark-bg) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-8px) !important;
}

/* Image Container */
.collection-page-wrapper .product-card-ultimate .card-image-container {
    height: 280px !important;
    overflow: hidden !important;
    background: var(--bg-light) !important;
    position: relative !important;
    border-radius: 0 !important;
    border-bottom: 1px solid var(--border-color) !important;
}

.collection-page-wrapper .product-card-ultimate .card-image-wrapper {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

.collection-page-wrapper .product-card-ultimate .card-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    border-radius: 0 !important;
}

.collection-page-wrapper .product-card-ultimate:hover .card-image {
    transform: scale(1.08) !important;
}

/* Badges */
.collection-page-wrapper .product-card-ultimate .card-badges {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    z-index: 3 !important;
}

[dir="rtl"] .collection-page-wrapper .product-card-ultimate .card-badges {
    left: auto !important;
    right: 15px !important;
}

.collection-page-wrapper .product-card-ultimate .badge {
    background: var(--dark-bg) !important;
    color: var(--white) !important;
    padding: 6px 12px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 0 !important;
    display: inline-block !important;
}

.collection-page-wrapper .product-card-ultimate .badge-sale {
    background: #e63946 !important;
}

.collection-page-wrapper .product-card-ultimate .badge-new {
    background: #2d6a4f !important;
}

.collection-page-wrapper .product-card-ultimate .badge-featured {
    background: var(--dark-bg) !important;
}

/* Quick Actions */
.collection-page-wrapper .product-card-ultimate .quick-actions {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    opacity: 0 !important;
    transform: translateX(15px) !important;
    transition: all 0.35s ease !important;
    z-index: 4 !important;
}

[dir="rtl"] .collection-page-wrapper .product-card-ultimate .quick-actions {
    right: auto !important;
    left: 15px !important;
    transform: translateX(-15px) !important;
}

.collection-page-wrapper .product-card-ultimate:hover .quick-actions {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.collection-page-wrapper .product-card-ultimate .quick-action-btn {
    width: 40px !important;
    height: 40px !important;
    border-radius: 0 !important;
    background: var(--white) !important;
    border: 1px solid var(--border-color) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    color: var(--dark-bg) !important;
    font-size: 14px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

.collection-page-wrapper .product-card-ultimate .quick-action-btn:hover {
    background: var(--dark-bg) !important;
    color: var(--white) !important;
    border-color: var(--dark-bg) !important;
    transform: scale(1.1) !important;
}

/* Image Overlay - Hidden */
.collection-page-wrapper .product-card-ultimate .image-overlay {
    display: none !important;
}

/* Card Content */
.collection-page-wrapper .product-card-ultimate .card-content {
    padding: 22px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    background: var(--white) !important;
}

/* Category */
.collection-page-wrapper .product-card-ultimate .card-category {
    font-size: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: var(--text-muted) !important;
    margin-bottom: 8px !important;
    text-decoration: none !important;
    display: block !important;
    font-weight: 600 !important;
    transition: color 0.2s ease !important;
}

.collection-page-wrapper .product-card-ultimate .card-category:hover {
    color: var(--dark-bg) !important;
}

/* Title */
.collection-page-wrapper .product-card-ultimate .card-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--black) !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.4 !important;
    letter-spacing: 0.3px !important;
}

.collection-page-wrapper .product-card-ultimate .card-title a {
    color: inherit !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.collection-page-wrapper .product-card-ultimate .card-title a:hover {
    color: var(--text-muted) !important;
}

/* Rating */
.collection-page-wrapper .product-card-ultimate .card-rating {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 12px !important;
}

.collection-page-wrapper .product-card-ultimate .rating-stars {
    display: flex !important;
    gap: 2px !important;
}

.collection-page-wrapper .product-card-ultimate .rating-stars i {
    font-size: 12px !important;
    color: #f4b942 !important;
}

.collection-page-wrapper .product-card-ultimate .rating-stars i.far {
    color: #ddd !important;
}

.collection-page-wrapper .product-card-ultimate .rating-count {
    font-size: 11px !important;
    color: var(--text-muted) !important;
    font-weight: 500 !important;
}

/* Description - Hidden */
.collection-page-wrapper .product-card-ultimate .card-description {
    display: none !important;
}

/* Price Section */
.collection-page-wrapper .product-card-ultimate .card-price-section {
    margin: 12px 0 !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.collection-page-wrapper .product-card-ultimate .price-current {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: var(--black) !important;
    letter-spacing: 0.5px !important;
}

.collection-page-wrapper .product-card-ultimate .price-original {
    font-size: 14px !important;
    color: var(--text-muted) !important;
    text-decoration: line-through !important;
    font-weight: 500 !important;
}

.collection-page-wrapper .product-card-ultimate .price-discount {
    display: none !important;
}

/* Action Button Container */
.collection-page-wrapper .product-card-ultimate .card-action {
    margin-top: auto !important;
    padding-top: 15px !important;
}

/* Add to Cart Button */
.collection-page-wrapper .product-card-ultimate .add-to-cart-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 14px 18px !important;
    background: var(--dark-bg) !important;
    color: var(--white) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    border: 2px solid var(--dark-bg) !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.collection-page-wrapper .product-card-ultimate .add-to-cart-btn:hover {
    background: var(--white) !important;
    color: var(--dark-bg) !important;
}

.collection-page-wrapper .product-card-ultimate .add-to-cart-btn i {
    font-size: 13px !important;
}

/* Out of Stock & Notify Me */
.collection-page-wrapper .product-card-ultimate .out-of-stock-btn,
.collection-page-wrapper .product-card-ultimate .notify-me-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    padding: 12px 16px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
}

.collection-page-wrapper .product-card-ultimate .out-of-stock-btn {
    background: #f5f5f5 !important;
    color: var(--text-muted) !important;
    border: 1px solid var(--border-color) !important;
    margin-bottom: 8px !important;
    cursor: not-allowed !important;
}

.collection-page-wrapper .product-card-ultimate .notify-me-btn {
    background: var(--white) !important;
    color: var(--dark-bg) !important;
    border: 2px solid var(--dark-bg) !important;
}

.collection-page-wrapper .product-card-ultimate .notify-me-btn:hover {
    background: var(--dark-bg) !important;
    color: var(--white) !important;
}

/* ============================================
   EMPTY STATE
   ============================================ */
.no-products-found {
    padding: 100px 20px;
    text-align: center;
}

.empty-state-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-state-svg {
    width: 55px;
    height: 55px;
    fill: var(--white);
}

.empty-state-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.empty-state-description {
    font-size: 15px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.empty-state-action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--dark-bg);
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border: 2px solid var(--dark-bg);
}

.empty-state-action:hover {
    background: var(--white);
    color: var(--dark-bg);
}

.empty-state-action svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination .page-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--text-color);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: all 0.25s ease;
}

.pagination .page-link:hover {
    background: var(--dark-bg);
    color: var(--white);
    border-color: var(--dark-bg);
}

.pagination .page-item.active .page-link {
    background: var(--dark-bg);
    color: var(--white);
    border-color: var(--dark-bg);
}

/* ============================================
   OTHER COLLECTIONS SECTION
   ============================================ */
.other-collections-section {
    padding: 70px 0;
    background: var(--white);
}

.other-collections-slider {
    margin-top: 40px;
}

.other-collections-slider .swiper-slide {
    height: auto;
}

.other-collection-card {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.other-collection-card:hover {
    border-color: var(--dark-bg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.other-collection-image {
    height: 220px;
    overflow: hidden;
    background: var(--bg-light);
}

.other-collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.other-collection-card:hover .other-collection-image img {
    transform: scale(1.08);
}

.other-collection-content {
    padding: 25px;
}

.other-collection-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.other-collection-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
}

.other-collection-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-bg);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
}

.other-collection-link:hover {
    color: var(--black);
    gap: 15px;
}

.other-collection-link i {
    transition: transform 0.2s ease;
}

.other-collection-card:hover .other-collection-link i {
    transform: translateX(4px);
}

[dir="rtl"] .other-collection-card:hover .other-collection-link i {
    transform: translateX(-4px);
}

/* ============================================
   RTL SUPPORT
   ============================================ */
[dir="rtl"] .collection-page-wrapper .product-card-ultimate .card-category,
[dir="rtl"] .collection-page-wrapper .product-card-ultimate .card-title {
    text-align: right;
}

[dir="rtl"] .collection-page-wrapper .product-card-ultimate .card-price-section {
    direction: rtl;
}

/* ============================================
   RESPONSIVE - 1200px
   ============================================ */
@media (max-width: 1200px) {
    .collection-page-wrapper .best-sellers-grid,
    .collection-page-wrapper .products-grid {
        gap: 22px !important;
    }

    .collection-page-wrapper .best-sellers-grid > .product-card-ultimate,
    .collection-page-wrapper .products-grid > .product-card-ultimate {
        width: calc(33.333% - 15px) !important;
        flex: 0 0 calc(33.333% - 15px) !important;
    }

    .collection-page-wrapper .product-card-ultimate .card-image-container {
        height: 250px !important;
    }
}

/* ============================================
   RESPONSIVE - 992px (Tablet)
   ============================================ */
@media (max-width: 992px) {
    .collection-page-wrapper .best-sellers-grid,
    .collection-page-wrapper .products-grid {
        gap: 18px !important;
    }

    .collection-page-wrapper .best-sellers-grid > .product-card-ultimate,
    .collection-page-wrapper .products-grid > .product-card-ultimate {
        width: calc(50% - 9px) !important;
        flex: 0 0 calc(50% - 9px) !important;
    }

    .collection-banner {
        min-height: 400px;
    }

    .collection-banner-title {
        font-size: 40px;
    }

    .collection-page-wrapper .section-title {
        font-size: 30px;
    }

    .collection-page-wrapper .product-card-ultimate .card-image-container {
        height: 220px !important;
    }

    .collection-page-wrapper .product-card-ultimate .card-content {
        padding: 18px !important;
    }

    .description-box {
        padding: 35px 40px;
    }

}

/* ============================================
   RESPONSIVE - 768px (Mobile)
   ============================================ */
@media (max-width: 768px) {
    .collection-banner {
        min-height: 350px;
        margin-top: 20px;
    }

    .collection-banner-title {
        font-size: 34px;
    }

    .collection-banner-subtitle {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .collection-page-wrapper .container {
        padding: 0 20px;
    }

    .description-section,
    .best-sellers-section,
    .all-products-section,
    .other-collections-section {
        padding: 50px 0;
    }

    .description-box {
        padding: 28px 30px;
    }

    .description-title {
        font-size: 22px;
    }

    .collection-page-wrapper .section-header {
        margin-bottom: 35px;
    }

    .collection-page-wrapper .section-title {
        font-size: 26px;
    }

    .section-label {
        font-size: 10px;
        padding: 6px 15px;
    }

    .collection-page-wrapper .product-card-ultimate .card-image-container {
        height: 180px !important;
    }

    .collection-page-wrapper .product-card-ultimate .card-content {
        padding: 16px !important;
    }

    .collection-page-wrapper .product-card-ultimate .card-title {
        font-size: 14px !important;
    }

    .collection-page-wrapper .product-card-ultimate .price-current {
        font-size: 16px !important;
    }

    .collection-page-wrapper .product-card-ultimate .price-original {
        font-size: 13px !important;
    }

    .collection-page-wrapper .product-card-ultimate .add-to-cart-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
        gap: 6px !important;
        padding: 10px 8px !important;
        font-size: 11px !important;
    }

    .collection-page-wrapper .product-card-ultimate .quick-actions {
        display: none !important;
    }

    /* Products - 2 per row on mobile */
    .collection-page-wrapper .best-sellers-grid,
    .collection-page-wrapper .products-grid {
        gap: 16px !important;
    }

    .collection-page-wrapper .best-sellers-grid > .product-card-ultimate,
    .collection-page-wrapper .products-grid > .product-card-ultimate {
        width: calc(50% - 8px) !important;
        flex: 0 0 calc(50% - 8px) !important;
    }

    /* Other Collections responsive */
    .other-collection-image {
        height: 180px;
    }

    .other-collection-content {
        padding: 18px;
    }

    .other-collection-title {
        font-size: 16px;
    }

    .other-collection-description {
        font-size: 13px;
        margin-bottom: 12px;
    }
}

/* ============================================
   RESPONSIVE - 480px (Small Mobile)
   ============================================ */
@media (max-width: 480px) {
    .collection-banner {
        min-height: 300px;
        margin-top: 25px;
    }

    .collection-banner-title {
        font-size: 28px;
    }

    .collection-banner-subtitle {
        font-size: 11px;
    }

    .collection-page-wrapper .best-sellers-grid,
    .collection-page-wrapper .products-grid {
        gap: 12px !important;
    }

    .collection-page-wrapper .best-sellers-grid > .product-card-ultimate,
    .collection-page-wrapper .products-grid > .product-card-ultimate {
        width: calc(50% - 6px) !important;
        flex: 0 0 calc(50% - 6px) !important;
    }

    .collection-page-wrapper .product-card-ultimate .card-image-container {
        height: 160px !important;
    }

    .collection-page-wrapper .product-card-ultimate .card-content {
        padding: 14px !important;
    }

    .collection-page-wrapper .product-card-ultimate .card-category {
        font-size: 9px !important;
        margin-bottom: 6px !important;
    }

    .collection-page-wrapper .product-card-ultimate .card-title {
        font-size: 13px !important;
        margin-bottom: 8px !important;
    }

    .collection-page-wrapper .product-card-ultimate .card-rating {
        margin-bottom: 8px !important;
    }

    .collection-page-wrapper .product-card-ultimate .rating-stars i {
        font-size: 10px !important;
    }

    .collection-page-wrapper .product-card-ultimate .price-current {
        font-size: 15px !important;
    }

    .collection-page-wrapper .product-card-ultimate .card-price-section {
        margin: 8px 0 !important;
    }

    .collection-page-wrapper .product-card-ultimate .add-to-cart-btn {
        padding: 11px 12px !important;
        font-size: 9px !important;
        letter-spacing: 1px !important;
    }

    .collection-page-wrapper .product-card-ultimate .card-action {
        padding-top: 12px !important;
    }

    .description-section,
    .best-sellers-section,
    .all-products-section,
    .other-collections-section {
        padding: 40px 0;
    }

    .description-box {
        padding: 22px 25px;
    }

    .collection-page-wrapper .section-title {
        font-size: 22px;
    }

    /* Other Collections responsive */
    .other-collection-image {
        height: 150px;
    }

    .other-collection-content {
        padding: 14px;
    }

    .other-collection-title {
        font-size: 14px;
    }

    .other-collection-description {
        font-size: 12px;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .other-collection-link {
        font-size: 11px;
    }
}
