/* ============================================
   PRODUCTS PAGE STYLES
   Single-page application with existing website colors
   ============================================ */

:root {
    /* Using existing website colors from style.css */
    --primary-color: #1a5490;
    --primary-dark: #0f3a63;
    --secondary-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #7f8c8d;
    --border-color: #ecf0f1;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --success: #28a745;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Cart Badge */
.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 50%;
    min-width: 20px;
    text-align: center;
    display: none;
}

/* ============================================
   HERO SECTION
   ============================================ */

.products-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* ============================================
   SIDEBAR + PRODUCTS LAYOUT
   ============================================ */

.filter-section {
    background: var(--bg-light);
    padding: 0;
    border-bottom: none;
}

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 20px;
    min-height: 80vh;
}

/* ============================================
   CATEGORY SIDEBAR
   ============================================ */

.category-sidebar {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 90px;
    box-shadow: var(--shadow-sm);
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.category-section {
    margin-bottom: 1.5rem;
}

.category-section-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.sidebar-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1.5rem 0;
}

.category-group {
    margin-bottom: 0.5rem;
}

.category-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border: none;
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.category-btn:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.category-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.category-btn span:first-child {
    font-size: 1.25rem;
}

.category-btn span:nth-child(2) {
    flex: 1;
    text-align: left;
}

.category-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.category-btn.active i {
    transform: rotate(180deg);
}

/* Material List */
.material-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.material-list.active {
    max-height: 500px;
    padding: 0.5rem 0 0.5rem 1rem;
}

.material-list li {
    margin-bottom: 0.25rem;
}

.material-list a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.material-list a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 1.25rem;
}

