/* ------------------------------------ PRODUCT PAGE CSS START ------------------------------------ */

/* Product Header Banner */
.product-header {
    background: #ed2230;
    padding: 40px 0;
    margin-bottom: 50px;
}

.product-header h1 {
    color: #ffffff;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    margin: 0;
    text-transform: capitalize;
}

/* Product Content Layout */
.product-content {
    padding: 0 0 100px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-image-section {
    position: relative;
}

.product-main-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.product-image-caption {
    background: #ed2230;
    color: #ffffff;
    padding: 20px 30px;
    border-radius: 8px;
    margin: -40px auto 0;
    position: relative;
    width: 90%;
    z-index: 1;
    box-shadow: 0px 4px 15px rgba(233, 30, 140, 0.3);
}

.product-image-caption h3 {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin: 0 0 8px 0;
    color: #ffffff;
}

.product-image-caption p {
    font-family: "Josefin Sans", sans-serif;
    font-size: 14px;
    margin: 0;
    color: #ffffff;
    opacity: 0.95;
}

/* Product Details Section */
.product-details h2 {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: #ed2230;
    margin: 0 0 10px 0;
}

.product-dimensions {
    font-family: "Josefin Sans", sans-serif;
    font-size: 18px;
    color: #333333;
    margin: 0 0 30px 0;
}

.product-section {
    margin-bottom: 35px;
}

.product-section h3 {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #333333;
    margin: 0 0 15px 0;
}

/* Color Swatches */
.color-swatches {
    display: flex;
    gap: 15px;
    align-items: center;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #E5E5E5;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.color-swatch:hover {
    transform: scale(1.1);
    border-color: #ed2230;
}

.color-swatch.black {
    background-color: #000000;
}

.color-swatch.silver {
    background-color: #C0C0C0;
}

/* Technical Details */
.technical-intro {
    font-family: "Josefin Sans", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 20px;
}

.technical-description {
    font-family: "Josefin Sans", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 25px;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    font-family: "Josefin Sans", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
    padding: 10px 0 10px 35px;
    position: relative;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 10px;
    color: #ed2230;
    font-weight: 700;
    font-size: 18px;
}

/* Breadcrumbs */
.product-breadcrumbs {
    padding: 30px 0 20px 0;
}

.product-breadcrumbs a,
.product-breadcrumbs span {
    font-family: "Josefin Sans", sans-serif;
    font-size: 14px;
    color: #666666;
    text-decoration: none;
}

.product-breadcrumbs a:hover {
    color: #ed2230;
}

.product-breadcrumbs span {
    color: #ed2230;
    font-weight: 600;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .product-header h1 {
        font-size: 38px;
    }

    .product-grid {
        gap: 40px;
    }

    .product-details h2 {
        font-size: 36px;
    }
}

@media screen and (max-width: 767px) {
    .product-header {
        padding: 30px 0;
        margin-bottom: 30px;
    }

    .product-header h1 {
        font-size: 32px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-details h2 {
        font-size: 28px;
    }

    .product-content {
        padding: 0 0 50px 0;
    }

    .product-image-caption {
        margin-top: -30px;
        padding: 15px 20px;
    }
}

/* Image Slider Styles */
.image-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 125%;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.slider-image.active {
    opacity: 1;
    pointer-events: auto;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
    background: #ed2230;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
}

.slider-arrow:hover svg {
    stroke: white;
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    display: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: #ed2230;
    border-color: #ed2230;
    transform: scale(1.3);
}

/* Additional color swatches */
.color-swatch.white {
    background-color: #FFFFFF;
    border-color: #CCCCCC;
}

.color-swatch.bronze {
    background-color: #CD7F32;
}

/* Responsive Slider Styles */
@media screen and (max-width: 1024px) {
    .slider-container {
        height: 400px;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }
}

@media screen and (max-width: 767px) {
    .slider-container {
        height: 300px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-arrow svg {
        width: 20px;
        height: 20px;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }

    .slider-dots {
        bottom: 15px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

/* ------------------------------------ PRODUCT PAGE CSS END ------------------------------------ */