 body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #fffaf0;
            color: #333;
            line-height: 1.6;
        }
        header {
            background-color: #8b4513;
            color: white;
            padding: 30px 20px;
            text-align: center;
        }
        .hero {
            text-align: center;
            padding: 40px 20px;
            background-color: #f5f5dc;
        }
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1, h2 {
            color: #8b4513;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 25px 0;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            display: block;
        }
        nav {
            background-color: #d2691e;
            padding: 12px;
            text-align: center;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        nav a {
            color: white;
            margin: 0 25px;
            text-decoration: none;
            font-weight: bold;
        }
        nav a:hover {
            text-decoration: underline;
        }
        /* Hamburger Menu */
        .hamburger {
            display: none;
            font-size: 28px;
            cursor: pointer;
            color: white;
        }
        .nav-links {
            display: inline-block;
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-links.active { display: block; }
            .hamburger { display: inline-block; }
            nav a { display: block; margin: 10px 0; }
        }
        /* Gallery */
        .gallery {
            position: relative;
            max-width: 800px;
            margin: 30px auto;
            overflow: hidden;
            border-radius: 12px;
        }
        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        .slides img {
            min-width: 100%;
            margin: 0;
        }
        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            padding: 12px;
            cursor: pointer;
            font-size: 20px;
        }
        .prev { left: 10px; }
        .next { right: 10px; }
        footer {
            background-color: #8b4513;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 50px;
        }
        .about-section {
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        #backToTop {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #d2691e;
            color: white;
            border: none;
            padding: 12px 16px;
            border-radius: 50%;
            cursor: pointer;
            display: none;
            font-size: 18px;
        }
        .btn-buy{
            background:#8b4513; 
            color:white; 
            padding:12px 24px; 
            border:none; 
            border-radius:8px; 
            font-size:18px; 
            cursor:pointer; 
            margin-top:20px;
        }