        /* 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: 380px; /* reduced so main image is smaller */
            max-height: 360px; /* limit very tall images */
            border-radius: 4px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
            transition: transform 0.4s ease;
            object-fit: cover; /* keep framing consistent */
        }

        .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: 380px; /* smaller main window */
            max-width: 100%;
            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: 100%;
            /* fills container width */
            height: 360px; /* fixed visual height to avoid very tall images */
            object-fit: cover;
            user-select: none;
            pointer-events: none;
        }

        /* Responsive: make images smaller on narrow screens */
        @media (max-width: 900px) {
            .sf-product-container { padding: 30px; gap: 30px; }
            .sf-product-image { width: 320px; }
            .slides img { height: 300px; }
        }

        @media (max-width: 520px) {
            .sf-product-container { flex-direction: column; padding: 18px; gap: 18px; }
            .sf-product-image { width: 100%; }
            .slides img { height: 220px; }
        }

        /* 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;
        }