/* ================================
   Products Listing Page Styles
   ================================ */
   .product-hero-section {
    position: relative;
    height: 290px;
    background-image: url('../img/cat-page-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    overflow: hidden;
    margin: 30px 60px;
    border-radius: 25px;
}

.product-hero-content {
    z-index: 2;
    padding-left: 40px;
}

.product-hero-title {
    font-size: 40px;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    color: #73929e;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.product-breadcrumb a {
    color: #666666;
    transition: color 0.2s ease;
}

.product-breadcrumb a:hover {
    color: #0097b2;
}

.product-breadcrumb-separator {
    color: #888888;
    font-size: 16px;
}

.product-breadcrumb-current {
    color: #555555;
}


/* ================================
   Products Section
   ================================ */
.products-section {
    padding: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.products-container {
    display: flex;
    gap: 40px;
}

/* ================================
   Sidebar
   ================================ */
.sidebar {
    flex-shrink: 0;
    width: 240px;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    cursor: pointer;
}

.sidebar-title {
    font-size: 23px;
    color: #3b7e9f;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
}

.sidebar-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #333333;
    transition: transform 0.2s ease;
}

.sidebar-toggle:hover {
    color: #0097b2;
}

.sidebar-toggle svg {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.sidebar.collapsed .sidebar-toggle svg {
    transform: rotate(0deg);
}

.sidebar-nav {
    border-left: 1px solid #e0e0e0;
    padding-left: 0;
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.sidebar.collapsed .sidebar-nav {
    max-height: 0;
    opacity: 0;
}

.sidebar-list {
    display: flex;
    flex-direction: column;
}

.sidebar-list li:nth-child(n+6) {
    display: none;
}

.sidebar-list.expanded li:nth-child(n+6) {
    display: block;
}

.sidebar-link {
    display: block;
    padding: 10px 0 10px 20px;
    font-size: 14px;
    color: #555555;
    border-left: 2px solid transparent;
    margin-left: -1px;
    transition: all 0.2s ease;
}

.sidebar-link:hover {
    color: #0097b2;
    border-left-color: #0097b2;
    background-color: rgba(0, 151, 178, 0.05);
}

.see-more-btn {
    margin-top: 15px;
    margin-left: 20px;
    padding: 8px 20px;
    font-size: 13px;
    color: #555555;
    background-color: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.see-more-btn:hover {
    border-color: #0097b2;
    color: #0097b2;
}

.see-more-btn.hidden {
    display: none;
}

/* ================================
   Product Grid
   ================================ */
.products-list-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* ================================
   Product Card
   ================================ */
.product-card {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.product-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #d0d0d0;
}

.product-link {
    display: block;
    padding: 25px 20px;
    text-align: center;
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    color: #3b7e9f;
    margin-bottom: 20px;
    line-height: 1.4;
}

.product-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-hero-section {
        margin: 30px 40px;
        padding: 0 40px;
    }
    
    .products-section {
        padding: 40px;
    }
}

@media (max-width: 992px) {
}

@media (max-width: 768px) {
    .product-hero-section {
        height: 200px;
        margin: 20px 20px;
        padding: 0 30px;
    }
    
    .product-hero-content {
        padding-left: 20px;
    }
    
    .product-hero-title {
        font-size: 32px;
    }
    
    
    .products-section {
        padding: 30px 20px;
    }
    
    .products-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .sidebar-nav {
        border-left: none;
        border-top: 1px solid #e0e0e0;
        padding-left: 0;
        padding-top: 15px;
    }
    
    .sidebar-link {
        padding: 10px 0;
        border-left: none;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .sidebar-link:hover {
        border-left: none;
        padding-left: 10px;
    }
    
    .see-more-btn {
        margin-left: 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .product-hero-section {
        margin: 20px 10px;
        padding: 0 20px;
        height: 160px;
    }
    
    .product-hero-title {
        font-size: 28px;
    }
    
    .products-section {
        padding: 20px 15px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-link {
        padding: 20px 15px;
    }
    
    .product-title {
        font-size: 15px;
    }
    
    .product-image-wrapper {
        height: 140px;
    }
}

/* ================================
   Product Subcategory Page Styles
   ================================ */
   .product-hero-section {
    position: relative;
    height: 290px;
    background-image: url('../img/cat-page-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    overflow: hidden;
    margin: 30px 60px;
    border-radius: 25px;
}

.product-hero-content {
    z-index: 2;
    padding-left: 40px;
}

.product-hero-title {
    font-size: 40px;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    color: #73929e;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.product-breadcrumb a {
    color: #666666;
    transition: color 0.2s ease;
}

.product-breadcrumb a:hover {
    color: #0097b2;
}

.product-breadcrumb-separator {
    color: #888888;
    font-size: 16px;
}

.product-breadcrumb-current {
    color: #555555;
}


/* ================================
   Products Section
   ================================ */
.products-section {
    padding: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.products-subcategory-container {
    display: flex;
    gap: 40px;
}

.products-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ================================
   Sidebar
   ================================ */
.sidebar {
    flex-shrink: 0;
    width: 240px;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    cursor: pointer;
}

.sidebar-title {
    font-size: 23px;
    color: #3b7e9f;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
}

.sidebar-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #333333;
    transition: transform 0.2s ease;
}

.sidebar-toggle:hover {
    color: #0097b2;
}

.sidebar-toggle svg {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.sidebar.collapsed .sidebar-toggle svg {
    transform: rotate(0deg);
}

.sidebar-nav {
    border-left: 1px solid #e0e0e0;
    padding-left: 0;
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.sidebar.collapsed .sidebar-nav {
    max-height: 0;
    opacity: 0;
}

.sidebar-list {
    display: flex;
    flex-direction: column;
}

.sidebar-list li:nth-child(n+6) {
    display: none;
}

.sidebar-list.expanded li:nth-child(n+6) {
    display: block;
}

.sidebar-link {
    display: block;
    padding: 10px 0 10px 20px;
    font-size: 14px;
    color: #555555;
    border-left: 2px solid transparent;
    margin-left: -1px;
    transition: all 0.2s ease;
}

.sidebar-link:hover {
    color: #0097b2;
    border-left-color: #0097b2;
    background-color: rgba(0, 151, 178, 0.05);
}

.see-more-btn {
    margin-top: 15px;
    margin-left: 20px;
    padding: 8px 20px;
    font-size: 13px;
    color: #555555;
    background-color: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.see-more-btn:hover {
    border-color: #0097b2;
    color: #0097b2;
}

.see-more-btn.hidden {
    display: none;
}

/* ================================
   Products Header with Filters
   ================================ */
.products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e8e8e8;
}

.products-count {
    font-size: 18px;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    color: #333333;
    margin: 0;
}

.products-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.control-group {
    position: relative;
    display: flex;
    align-items: center;
}

.control-label {
    font-size: 14px;
    color: #555555;
    margin-right: 8px;
    white-space: nowrap;
}

.control-select {
    padding: 8px 30px 8px 12px;
    font-size: 14px;
    color: #555555;
    background-color: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M1 4L6 9L11 4' stroke='%23555555' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    transition: all 0.2s ease;
}

.control-select:hover {
    border-color: #0097b2;
}

.control-select:focus {
    outline: none;
    border-color: #0097b2;
    box-shadow: 0 0 0 3px rgba(0, 151, 178, 0.1);
}

.view-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
}

.view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background-color: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    cursor: pointer;
    color: #555555;
    transition: all 0.2s ease;
}

.view-btn:hover {
    border-color: #0097b2;
    color: #0097b2;
    background-color: rgba(0, 151, 178, 0.05);
}

.view-btn.active {
    border-color: #d0d0d0;
    background-color: #f5f5f5;
    color: #555555;
}

.view-btn svg {
    width: 18px;
    height: 18px;
}

/* ================================
   Product Grid
   ================================ */
.products-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.products-grid.view-list {
    grid-template-columns: 1fr;
}

.products-grid.view-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.products-grid.view-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* ================================
   Product Card
   ================================ */
.product-category-card {
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-category-card:hover {
    transform: translateY(-3px);
    border-color: #d0d0d0;
}

.product-category-link {
    display: flex;
    flex-direction: column;
    padding: 0;
    text-align: center;
    height: 100%;
}

.product-category-title {
    font-size: 18px;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    color: #3b7e9f;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-category-info {
    /* padding:  15px; */
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    /* position: relative; */
    background-color: #ffffff;
}

.product-category-sku {
    font-size: 16px;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    color: #a6a6a6;
    text-align: center;
    margin: 0;
}

.product-category-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 220px;
    padding: 20px 15px 30px 15px;
    box-shadow: 0px 0px 8px 5px #eee;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

/* .product-category-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(245, 245, 245, 0.8) 50%, rgba(232, 232, 232, 1) 100%);
    pointer-events: none;
} */

/* Horizontal layout for list and 2-grid views */
.products-grid.view-list .product-category-link,
.products-grid.view-grid-2 .product-category-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 20px;
    gap: 20px;
}

.products-grid.view-list .product-category-image-wrapper,
.products-grid.view-grid-2 .product-category-image-wrapper {
    flex-shrink: 0;
    width: 220px;
    height: 200px;
    border-radius: 12px;
}

.products-grid.view-list .product-category-image,
.products-grid.view-grid-2 .product-category-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.products-grid.view-list .product-category-info,
.products-grid.view-grid-2 .product-category-info {
    flex: 1;
    padding: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.products-grid.view-list .product-category-title,
.products-grid.view-grid-2 .product-category-title {
    margin-bottom: 8px;
    text-align: left;
    font-size: 18px;
}

.products-grid.view-list .product-category-sku,
.products-grid.view-grid-2 .product-category-sku {
    text-align: left;
    margin: 0;
}

.product-category-image {
    max-width: 100%;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.product-category-card:hover .product-category-image {
    transform: scale(1.05);
}

/* Ensure 4-grid view maintains proper layout */
.products-grid:not(.view-list):not(.view-grid-2) .product-category-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.products-grid:not(.view-list):not(.view-grid-2) .product-category-image-wrapper {
    flex-shrink: 0;
}

.products-grid.view-list .product-category-card:hover .product-category-image,
.products-grid.view-grid-2 .product-category-card:hover .product-category-image {
    transform: scale(1.03);
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-header {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .products-controls {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .product-hero-section {
        margin: 30px 40px;
        padding: 0 40px;
    }
    
    .products-section {
        padding: 40px;
    }
}

@media (max-width: 992px) {
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-hero-section {
        height: 200px;
        margin: 20px 20px;
        padding: 0 30px;
    }
    
    .product-hero-content {
        padding-left: 20px;
    }
    
    .product-hero-title {
        font-size: 32px;
    }
    
    
    .products-section {
        padding: 30px 20px;
    }
    
    .products-subcategory-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .sidebar-nav {
        border-left: none;
        border-top: 1px solid #e0e0e0;
        padding-left: 0;
        padding-top: 15px;
    }
    
    .sidebar-link {
        padding: 10px 0;
        border-left: none;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .sidebar-link:hover {
        border-left: none;
        padding-left: 10px;
    }
    
    .see-more-btn {
        margin-left: 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Hide 2-grid view button on mobile */
    .view-btn[data-view="grid-2"] {
        display: none;
    }
    
    .product-category-image-wrapper {
        min-height: 200px;
        padding: 18px 12px 28px 12px;
    }
    
    .product-category-image {
        max-height: 160px;
    }
    
    .product-category-info {
        padding: 18px 12px;
    }
    
    .products-grid.view-list .product-category-image-wrapper,
    .products-grid.view-grid-2 .product-category-image-wrapper {
        width: 150px;
        height: 150px;
        padding: 10px;
        min-height: auto;
    }
    
    .products-grid.view-list .product-category-link,
    .products-grid.view-grid-2 .product-category-link {
        padding: 15px;
        gap: 15px;
    }
    
    .products-grid.view-list .product-category-title,
    .products-grid.view-grid-2 .product-category-title {
        font-size: 16px;
    }
}

@media (max-width: 630px) {
    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .products-controls {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 15px;
    }
    
    .control-group {
        width: 100%;
        max-width: none;
        justify-content: flex-start;
    }
    
    .view-controls {
        margin-left: 0;
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .product-hero-section {
        margin: 20px 10px;
        padding: 0 20px;
        height: 160px;
    }
    
    .product-hero-title {
        font-size: 28px;
    }
    
    .products-section {
        padding: 20px 15px;
    }
    
    .products-header {
        gap: 12px;
    }
    
    .products-controls {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .control-group {
        width: 100%;
        max-width: none;
    }
    
    .view-controls {
        margin-left: 0;
        align-self: flex-start;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-category-title {
        font-size: 15px;
    }
    
    .product-category-image-wrapper {
        min-height: 180px;
        padding: 15px 10px 25px 10px;
    }
    
    .product-category-image {
        max-height: 140px;
    }
    
    .product-category-info {
        padding: 15px 12px;
    }
    
    .products-grid.view-list .product-category-image-wrapper,
    .products-grid.view-grid-2 .product-category-image-wrapper {
        width: 120px;
        height: 120px;
        padding: 8px;
        min-height: auto;
    }
    
    .products-grid.view-list .product-category-link,
    .products-grid.view-grid-2 .product-category-link {
        padding: 12px;
        gap: 12px;
    }
    
    .products-grid.view-list .product-category-title,
    .products-grid.view-grid-2 .product-category-title {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .products-grid.view-list .product-category-sku,
    .products-grid.view-grid-2 .product-category-sku {
        font-size: 12px;
    }
}

/* ================================
   Product Detail Page Styles
   ================================ */
   .pd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
   }

/* Breadcrumb */
.pd-breadcrumb {
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}

.pd-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.pd-breadcrumb a:hover {
    color: #333;
}

.pd-breadcrumb .separator {
    margin: 0 10px;
    color: #999;
}

.pd-breadcrumb span:last-child {
    color: #333;
    font-weight: 500;
}

/* Product Section */
.product-section {
    padding: 40px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Image Gallery */
.product-gallery {
    position: relative;
}

.main-image {
    position: relative;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
    cursor: zoom-in;
}

.main-image img {
    width: 100%;
    /* height: 450px; */
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    transform-origin: center center;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-arrow:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nav-arrow.prev {
    left: 10px;
}

.nav-arrow.next {
    right: 10px;
}

.thumbnail-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
}

.thumbnail {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.thumbnail.active {
    border-color: #00a0e3;
}

.thumbnail:hover {
    border-color: #00a0e3;
}

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

/* Product Info */
.product-info {
    padding-top: 10px;
}

.product-detail-title {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 30px;
    padding-top: 50px;
    margin-bottom: 2px;
    font-weight: 700;
    color: #3b7e9f;
}

.option-group {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
}

.option-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option-btn {
    padding: 0 10px;
    border: 2px solid #7e858b;
    color: #7e858b;
    text-align: center;
    line-height: 36px;
    font-weight: 600;
    display: inline-block;
    margin-right: 10px;
    min-width: 40px;
    text-transform: capitalize;
}

.option-btn:hover {
    border-color: #999;
}

.option-btn.active {
    border: 2px solid #222426;
    color: #222426;
}

/* SKU */
.sku {
    margin: 25px 0;
    font-size: 16px;
    color: #999;
}

.sku span {
    color: #999;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon.facebook {
    color: #3b5998;
}

.social-icon.instagram {
    color: #e4405f;
}

.social-icon.twitter {
    color: #1da1f2;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Product Table Section */
.product-table-section {
    padding: 0 0 60px;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.product-table thead {
    background: #4a5568;
    color: #fff;
}

.product-table th {
    padding: 15px 12px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
}

.product-table tbody tr {
    border-bottom: 1px solid #e5e5e5;
}

.product-table tbody tr:hover {
    background: #f9f9f9;
}

.product-table td {
    padding: 15px 12px;
    font-size: 14px;
    color: #333;
}

.product-table input[type="radio"],
.product-table input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.qty-header {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0f0f0;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
}

.qty-control {
    display: flex;
    align-items: center;
    /* border: 1px solid #ddd; */
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.qty-btn:hover {
    background: #e5e5e5;
}

.qty-input {
    width: 50px;
    height: 30px;
    border: none;
    text-align: center;
    font-size: 14px;
    appearance: textfield;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.login-btn {
    padding: 10px 30px;
    background: #fff;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #333;
    color: #fff;
}

/* Description Section */
.description-section,
.download-section {
    padding: 40px 0 0;
}

.section-header {
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.section-header-title {
    display: inline-block;
    background-color: #e41018;
    color: #fff;
    padding: 12px 24px;
    border-radius: 20px 20px 0 0;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.section-content {
    padding: 20px 0;
}

.description-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.description-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

.description-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
    font-size: 20px;
    line-height: 1.2;
}

.section-divider {
    height: 2px;
    background-color: #e41018;
    flex: 1;
    margin-left: 0;
    margin-bottom: 0;
}

/* Download Section */
.download-text {
    margin-bottom: 20px;
    color: #333;
    font-size: 15px;
}

.pdf-download-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.pdf-download-link:hover {
    transform: scale(1.05);
}

.pdf-icon {
    width: auto;
    height: 80px;
    display: block;
    cursor: pointer;
}

/* Reviews Section */
.reviews-section {
    padding: 40px 0 60px;
}

.reviews-heading {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.no-reviews-text {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
}

.write-review-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.write-review-text {
    color: #333;
    font-size: 15px;
}

.write-review-btn {
    background-color: #e41018;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.write-review-btn:hover {
    background-color: #c82333;
}

/* Responsive */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .main-image img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .product-table {
        display: block;
        overflow-x: auto;
    }
    
    .product-title {
        font-size: 22px;
    }
    
    .main-image img {
        height: 280px;
    }
}
