@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: 'Times New Roman', sans-serif !important;
    margin: 0;
    padding: 0;
    text-align: left;
}

a {
    all: unset;
    display: inline;
    cursor: pointer;
}

h1, h2, h3 {
    font-family: 'Bodoni Moda', 'Times New Roman', sans-serif !important;
}

.container {
    margin: 0 auto;
    text-align: left;
    max-width: 1920px;
}

.flex-container {
    display: flex;
    width: 90%;
}

.left-container {
    width: 60%;
    padding: 20px;
    box-sizing: border-box;
}

.right-container {
    width: 40%;
    padding: 20px;
    box-sizing: border-box;
}

.right-container h1 {
    font-size: x-large;
    font-weight: 800;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    color: black;
    width: 100%;
    box-sizing: border-box;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 30px 0;
    box-sizing: border-box;
}

.header-logo {
    position: absolute;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
    text-align: center;
}

.header-icons {
    display: flex;
    gap: 15px;
    margin-left: auto;
}

.header-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.header-icon:hover {
    transform: translateY(-3px); 
}

.logo {
    max-width: 120px;
}

.nav-menu {
    font-size: small;
    font-weight: 600;
    list-style: none;
    display: flex;
    gap: 10px;
}

.nav-menu a {
    color: black;
    text-decoration: none;
}

.marketing-points {
    display: flex;
    justify-content: space-around;
    margin: 10px 0;
    background-color: #fefefe;
    padding: 50px 80px;
    font-weight: 400;
}

.marketing-point {
    text-align: center;
    width: 30%;
    color: rgb(42, 42, 42);
}

.marketing-point:hover {
    cursor: default;
}

.marketing-point-icon {
    font-size: 20px;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

.marketing-point-icon:hover {
    animation-name: bounce;
    -moz-animation-name: bounce;
}

@keyframes bounce {
        0%, 100%, 20%, 50%, 80% {
            -webkit-transform: translateY(0);
            -ms-transform:     translateY(0);
            transform:         translateY(0)
        }
        40% {
            -webkit-transform: translateY(-10px);
            -ms-transform:     translateY(-10px);
            transform:         translateY(-10px)
        }
        60% {
            -webkit-transform: translateY(-5px);
            -ms-transform:     translateY(-5px);
            transform:         translateY(-5px)
        }
    }

.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.main-image-container {
    width: 100%;
    height: 450px;
    position: relative;
    margin-bottom: 10px;
}

.main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
}

.main-image img:hover {
    z-index: 9999;
    transform: scale(1.2);
    cursor: zoom-in;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.43);
}

.main-image img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
    max-height: 100%;
}

input[type="radio"] {
    display: none;
}

input[type="radio"]:checked + .main-image {
    display: flex;
}

.thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 550px;
}

.thumbnail {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnail:hover {
    transform: scale(1.1);
}

.thumbnail img {
    max-width: 100%;
    max-height: 100%;
}

hr {
    margin: auto;
    width: 100%;
    border: none;
    height: 1px;
    background-color: lightgrey;
}

.description, .description p {
    font-family: 'Times New Roman', sans-serif !important;
}

.x-item-description-child * {
    font-family: 'Bodoni Moda', sans-serif !important;
}

.x-item-description-child i {
    font-family: "Font Awesome 5 Free", "Font Awesome 6 Free" !important; 
}

ul {
    list-style-type: none;
    padding-left: 0; 
}

ul li {
    position: relative;
    padding-left: 20px; 
}

ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 7px;
    height: 1px; 
    background-color: black; 
    transform: translateY(-50%);
}

.expandable-section {
    margin: 20px;
}

.expandable-section input {
    display: none;
}

.expandable-section table {
    width: 100%;
}

.expandable-section label {
    color: rgb(0, 0, 0);
    padding: 10px;
    display: block;
    cursor: pointer;
    user-select: none;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.expandable-section label::after {
    content: "\f067"; /* fa-plus */
    font-family: "Font Awesome 5 Free", "Font Awesome 6 Free" !important; 
    font-weight: 900;
}

.expandable-section input:checked + label::after {
    content: "\f068"; /* fa-minus */
}


.expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-top: none;
    padding: 0 10px;
}

