/* Global Styles */
body {
    font-family: "Montserrat", sans-serif;
    background: #fefcf8;
    color: #222;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Navbar */
.sf-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 70px;
    background: #fdfaf5;
    border-bottom: 1px solid #eee;
}

.sf-logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sf-logo {
    width: 42px;
    height: auto;
}

.sf-brand {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 1px;
}

.sf-navlinks {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sf-navlinks a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.sf-navlinks a:hover {
    color: #a58a6a;
}

.sf-search-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

/* Product Section */
.sf-product-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 50px;
    gap: 60px;
}

/* Background Box Styling */
.backgroundBox {
    background: #ffffff;
    /* White box */
    border-radius: 12px;
    /* Rounded corners */
    padding: 40px 50px;
    /* Inner spacing */
    display: flex;
    gap: 50px;
    align-items: flex-start;
    justify-content: center;

    /* Soft luxury shadow */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.253);

    /* Max width for proper centering */
    max-width: 1100px;
    margin: 0 auto;
}

.sf-product-image img {
    width: 470px;
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}

.sf-product-image img:hover {
    transform: scale(1.02);
}

.sf-product-details {
    max-width: 420px;
}

.sf-product-title {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 0 25px;
    color: #111111dc;

    max-width: 320px;
}

.sf-price {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 18px;
    color: #000;
}

.sf-price-amount span {
    font-size: 29px;
    font-weight: 600;
    margin-right: 20px;
}

.sf-description {
    font-size: 15px;
    margin-bottom: 20px;
    color: #444;
}

.sf-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.sf-features li {
    font-size: 15px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}

.sf-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #a58a6a;
}

.sf-dimensions {
    display: inline-block;
    margin-bottom: 25px;
    font-size: 14px;
    text-decoration: underline;
    color: #111;
    transition: color 0.3s ease;
}

a {
    text-decoration: none !important;
}

.sf-dimensions:hover {
    color: #a58a6a;
}

.sf-enquire-btn {
    background: rgba(0, 0, 0, 0.795);
    color: #fff;
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 3px;
    transition: all 0.3s ease;

    margin-left: 20px;
}

.sf-enquire-btn:hover {
    background: #ffde22;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sf-rating {
    margin-top: 20px;
    font-size: 14px;
    color: #444;
}

.sf-user {
    margin-left: 8px;
    font-style: italic;
    color: #666;
}

/* Footer */
.sf-footer {
    padding: 25px 70px;
    border-top: 1px solid #eee;
    margin-top: 40px;
}

.sf-backlink {
    font-size: 14px;
    text-decoration: none;
    color: #111;
    transition: color 0.3s ease;
}

.sf-backlink:hover {
    color: #a58a6a;
}

.button {
    text-align: left;
}

.greyButton {
    background: #808080 !important;
}

.greyButton:hover {
    background: #696969 !important;
}

/* Container */
.sf-product-image {
    position: relative;
    width: 450px;
    /* apne image size ke hisaab se change kar */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin: auto;
}

/* Slide Wrapper */
.slides {
    display: flex;
    transition: transform 0.4s ease-in-out;
    cursor: grab;
}

/* Images */
.slides img {
    width: 450px;
    /* same as container */
    height: auto;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}

/* Arrows */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    font-weight: bold;
    color: white;


    background: rgba(0, 0, 0, 0.5);
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 50%;
    user-select: none;
    transition: 0.3s;
}

.prev:hover,
.next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 12px;
}

.next {
    right: 12px;
}




/* ---------- Responsive Styles for Product Page ---------- */
@media (max-width: 1024px) {
    .backgroundBox {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .sf-product-details {
        text-align: center;
    }

    .sf-product-details h2 {
        font-size: 28px;
    }

    .sf-product-details .sf-price-amount {
        font-size: 18px;
    }

    .sf-features {
        display: inline-block;
        text-align: left;
        margin: 0 auto;
    }

    .sf-product-container {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .w3-content {
        max-width: 90% !important;
    }

    .sf-product-details h2 {
        font-size: 24px;
    }

    .sf-price-amount {
        font-size: 17px;
    }

    .sf-features li {
        font-size: 15px;
    }

    .button {
        flex-direction: column;
        gap: 10px;
    }

    .sf-enquire-btn {
        width: 100%;
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .sf-product-container {
        padding: 20px 10px;
    }

    .sf-product-details h2 {
        font-size: 22px;
    }

    .sf-description {
        font-size: 14px;
    }

    .sf-features li {
        font-size: 14px;
    }

    .sf-price-amount {
        font-size: 16px;
    }

    .sf-rating {
        font-size: 14px;
        margin-top: 10px;
    }
}