/* Hide review stars */
.rating {
    display: none;
}

/* Hide tags */
#content > p:last-child a {
   /* display: none;*/
color: #ffffff;
}
#content > p:last-child {
   /* display: none;*/
color: #ffffff;
}

/* Make special/discount price more visible */
h2 {
    color: #cc0000;
    font-size: 32px;
    font-weight: bold;
    margin: 15px 0;

    display: flex;
    justify-content: center; /* horizontal center */
}



/* Additional elegant styling improvements */

/* Improve product title */
h1 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Style the original price with better strikethrough */

.list-unstyled li:first-child span {
    color: #959595;
    font-size: 32px;
    text-decoration: line-through;

    display: flex;
    justify-content: center; /* horizontal center */
}

/* Improve product description layout */
.tab-content .tab-pane.active {
    padding: 20px 0;
}

/* Style the feature list items */
.d-flex.align-items-center {
    padding: 8px 0;
    border-bottom: 1px solid #ecf0f1;
    margin-bottom: 5px;
}

.d-flex.align-items-center:last-child {
    border-bottom: none;
}

/* Improve button styling */
.btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border: none;
    border-radius: 5px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2980b9, #1f618d);
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 4px 8px rgba(0,0,0,0.2);*/
}

/* Improve form elements */
.form-control {
    border-radius: 5px;
    border: 2px solid #ecf0f1;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

/* Add some spacing and improve layout */
#product .form-group {
    margin-bottom: 25px;
}

/* Style the availability text */


/* Improve breadcrumb */
.breadcrumb {
    background-color: #2c3e50;
    border-radius: 5px;
    padding: 10px;
}

.breadcrumb a {
color: #cccccc;
text-shadow: none;
}

/* Add subtle animations */
.btn-default {
    transition: all 0.3s ease;
}

.btn-default:hover {
    transform: scale(1.05);
}

/* Improve the add to cart section */
#input-quantity {
    width: 80px;
    text-align: center;
    font-weight: bold;
}


/* Make the container more elegant */
.container {
    padding-top: 20px;
}


/* Optional: Hide the social sharing buttons */
.addthis_toolbox {
    display: none;
}


#tab-description {
    font-weight: bold;
    color: #009933;
    font-size: 16px;
    padding-left: 20px;
}
