﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

a:focus {
    outline: 3px solid #4a90e2; /* Thick, solid blue outline */
    outline-offset: 2px; /* Creates some space between the element and the outline */
    box-shadow: 0 0 0 2px #ffffff; /* White "halo" effect around the outline */
    text-decoration: underline; /* Additional visual cue */
}
/* Container positioning */
/* Container positioning */
.product-slider {
    position: relative;
    width: 100%;
}

/* Price ribbon styling and positioning */
.arrow-ribbon-details {
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 10;
    padding: 8px 15px;
    background: var(--primary-color, #007bff);
    color: white;
    height: 34px; /* Added fixed height to match triangle */
    display: flex;
    align-items: center;
}

    /* Add arrow effect to the ribbon */
    .arrow-ribbon-details:before {
        content: "";
        position: absolute;
        top: 0;
        right: -10px;
        border-top: 17px solid transparent;
        border-left: 10px solid var(--primary-color, #007bff);
        border-bottom: 17px solid transparent;
        height: 0; /* Ensure triangle height matches ribbon */
    }

/* Ensure proper stacking context */
.fotorama__wrap {
    position: relative;
    z-index: 1;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .arrow-ribbon-details {
        top: 10px;
        left: 0;
        font-size: 14px;
    }
}