.product-title-form {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: flex-start;
    max-width: 1180px;
    justify-content: center;
    margin: auto;
    padding: 50px 20px;
}

.product-title-form__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 578px;
}

.product-title-form__details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-title-form__breadcrumbs {
    color: #F6881F;
    font-size: 12px;
    font-family: Lato, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.48px;
}

.product-title-form__heading {
    font-size: 45px;
    font-family: Lato, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
}

.product-title-form__image {
    width: 100%;
    height: auto;
    background: rgba(197, 197, 197, 0.2);
}

.product-title-form__info {
    display: flex;
    gap: 20px;
}

.product-title-form__info-box {
    border: 1px solid #DBDBDB;
    padding: 5px;
    display: flex;
    flex-direction: column;
}

.product-title-form__info-box label {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
    font-family: Lato, sans-serif;
    letter-spacing: 0.48px;
}

.product-title-form__info-box span {
    font-size: 11px;
    font-weight: 500;
    color: #939598;
    font-family: Lato, sans-serif;
    line-height: 21px;
}

.product-title-form__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.product-title-form__row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.product-title-form__field-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    min-width: 150px;
}

.product-title-form__field-group label {
    display: flex;
    gap: 5px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.56px;
    font-family: Lato, sans-serif;
    color: #000;
}

.product-title-form__field-group label span {
    color: #F6881F;
}

.product-title-form__input-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 2px solid #D8D8D8;
}

.product-title-form__input-box input {
    font-size: 16px;
    font-weight: 700;
    color: #939598;
    text-transform: uppercase;
    font-family: Lato, sans-serif;
    border: none;
    background: none;
    outline: none;
    width: 100%;
}

.product-title-form__submit {
    width: 100%;
    padding: 15px;
    background: #F6881F;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    color: #FFF;
    text-align: center;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.product-title-form__submit:hover {
    background-color: #34495e;
}

.product-title-form__submit:active {
    transform: translateY(1px);
}

.product-title-form__arrows {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #F1F1F1;
    padding: 5px 10px;
}

.arrow-up,
.arrow-down {
    width: 8px;
    height: 4px;
    border: 2px solid #939598;
}

.arrow-down {
    transform: rotate(-180deg);
}

.product-media-slider {
    width: 100%;
    margin: 0 auto;
}

.product-media-slider .slick-prev,
.product-media-slider .slick-next {
    z-index: 1;
}

.product-media-slider .slick-prev {
    left: 10px;
}

.product-media-slider .slick-next {
    right: 10px;
}

.product-media-slider img {
    max-width: 100%;
    height: auto;
}

.slick-prev:before,
.slick-next:before {
    color: black !important;
}

.slick-prev,
.slick-next {
    opacity: 1;
}

.feature-description-container {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: start;
    width: 100%;
    max-width: 1180px;
    margin: auto;
    padding: 50px 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.product-features-container {
    width: 415px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    overflow: hidden;
    font-family: 'Lato', sans-serif;
    margin-bottom: 20px;
}

.product-features-header {
    gap: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #DBDBDB;
    border-radius: 4px;
    background-color: #f9f9f9;
    cursor: pointer;
    padding: 12px 20px;
    width: 100%;
}

.product-features-title {
    font-family: Lato;
    font-size: 26px;
    font-weight: 700;
    color: black;
    text-transform: capitalize;
}

.product-features-arrow {
    width: 10px;
    height: 5px;
    border: 2px solid black;
}

.product-features-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: stretch;
    padding: 12px 20px;
}

.product-features-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-features-label,
.product-features-value {
    font-family: Lato;
    font-size: 16px;
    font-weight: 500;
    color: #58585A;
    line-height: 21px;
}

.product-features-value {
    text-align: right;
}



.product-desc-container {
    /* border: 1px solid #DBDBDB;
    border-radius: 4px; */
    overflow: hidden;
    font-family: 'Lato', sans-serif;
    margin-bottom: 20px;
    width: 675px;
}

.product-desc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    border: 1px solid #DBDBDB;
    border-radius: 4px;
}

.product-desc-title {
    font-family: Lato;
    font-size: 26px;
    font-weight: 700;
    color: black;
    text-transform: capitalize;
}

.product-desc-arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid black;
    border-bottom: 2px solid black;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.product-desc-header.open .product-desc-arrow {
    transform: rotate(-135deg);
}

.product-desc-content {
    padding: 20px;
    font-size: 16px;
    color: #58585A;
    font-weight: 500;
    line-height: 1.5;
    display: none;
}

.product-desc-content.open {
    display: block;
}

.custom-divider {
    align-self: stretch;
    height: 0px;
    outline: 2px #D8D8D8 solid;
    outline-offset: -1px;
    max-width: 1140px;
    width: 100%;
    margin: auto;
}

.product-item-inner {
    max-width: 250.67px;
    padding: 20px;
    background: white;
    outline: 2px #939598 solid;
    outline-offset: -2px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.product-image {
    align-self: stretch;
    height: 168px;
    object-fit: cover;
}

.product-title {
    align-self: stretch;
    text-align: center;
    color: black;
    font-size: 21px;
    font-family: Lato, sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    word-wrap: break-word;
}

.product-buy-button {
    align-self: stretch;
    padding: 10px 50px;
    background: #F6881F;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.product-buy-text {
    text-align: center;
    color: white;
    font-size: 16px;
    font-family: Lato, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    word-wrap: break-word;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    margin: auto;
}


.accessories {
    padding: 20px 0;
    position: relative;
    max-width: 1150px;
    margin: auto;
    overflow: hidden;
    width: 100%; 
    padding-bottom: 390px;
}

.accessories-slider {
    margin-bottom: 50px;
    overflow: hidden;
    width: 100%;
}

.slider-controls {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-pagination {
    font-family: Lato, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.slider-arrows {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.slider-prev,
.slider-next {
    cursor: pointer;
    padding: 5px 10px;
    border: none;
    background: none;
    color: #000;
    font-size: 20px;
}

.slider-prev:disabled,
.slider-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.accessories-slider .slick-track,
.accessories-slider .slick-list {
    overflow: hidden;
    width: 100%;
}

.accessories-slider .slick-slide {
    width: calc(25% - 20px); /* 4 items per view with gap */
    margin: 0 10px;
}

.total-price-container label {
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.72px;
    text-transform: uppercase;
    color: black;
}
.total-price-container .total-price {
    font-family: Lato;
    font-size: 34px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 1.36px;
    text-transform: uppercase;
}
.total-price-container {
    background: #F1F1F1;
    padding: 5px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-right: auto;
}
.product-title-form__row span.select2-selection.select2-selection--single {
    border-radius: 0px;
    height: 50px;
    display: flex;
    align-items: center;
    border: 2px solid #D8D8D8;
}
.product-title-form__row span.select2-selection__arrow {
    top: unset !important;
}

/* Hidden by default */
.cart-notification {
    position: fixed;
    top: -50px; /* Start off-screen */
    left: 50%;
    transform: translateX(-50%);
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999999;
    transition: top 0.5s ease-in-out;
}

/* Visible state */
.cart-notification.show {
    top: 20px; /* Slide into view */
}

@media (max-width: 1024px) {
    .accessories-slider .slick-slide {
        width: calc(33.333% - 20px); /* 3 items per view */
    }
}

@media (max-width: 768px) {
    .accessories-slider .slick-slide {
        width: calc(50% - 20px); /* 2 items per view */
    }
}

@media (max-width: 480px) {
    .accessories-slider .slick-slide {
        width: calc(100% - 20px); /* 1 item per view */
    }
}