.rta__main{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    container-type: inline-size;
    container-name: rtaMain;
}

.clock__container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1500px;
    margin: 20px auto 0px auto;
    gap: 20px;
}

.clock__gallery-container{
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1/1;
    overflow: hidden;
    object-position: center;
    padding: 0 10px;
}

.gallery__overflow{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.gallery__overflow img {
    position: absolute;
    top:0; left:0;
    width:100%; height:100%;
    object-fit:cover;
    display: none;
    transition: transform 1s ease;
    cursor: pointer;
}

.gallery__overflow img.active {
    display: block;
}

.gallery__overflow img:hover{
    transform: scale(1.03);
}

.gallery__nav{
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 25px;
    background-color: #0005;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.gallery__nav-item{
    flex: 1;
    max-width: 40px;
    height: 12px;
    border-radius: 16px;
    background-color: #fffb;
}

.gallery__nav-item.active{
    background-color: #ff0;
}

.gallery__modal{
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.gallery__modal[aria-hidden="false"]{
    display: flex;
}

.gallery__modal-backdrop{
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.7);
}

.gallery__modal-content{
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
    box-sizing: border-box;
    touch-action: pan-y;
}

.gallery__modal-content img{
    max-width: 80%;
    max-height: 80vh;
    display:block;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    touch-action: none; 
    cursor: grab;
}

.gallery__modal-btn{
    background: rgba(0,0,0,0.6);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    cursor: pointer;
}

/* --------------- info del reloj -------------- */

.clock__info-container{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 10px;
    width: 100%;
    max-width: 450px;
}

.clock__title{
    font-size: 1.7rem;
    font-style: italic;
}

.clock__price{
    font-size: 1rem;
    font-style: italic;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.clock__price--original{
    text-decoration: line-through;
    color: #aaa;
    margin-right: 5px;
}

.clock__price--promo{
    color: #034228;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-tag{
    background: #a14;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
}

.affiliate-badge{
    background: #e8f5e8;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
    border-left: 4px solid #034228;
    border: 1px solid #b8e6b8;
}

.affiliate-badge small{
    color: #034228;
    font-weight: 600;
    font-size: 0.9rem;
}

.clock__buy-btn{
    text-align: center;
    width: 100%;
    background-color: #222222ef;
    padding: 10px 0;
    color: #fff;
    font-weight: bold;
    font-style: italic;
    font-size: 1.2rem;
    transition: background-color .4s ease;
    cursor: pointer;
}

.clock__buy-btn:hover{
    background-color: #034228;
}

.clock__fav-btn{
    text-align: center;
    width: 100%;
    background-color: transparent;
    padding: 10px 0;
    color: #000;
    border: 2px solid #000;
    font-weight: bold;
    font-style: italic;
    font-size: 1.2rem;
    transition: background-color .4s ease, color .4s ease;
    cursor: pointer;
}

.clock__fav-btn.active{
    background-color: #904;
    color: #fff;
    border: 2px solid #0005;
}

.clock__details{
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.clock__details-title, .clock__description-title{
    font-size: 1.5rem;
    font-style: italic;
}

.clock__description-title{
    margin-top: 10px;
}

.clock__details-list{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.clock__details-list li strong{
    font-style: italic;
}

.clock__description{
    font-size: 1rem;
    text-align: start;
    text-wrap: balance;
}

.clock__details-list li:last-child{
    display: flex;
    flex-direction: row;
    gap: 7px;
}

.clock__colors {
    align-items: center;
    display: flex;
    gap: 10px;
}

.clock__color{
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 1px solid #000;
}

@container rtaMain (min-width:768px){
    .clock__container{
        flex-direction: row;
        gap: 20px;
        align-items: stretch;
        margin: 60px auto;
    }
}

/* ------------ container de relojes similares ------------ */

.similar__container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 30px auto 20px auto;
    width: 100%;
    max-width: 1500px;
}

@media(min-width:768px){
    .similar__container{    
        margin-bottom: 40px;
    }
}

.similar__title{
    padding: 0 10px;
    font-size: 1.7rem;
    width: 100%;
    max-width: 1500px;
    font-weight: bold;
}

.similar__grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    padding: 0 10px;
    gap: 30px 5px;
    margin: 30px auto;
    color: #000;
    align-items: stretch;
    overflow: hidden;
    width: 100%;
    max-width: 1500px;
}

.similar__grid-item{
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: center;
    opacity: 0;
    transform: translateY(10%);
    transition: transform 1s ease, opacity 1s ease;
}

.similar__grid-item.visible{
    opacity: 1;
    transform: translate(0);
}

.grid__item-redirect{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    max-height: 350px;
}

.grid__item-img-container{
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1/1.3;
    object-position: center;
    position: relative;
}

.grid__item-img-container img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.grid__item-img-container img:hover{
    transform: scale(1.025);
}

.grid__item-name{
    font-size: 1rem;
    font-weight: 300;
    padding: 0 3px;
    transition: color .6s ease;
    text-align: start;
    text-wrap: pretty;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(1.2rem * 2 + 7px);
}

.grid__item-name:hover{
    color: #3a7;
}

.fav-btn{
    font-size: 1.5rem;
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    z-index: 10;
    background-color: transparent;
    padding: 8px 3px 0 0;
}

.fav-btn i{
    font-size: 1.7rem;
    border: none;
    color: #fff;
    transition: transform .5s ease, color .3s ease;
    padding: 3px;
}

.fav-btn i:hover{
    transform: translateY(-3px);
    color: #a14;
}

.fav-btn i.fa-solid{
    color: #a14;
}

/* -------------- media queries --------------- */

@container rtaMain (min-width:768px){
    .similar__grid{
        grid-template-columns: repeat(4, minmax(150px, 1fr));
        gap: 40px 5px;
    }

    .grid__item-name{
        font-size: 1.1rem;
    }

    .grid__item-redirect{
        max-height: 375px;
    }
}

@container rtaMain (min-width:56.25rem){
    .similar__container{
        gap: 10px;
    }

    .similar__title{
        font-size: 1.7rem;
        padding: 0 13px;
    }
}

.back__btn-container{
    padding: 15px 10px 0 10px;
}

.back__btn{
    padding: 5px;
    border-radius: 16px;
    background-color: #000B;
    color: #fff;
    transition: color .3s ease, background-color .3s ease;
}

.back__btn:hover{
    background-color: #222;
    color: #3a7;
}

/* --------------- comment__section ----------- */

.comment__section {
    width: 100%;
    max-width: 1500px;
    margin: 40px auto;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.comment__header-section {
    background: linear-gradient(135deg, rgba(3, 66, 40, 0.1) 0%, rgba(3, 66, 40, 0.05) 100%);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(3, 66, 40, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.comment__section-title {
    font-size: 1.8rem;
    color: #034228;
    margin: 0 0 25px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(3, 66, 40, 0.2);
}

.comment__section-title i {
    font-size: 1.6rem;
}

.comment__summary {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.summary__rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.average-rating {
    text-align: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: #034228;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.rating-stars {
    color: #f0ad4e;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.rating-count {
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
}

.summary__distribution {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.distribution-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.distribution-label {
    width: 80px;
    color: #444;
    font-size: 0.9rem;
    font-weight: 500;
}

.distribution-bar {
    flex: 1;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.distribution-fill {
    height: 100%;
    background: linear-gradient(90deg, #f0ad4e, #ffc107);
    border-radius: 5px;
    transition: width 0.55s ease-in-out;
}

.distribution-percent {
    width: 40px;
    text-align: right;
    color: #034228;
    font-weight: 600;
    font-size: 0.9rem;
}

.comment__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.comment__form-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.form__title {
    font-size: 1.4rem;
    color: #034228;
    margin: 0 0 25px 0;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(3, 66, 40, 0.2);
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form__rating {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.form__rating label {
    color: #222;
    font-weight: 500;
    font-size: 1rem;
}

.rating-stars-input {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 5px;
}

.rating-stars-input input {
    display: none;
}

.rating-stars-input label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
}

.rating-stars-input label:hover,
.rating-stars-input label:hover ~ label,
.rating-stars-input input:checked ~ label {
    color: #f0ad4e;
}

.form__group input,
.form__group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background-color: #f9f9f9;
    max-height: 200px;
}

.form__group input:focus,
.form__group textarea:focus {
    outline: none;
    border-color: #034228;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(3, 66, 40, 0.1);
}

.form__group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #034228 0%, #025c20 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    font-style: italic;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 66, 40, 0.3);
}

.comment__list-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.list__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(3, 66, 40, 0.2);
}

.list__header h3 {
    font-size: 1.4rem;
    color: #034228;
    margin: 0;
    font-weight: 600;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: white;
    color: #333;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:focus {
    outline: none;
    border-color: #034228;
    box-shadow: 0 0 0 2px rgba(3, 66, 40, 0.1);
}

.comment__list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.comment__item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.comment__item:hover {
    border-color: #034228;
    box-shadow: 0 4px 15px rgba(3, 66, 40, 0.08);
    transform: translateY(-2px);
}

.comment__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 200px;
}

.user-avatar {
    font-size: 2.5rem;
    color: #034228;
    flex-shrink: 0;
}

.user-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.user-name {
    font-weight: 600;
    color: #222;
    font-size: 1.1rem;
}

.comment-rating {
    color: #f0ad4e;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.comment__header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.delete-link {
    background: none;
    border: none;
    color: #ff4d4d;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 5px 10px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    justify-self: flex-end;
}

.delete-link:hover {
    color: #cc0000;
    text-decoration: underline;
}

.comment-date {
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
    background-color: rgba(3, 66, 40, 0.05);
    padding: 4px 10px;
    border-radius: 12px;
    white-space: nowrap;
}

.comment__body {
    margin: 15px 0;
}

.comment__body p {
    margin: 0;
    color: #444;
    line-height: 1.6;
    font-size: 1rem;
}

.comment__actions {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.helpful-btn {
    background: none;
    border: 1px solid #ddd;
    color: #666;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.helpful-btn:hover {
    border-color: #034228;
    color: #034228;
    background-color: rgba(3, 66, 40, 0.05);
}

.helpful-btn.active {
    border-color: #034228;
    color: #034228;
    background-color: rgba(3, 66, 40, 0.1);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background-color: white;
    color: #333;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-width: 40px;
    text-align: center;
}

.pagination-btn:hover {
    border-color: #034228;
    color: #034228;
}

.pagination-btn.active {
    background-color: #034228;
    color: white;
    border-color: #034228;
}

.pagination-ellipsis {
    color: #666;
    padding: 0 5px;
}

/* --------------------- media queries comment ------- */

@media (max-width: 767px) {
    .comment__header {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .user-info {
        min-width: unset;
        gap: 10px;
    }
    
    .user-avatar {
        font-size: 2rem;
    }
    
    .user-name {
        font-size: 1rem;
    }
    
    .comment__header-right {
        gap: 10px;
        margin-left: auto; 
    }
    
    .delete-link {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
    
    .comment-date {
        font-size: 0.8rem;
        padding: 3px 8px;
    }
    
    .comment__header-section {
        padding: 20px;
    }
    
    .comment__form-section,
    .comment__list-section {
        padding: 20px;
    }
    
    .list__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .comment__section-title {
        font-size: 1.5rem;
        gap: 8px;
    }
    
    .comment__section-title i {
        font-size: 1.4rem;
    }
    
    .rating-number {
        font-size: 2.5rem;
    }
    
    .rating-stars {
        font-size: 1.3rem;
    }
    
    .distribution-item {
        gap: 10px;
    }
    
    .distribution-label {
        width: 70px;
        font-size: 0.8rem;
    }
    
    .distribution-percent {
        width: 35px;
        font-size: 0.8rem;
    }
    
    .form__rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .rating-stars-input label {
        font-size: 1.8rem;
    }
    
    .submit-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .comment__item {
        padding: 20px;
    }
    
    .comment__body {
        margin: 10px 0 0 0;
    }
}

@media (min-width: 768px) {
    .comment__summary {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .summary__distribution {
        flex: 1;
        max-width: 400px;
    }

    .comment__content {
        flex-direction: row;
        gap: 40px;
        align-items: start;
    }

    .comment__form-section {
        flex: 0 0 300px;
    }

    .comment__list-section {
        flex: 1;
    }
    
    .comment__header {
        align-items: center;
    }
    
    .comment__header-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }
}

@media (min-width: 1024px) {
    .comment__section {
        padding: 0 20px;
    }

    .comment__form-section {
        flex: 0 0 350px;
    }

    .comment__section-title {
        font-size: 2rem;
    }

    .rating-number {
        font-size: 3.5rem;
    }

    .rating-stars {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .comment__header {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .user-info {
        gap: 8px;
    }
    
    .user-avatar {
        font-size: 1.8rem;
    }
    
    .user-details {
        min-width: 0;
    }
    
    .user-name {
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .comment__header-right {
        gap: 8px;
    }
    
    .delete-link {
        font-size: 0.75rem;
        padding: 3px 6px;
    }
    
    .comment-date {
        font-size: 0.75rem;
        padding: 2px 6px;
    }
    
    .comment__item {
        padding: 15px;
    }
}

/* ------------- css extra para modal y cosas de afiliados ---------- */

#affiliateModal{
    display: none;
}

.affiliate-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
}

.affiliate-modal[aria-hidden="false"] {
    display: block;
}

.affiliate-modal-backdrop{
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    backdrop-filter: blur(4px);
}

.affiliate-modal-content{
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    z-index: 9999;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid #e0e0e0;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.affiliate-modal-content h3{
    margin: 0 0 15px 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #034228;
    text-align: center;
    font-style: italic;
}

.affiliate-modal-content p{
    margin: 0 0 25px 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #444;
    text-align: center;
}

.affiliate-modal-content .modal-buttons{
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 10px;
    flex-wrap: wrap;
}

.action-btn{
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    min-width: 140px;
    outline: none;
}

.action-btn.secondary{
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
}

.action-btn.secondary:hover{
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.action-btn.success{
    background: #034228;
    color: white;
    border: none;
}

.action-btn.success:hover{
    background: #025c20;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 66, 40, 0.3);
}

.affiliate-modal-content::before {
    content: "💎";
    display: block;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

@media (max-width: 480px) {
    .affiliate-modal-content {
        padding: 25px 20px;
        width: 95%;
    }
    
    .affiliate-modal-content .modal-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .action-btn {
        min-width: 100%;
    }
    
    .affiliate-modal-content h3 {
        font-size: 1.2rem;
    }
    
    .affiliate-modal-content p {
        font-size: 0.95rem;
    }
}

/* --------- extras de botones ------------ */

.stock-status {
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stock-status.disponible .stock-available {
    color: #034228;
    background: rgba(3, 66, 40, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-left: 4px solid #034228;
}

.stock-status.reposicion .stock-reposicion {
    color: #f0ad4e;
    background: rgba(240, 173, 78, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-left: 4px solid #f0ad4e;
}

.stock-status.sin_stock .stock-unavailable {
    color: #d9534f;
    background: rgba(217, 83, 79, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-left: 4px solid #d9534f;
}

.clock__buy-btn {
    text-align: center;
    width: 100%;
    background-color: #222222ef;
    padding: 15px 0;
    color: #fff;
    font-weight: bold;
    font-style: italic;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    text-decoration: none;
}

.clock__buy-btn:hover {
    background-color: #034228;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 66, 40, 0.3);
}

.clock__buy-btn.disponible {
    background-color: #034228;
}

.clock__buy-btn.disponible:hover {
    background-color: #025c20;
}

.clock__buy-btn.reposicion {
    background-color: #f0ad4e;
}

.clock__buy-btn.reposicion:hover {
    background-color: #ec971f;
}

.clock__buy-btn.sin_stock {
    background-color: #d9534f;
    opacity: 0.8;
}

.clock__buy-btn.sin_stock:hover {
    background-color: #c9302c;
    opacity: 1;
}

.clock__fav-btn {
    text-align: center;
    width: 100%;
    background-color: transparent;
    padding: 15px 0;
    color: #000;
    border: 2px solid #000;
    font-weight: bold;
    font-style: italic;
    font-size: 1rem;
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.clock__fav-btn.active,
.clock__fav-btn:hover {
    background-color: #a14;
    color: #fff;
    border-color: #a14;
}

@container rtaMain (min-width:768px) {
    .stock-status {
        font-size: 1.1rem;
    }
    
    .clock__buy-btn {
        font-size: 1.2rem;
        padding: 17px 0;
    }
    
    .clock__fav-btn {
        font-size: 1.1rem;
        padding: 17px 0;
    }
}

@media (max-width: 480px) {
    .stock-status {
        font-size: 0.9rem;
    }
    
    .clock__buy-btn,
    .clock__fav-btn {
        font-size: 1rem;
        padding: 12px 0;
    }
}