.material-list a.active {
    background: rgba(26, 84, 144, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

/* ============================================
   PRODUCTS MAIN AREA
   ============================================ */

.products-main {
    min-height: 100%;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.products-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.sort-select {
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition);
    font-weight: 500;
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.sort-select:hover {
    border-color: var(--primary-color);
}

/* ============================================
   PRODUCTS GRID
   ============================================ */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image-wrapper {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: var(--bg-light);
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-card-body {
    padding: 1.25rem;
}

.product-category {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    min-height: 2.8rem;
}

.product-price-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.quick-view-btn,
.order-material-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.quick-view-btn:hover,
.order-material-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ============================================
   VIEW TRANSITIONS
   ============================================ */

.product-listing-view,
.product-detail-view {
    /* JS toggles display:none/block directly — no CSS transitions needed */
}

.product-listing-view {
    /* default: visible via normal block flow */
}

.product-detail-view {
    display: none;
}

/* ============================================
   PRODUCT DETAIL VIEW
   ============================================ */

.back-button {
    position: fixed;
    top: 90px;
    left: 20px;
    background: var(--white);
    border: 2px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    z-index: 1001;
    box-shadow: var(--shadow-md);
}

.back-button:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.product-detail-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 3rem;
    padding: 6rem 0 3rem;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 150px;
    height: fit-content;
}

.main-image-container {
    position: relative;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 1;
}

.main-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-zoom-indicator {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.main-image-container:hover .image-zoom-indicator {
    opacity: 1;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.thumbnail-item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail-item:hover {
    border-color: var(--primary-color);
}

.thumbnail-item.active {
    border-color: var(--primary-color);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-info {
    padding-top: 1rem;
}

.product-header {
    margin-bottom: 1.5rem;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #f39c12;
}

.rating-text {
    color: var(--text-light);
    margin-left: 0.5rem;
}

.product-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.product-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-unit {
    font-size: 1rem;
    color: var(--text-light);
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success);
    font-weight: 600;
}

.product-description {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.product-highlights,
.product-specifications {
    margin-bottom: 2rem;
}

.product-highlights h3,
.product-specifications h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.features-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    font-size: 1.2rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--border-color);
}

.specs-table td {
    padding: 0.75rem 0;
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
    width: 40%;
}

.specs-table td:last-child {
    color: var(--text-light);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.quantity-selector label {
    font-weight: 600;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-light);
    cursor: pointer;
    font-size: 1.25rem;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

#quantityInput {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

#quantityInput:focus {
    outline: none;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.product-meta {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.meta-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    gap: 1rem;
    z-index: 1000;
}

.mobile-btn {
    flex: 1;
    padding: 0.875rem;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 5rem;
    }

    .product-gallery {
        position: static;
    }

    .back-button {
        top: 80px;
        left: 10px;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .action-buttons {
        display: none;
    }

    .mobile-bottom-bar {
        display: flex;
    }

    .product-info {
        padding-bottom: 80px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }

    .product-card-body {
        padding: 1rem;
    }

    .product-name {
        font-size: 0.95rem;
    }

    .product-price {
        font-size: 1.25rem;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .product-price {
        font-size: 2rem;
    }

    .thumbnail-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .filter-btn {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeIn 0.5s ease forwards;
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Tablet breakpoint */
@media (max-width: 1024px) {
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 6rem;
    }

    .product-gallery {
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }

    .back-button {
        top: 90px;
        left: 1rem;
        padding: 0.625rem 1.25rem;
        font-size: 0.95rem;
    }

    .action-buttons {
        display: none;
    }

    .mobile-bottom-bar {
        display: flex;
    }

    .product-info {
        padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .products-hero {
        padding: 2.5rem 0 2rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* Filter section */
    .filter-section {
        padding: 1rem 0;
    }

    .filter-bar {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .filter-group {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        display: flex;
        gap: 0.5rem;
        padding: 0.5rem 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .filter-group::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex-shrink: 0;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        white-space: nowrap;
    }

    .sort-group {
        width: 100%;
    }

    .sort-select {
        width: 100%;
        padding: 0.625rem 1rem;
    }

    /* Products grid */
    .products-section {
        padding: 2rem 0;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-card {
        border-radius: 8px;
    }

    .product-card-body {
        padding: 0.875rem;
    }

    .product-category {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }

    .product-name {
        font-size: 0.875rem;
        min-height: 2.5rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .product-price-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .product-price {
        font-size: 1.125rem;
    }

    .quick-view-btn {
        width: 100%;
        padding: 0.5rem;
        font-size: 0.875rem;
    }

    /* Product detail */
    .back-button {
        top: 80px;
        left: 0.75rem;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .product-detail-content {
        padding: 1rem;
        padding-top: 5rem;
    }

    .product-gallery {
        max-width: 100%;
    }

    .main-image-container {
        margin-bottom: 0.75rem;
    }

    .thumbnail-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }

    .product-header {
        margin-bottom: 1.25rem;
    }

    .product-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .product-rating {
        font-size: 0.875rem;
    }

    .product-price-section {
        padding: 1rem 0;
        margin-bottom: 1.5rem;
    }

    .product-price {
        font-size: 2rem;
    }

    .price-unit {
        font-size: 0.875rem;
    }

    .stock-status {
        font-size: 0.875rem;
    }

    .product-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .product-highlights,
    .product-specifications {
        margin-bottom: 1.5rem;
    }

    .product-highlights h3,
    .product-specifications h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .features-list {
        font-size: 0.9rem;
    }

    .specs-table {
        font-size: 0.875rem;
    }

    .specs-table td {
        padding: 0.625rem 0;
    }

    .quantity-selector {
        flex-wrap: wrap;
        margin-bottom: 1.5rem;
    }

    .quantity-controls {
        width: 100%;
    }

    .qty-btn {
        width: 44px;
        height: 44px;
    }

    #quantityInput {
        flex: 1;
        height: 44px;
    }

    .product-meta {
        padding: 1rem;
        background: var(--bg-secondary);
        border-radius: 8px;
    }

    .meta-item {
        font-size: 0.875rem;
        padding: 0.625rem 0;
    }

    .meta-item i {
        font-size: 1.125rem;
    }

    /* Mobile bottom bar */
    .mobile-bottom-bar {
        display: flex;
        gap: 0.75rem;
        padding: 1rem;
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
    }

    .mobile-btn {
        flex: 1;
        min-height: 48px;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .btn-primary {
        background: var(--primary-color);
        color: white;
    }

    .btn-secondary {
        background: white;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
    }

    .product-info {
        padding-bottom: 90px;
    }
}

/* Very small phones */
@media (max-width: 374px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-name {
        font-size: 0.938rem;
    }

    .product-title {
        font-size: 1.25rem;
    }

    .thumbnail-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Landscape mode */
@media (max-width: 767px) and (orientation: landscape) {
    .products-hero {
        padding: 1.5rem 0;
    }

    .product-detail-content {
        padding-top: 4rem;
    }

    .back-button {
        top: 70px;
    }
}