.expandable-section input:checked ~ .expandable-content {
    max-height: 800px;
    padding: 10px;
}

h1 {
    text-align: center;
    font-weight: 300;
}

.right-container h2 {
    text-align: center;
    margin-top: -15px;
    font-weight: 600;
}

.container h2 {
    text-align: center;
}

.text-container {
    text-align: center;
    margin: 20px 0;
}
.footer {
    color: rgb(121, 121, 121);
    padding: 20px 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.footer .copyright {
    font-size: 14px;
}

.footer .footer-logo img {
    height: 20px;
    width: auto;
}

i { 
    font-family: "Font Awesome 5 Free", "Font Awesome 6 Free" !important; 
}

/* Customer Reviews */

.info-sections {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.info-section {
    margin-top: 10px;
    display: flex;
    align-items: flex-start;
    width: 30%;
    padding: 40px;
}

.info-icon {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -21px;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-title {
    margin-bottom: 5px;
    font-size: small;
}

.info-description {
    font-size: 14px;
    color: #404040;
    font-style: italic;
}

.circle-plus {
    width: 20px;
    height: 20px;
    background-color: #37a347;
    border-radius: 50%;
    position: relative;
    margin-top: 15px;
}

.circle-plus::before,
.circle-plus::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: white;
}

.circle-plus::before {
    width: 60%;
    height: 2px;
    margin-left: -30%;
    margin-top: -1px;
}

.circle-plus::after {
    width: 2px;
    height: 60%;
    margin-left: -1px;
    margin-top: -30%;
}

.watermark {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    width: 100%;
    position: relative;
}

.watermark a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.watermark img {
    max-width: 40%;
    max-height: 50%;
}

.advertisement {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.advertisement::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://dehhani.uk/media/uploads/10/1741986409447.jpg') center/cover no-repeat;
    filter: blur(0.1px);
    opacity: 0.8;
    z-index: -1;
}

.advertisement h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
}

.advertisement button {
    font-family: 'Bodoni Moda', 'Times New Roman', sans-serif !important;
    color: white;
    margin-top: 20px;
    padding: 15px 35px;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: bold;
    background-color: #00000000;
    border: 1px solid white;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.advertisement button:hover {
    color: rgb(0, 0, 0);
    cursor: pointer;
    background-color: #ffffff;
    transform: scale(1.05);
}

/* Split Container */

.full-width-container {
    display: flex;
    width: 100%;
    height: 500px;
}

.split-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.split-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(70%);
}

.split-container:hover img {
    transform: scale(1.1);
    filter: brightness(60%);
}

.content {
    position: relative;
    z-index: 2;
    padding: 20px;
    border-radius: 10px;
}

.content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.content p {
    font-size: 18px;
    margin-bottom: 15px;
}

.content button {
    font-family: 'Bodoni Moda', 'Times New Roman', sans-serif !important;
    color: white;
    margin-top: 20px;
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    background-color: #00000000;
    border: 1px solid white;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.content button:hover {
    color: rgb(0, 0, 0);
    cursor: pointer;
    background-color: #ffffff;
    transform: scale(1.05);
}

.latest-arrival {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 250px;
    overflow: hidden;
    margin-top: 50px;
}

.latest-arrival img {
    width: 100%;
    transition: all 0.3s ease-in-out;
    filter: brightness(70%);
}

.latest-arrival:hover img {
    transform: scale(1.05);
    filter: brightness(60%);
}

.latest-arrival-info {
    position: absolute;
    bottom: 20px;
    left: 10px;
    color: white;
    padding: 10px;
    border-radius: 5px;
}

.latest-arrival-info h2 {
    font-size: x-large;
}

.latest-arrival-btn {
    font-family: 'Bodoni Moda', 'Times New Roman', sans-serif !important;
    color: white;
    margin-top: 20px;
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    background-color: #00000000;
    border: 1px solid white;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.latest-arrival-btn:hover {
    color: rgb(0, 0, 0);
    cursor: pointer;
    background-color: #ffffff;
    transform: scale(1.05);
}

/* Stars Rating */

.stars {
    text-align: center;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    margin-bottom: 25px;
}

.stars a {
    text-decoration: none;
    font-size: 1.2em;
    color: lightgray;
    padding: 5px;
    transition: color 0.2s;
}

.stars a:hover,
.stars a:hover ~ a {
    color: black;
}

/* Slideshow */

.slideshow-container {
    position: relative;
    width: 88%;
    height: 300px;
    overflow: hidden;
    margin: auto;
    max-width: 1920px;
}

.slides {
    display: flex;
    width: 200%;
    height: 100%;
    animation: slide 20s infinite alternate;
}

.slide {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(70%);
    transition: all 0.5s ease;
}

.slide:hover img {
    transform: scale(1.05);
    filter: brightness(60%);
}

.banner-logo {
    position: absolute;
    top: 10px;
    right: 235px;
    z-index: 2;
}

.banner-logo img {
    width: 220px;
    height: auto;
    filter: brightness(100%);
}

.slide-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    border-radius: 10px;
}

.slide button {
    font-family: 'Bodoni Moda', 'Times New Roman', sans-serif !important;
    color: white;
    margin-top: 20px;
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    background-color: #00000000;
    border: 1px solid white;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.slide button:hover {
    color: rgb(0, 0, 0);
    cursor: pointer;
    background-color: #ffffff;
    transform: scale(1.05);
}

@keyframes slide {
    0%, 40% { transform: translateX(0); }
    50.01%, 100% { transform: translateX(-50%); }
}

/* Brands Section */

.brand-section {
    text-align: center;
    margin: 40px 0;
    margin-bottom: 70px;
}

.brand-section-title {
    font-size: 24px;
    margin-bottom: 40px;
}

.brands {
    display: flex;
    justify-content: center;
    gap: 70px;
}

.brand-logo {
    width: 120px;
    height: auto;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.brand-logo:hover {
    opacity: 1;
    cursor: pointer;
    transform:scale(1.1);
}

/* Mobile Formatting */

@media screen and (max-width: 768px) {
    .header-icon {
        width: 30px;
        height: 10px;
        font-size: 16px;
    }

    .header-logo {
        position: absolute;
        left: 0;
        top: 15px;
        transform: translateX(20%);
        text-align: left;
    }

    .flex-container {
        flex-direction: column;
        width: 100%;
    }

    .left-container,
    .right-container {
        width: 100%;
    }

    .left-container {
        order: 1;
    }

    .right-container {
        order: 2;
        margin-top: -40px;
    }

    .gallery {
        margin-top: -10px;
    }

    .info-sections {
        flex-direction: column;
        align-items: center;
    }

    .info-section {
        width: 80%;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px;
    }

    .info-icon {
        margin: 0 auto 10px auto;
    }

    .advertisement {
        height: 200px;
    }

    .advertisement h1 {
        font-size: large;
    }

    .advertisement button {
        font-family: 'Bodoni Moda', 'Times New Roman', sans-serif !important;
        color: white;
        margin-top: 20px;
        padding: 15px 35px;
        border: none;
        cursor: pointer;
        font-size: 1.3rem;
        font-weight: bold;
        background-color: #00000000;
        border: 1px solid white;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    }

    .full-width-container {
        flex-direction: column;
        height: auto;
    }

    .split-container {
        width: 100%;
        height: 300px;
    }

    .marketing-points {
        display: flex;
        justify-content: space-around;
        margin: 10px 0;
        background-color: #fefefe;
        padding: 10px 10px;
        font-weight: 400;
    }

    .marketing-point {
        text-align: center;
        width: 30%;
        color: rgb(42, 42, 42);
    }

    .latest-arrival {
        height: 200px;
    }

    .latest-arrival-info {
        bottom: 50px;
        left: 5px;
    }

    .marketing-point-text {
        display: none;
    }

    .banner-logo {
        display: none;
    }

    .slideshow-container {
        height: 170px;
        width: 90%;
    }

    .slide-content h2 {
        font-size: large;
    }

    .slide button {
        margin-top: 0px;
    }

    .footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 0;
    }

    .copyright {
        order: -1;
        margin-bottom: 10px;
    }

    .footer-logo {
        margin-top: 10px;
    }

    .thumbnails {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        max-width: 300px;
        width: 100%;
    }


    .thumbnails {
        gap: 10px;
    }

    .thumbnail {
        width: 50px;
        height: 50px;
    }
}