From 6f06211b8188a250c5cc69aba00f453841ea2348 Mon Sep 17 00:00:00 2001
From: dshrat <dshrat29@gmail.com>
Date: Sun, 19 Sep 2021 16:51:40 +0700
Subject: [PATCH] add css to product, bag, payment, checkout

---
 bag.html          | 460 +++++++++++++++++++++++----------
 checkout.html     | 639 +++++++++++++++++++++++++++++++---------------
 payment.html      | 342 ++++++++++++++++---------
 product.html      | 198 +++++++++++++-
 stylebag.css      | 200 ---------------
 stylecheckout.css | 225 ----------------
 stylepayment.css  | 173 -------------
 styleproduct.css  | 203 ---------------
 8 files changed, 1180 insertions(+), 1260 deletions(-)
 delete mode 100644 stylebag.css
 delete mode 100644 stylecheckout.css
 delete mode 100644 stylepayment.css
 delete mode 100644 styleproduct.css

diff --git a/bag.html b/bag.html
index e68873e..a7757f5 100644
--- a/bag.html
+++ b/bag.html
@@ -5,7 +5,6 @@
     <meta content="IE=edge" http-equiv="X-UA-Compatible">
     <meta content="width=device-width, initial-scale=1.0" name="viewport">
     <title>bag</title>
-    <link href="stylebag.css" rel="stylesheet">
     <link crossorigin="anonymous" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"
           integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" rel="stylesheet">
     <link href="assets/favicon.png" rel="shortcut icon" type="image/png"/>
@@ -13,140 +12,345 @@
     <link href="https://fonts.googleapis.com" rel="preconnect">
     <link crossorigin href="https://fonts.gstatic.com" rel="preconnect">
     <link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
+    <style>
+        .bg-color {
+            background-color: #1b1c1e;
+        }
+
+        .comp-color {
+            background-color: #212226;
+        }
+
+        .nav-radius {
+            border-bottom-left-radius: 20px;
+            border-bottom-right-radius: 20px;
+        }
+
+        .title {
+            color: white;
+            font-family: 'Poppins', sans-serif;
+            display: flex;
+            margin-top: 15px;
+            margin-left: 48px;
+            justify-content: left;
+            text-align: left;
+            background-color: #1b1c1e;
+        }
+
+        .bag-list {
+            display: flex;
+            color: white;
+            border-bottom: 1px solid white;
+            background-color: #1b1c1e;
+            font-family: 'Poppins', sans-serif;
+            margin-bottom: 1%;
+            justify-content: left;
+            text-align: left;
+        }
+
+
+        .body-right {
+            margin-right: 48px;
+            color: white;
+            width: 30%;
+            height: 100%;
+
+        }
+
+
+        .body-left {
+            margin-left: 48px;
+            margin-right: 48px;
+        }
+
+        .button {
+            color: white;
+            background-color: green;
+            margin-top: 15px;
+        }
+
+        .full-body {
+            display: flex;
+        }
+
+        .info {
+            margin-left: 30px;
+        }
+
+        .titlesummary {
+            text-align: center;
+            border-bottom: 1px solid white;
+            margin: 10px;
+        }
+
+        .container {
+            margin-left: 0px;
+            justify-content: left;
+        }
+
+        .container input {
+            justify-content: left;
+            width: 40px;
+        }
+        .titletr{
+            text-align: center;
+        }
+
+        @media only screen and (max-width: 1000px) {
+            .full-body {
+                display: grid !important;
+            }
+
+            .body-right {
+                margin-left: 48px;
+            }
+
+        }
+
+        @media (max-width: 600px) {
+
+            .full-body {
+                font-size: 7px;
+            }
+
+            .img {
+                width: 30px;
+                height: 30px;
+            }
+
+            .info {
+                margin-left: 5px;
+            }
+
+            .titletr {
+                word-break: keep-all;
+            }
+
+            .titletrdes {
+                word-break: break-all;
+            }
+
+            .titlesummary {
+                font-size: 20px;
+
+            }
+
+            .body-right {
+                width: 300px;
+            }
+
+            .body-left {
+                width: 300px;
+            }
+        }
+
+        @media (max-width: 541px) {
+            .body-right {
+                width: 444px;
+            }
+
+            .body-left {
+                width: 444px;
+            }
+        }
+
+        @media (max-width: 412px) {
+            .body-right {
+                width: 315px;
+            }
+
+            .body-left {
+                width: 315px;
+            }
+        }
+
+        @media (max-width: 415px) {
+            .body-right {
+                width: 318px;
+            }
+
+            .body-left {
+                width: 318px;
+            }
+        }
+
+        @media (max-width: 376px) {
+            .body-right {
+                width: 280px;
+            }
+
+            .body-left {
+                width: 280px;
+            }
+        }
+
+        @media (max-width: 361px) {
+            .body-right {
+                width: 264px;
+            }
+
+            .body-left {
+                width: 264px;
+            }
+        }
+
+        @media (max-width: 321px) {
+            .body-right {
+                width: 224px;
+            }
+
+            .body-left {
+                width: 224px;
+            }
+        }
+
+        @media (max-width: 281px) {
+            .body-right {
+                width: 184px;
+            }
+
+            .body-left {
+                width: 184px;
+            }
+        }
+    </style>
 </head>
 
 <body class="bg-color">
-<nav class="navbar navbar-expand-lg navbar-dark comp-color ml-5 mr-5 nav-radius">
-    <a class="navbar-brand" href="#">Shopping Bag</a>
-    <button aria-controls="navbarTogglerDemo01" aria-expanded="false" aria-label="Toggle navigation" class="navbar-toggler"
+    <nav class="navbar navbar-expand-lg navbar-dark comp-color ml-5 mr-5 nav-radius">
+        <a class="navbar-brand" href="#">Details Products</a>
+        <button aria-controls="navbarTogglerDemo01" aria-expanded="false" aria-label="Toggle navigation" class="navbar-toggler"
             data-target="#navbarTogglerDemo01" data-toggle="collapse" type="button">
-        <span class="navbar-toggler-icon"></span>
-    </button>
-    <div class="collapse navbar-collapse" id="navbarTogglerDemo01">
-        <ul class="navbar-nav mx-auto">
-            <li class="nav-item active">
-                <a class="nav-link" href="/">Home</a>
-            </li>
-            <li class="nav-item">
-                <a aria-disabled="true" class="nav-link disabled" href="/products-page.html">Products</a>
-            </li>
-            <li class="nav-item">
-                <a class="nav-link" href="/aboutus.html">About Us</a>
-            </li>
-        </ul>
-        <span class="navbar-nav my-2 my-lg-0 text-white">
-                <div class="my-4">
-                    <a href="login.html"><button class="btn btn-outline-success mt-auto mb-auto mr-3" type="button">Login</button></a>
-                </div>
-                <i class="fas fa-shopping-cart mt-auto mb-auto"><span class="ml-2 mt-auto mb-auto">$999</span></i>
-            </span>
-    </div>
-</nav>
-
-<div class="title">
-    <h3>Shopping Bag</h3>
-</div>
-
-
-<div class="full-body">
-    <div class="body-left">
-        <table class="table" style="color: white; margin-right: 48px;">
-            <thead>
-            <tr class="titletr">
-                <th scope="col">Item</th>
-                <th scope="col">Qty</th>
-                <th scope="col">Item Price</th>
-                <th scope="col">Sub Total</th>
-            </tr>
-            </thead>
-            <tbody>
-            <tr class="titletrdes">
-                <th scope="row" style="display: flex;"><img alt="placeholder image" class="img" height="80px"
-                                                            src="assets/sepatu.png" width="80px">
-                    <div class="info">
-                        <p>Fashione Shoes</p>
-                        <p>Size : 8</p>
-                        <p>Qty : 1</p>
+            <span class="navbar-toggler-icon"></span>
+        </button>
+        <div class="collapse navbar-collapse" id="navbarTogglerDemo01">
+            <ul class="navbar-nav mx-auto">
+                <li class="nav-item">
+                    <a class="nav-link" href="/">Home</a>
+                </li>
+                <li class="nav-item active">
+                    <a aria-disabled="true" class="nav-link disabled" href="product-list.html">Products</a>
+                </li>
+                <li class="nav-item">
+                    <a class="nav-link" href="about-us.html">About Us</a>
+                </li>
+                   <li class="nav-item">
+                    <a class="nav-link" href="faq.html">FAQ</a>
+                </li>
+            </ul>
+            <span class="navbar-nav my-2 my-lg-0 text-white">
+                    <div class="my-4">
+                        <a href="login.html"><button class="btn btn-outline-success mt-auto mb-auto mr-3" type="button">Login</button></a>
                     </div>
-                </th>
-                <td>
-                    <div class="container">
-                        <input id="" min="1" name="" type="number" value="1">
-                        <a href="" style="font-size: 10px;"><u>REMOVE</u></a>
-                    </div>
-                </td>
-                <td>Rp 1.999.999,00</td>
-                <td>Rp 1.999.999,00</td>
-            </tr>
-            <tr>
-                <th scope="row" style="display: flex;"><img alt="placeholder image" class="img" height="80px"
-                                                            src="assets/sepatu.png" width="80px">
-                    <div class="info">
-                        <p>Fashione Shoes</p>
-                        <p>Size : 8</p>
-                        <p>Qty : 1</p>
-                    </div>
-                </th>
-                <td>
-                    <div class="container">
-                        <input id="" min="1" name="" type="number" value="1">
-                        <a href="" style="font-size: 10px;"><u>REMOVE</u></a>
-                    </div>
-                </td>
-                <td>Rp 1.999.999,00</td>
-                <td>Rp 1.999.999,00</td>
-            </tr>
-            <tr>
-                <th scope="row" style="display: flex;"><img alt="placeholder image" class="img" height="80px"
-                                                            src="assets/sepatu.png" width="80px">
-                    <div class="info">
-                        <p>Fashione Shoes</p>
-                        <p>Size : 8</p>
-                        <p>Qty : 1</p>
-                    </div>
-                </th>
-                <td>
-                    <div class="container">
-                        <input id="" min="1" name="" type="number" value="1">
-                        <a href="" style="font-size: 10px;"><u>REMOVE</u></a>
-                    </div>
-                </td>
-                <td>Rp 1.999.999,00</td>
-                <td>Rp 1.999.999,00</td>
-            </tr>
-            </tbody>
-        </table>
-    </div>
-
-    <div class="body-right" style="margin-left: 48px;">
-        <div class="border">
-            <h5 class="titlesummary"><b>Order Summary</b></h5>
-            <div class="container">
-                <div class="row justify-content-between" style="display: flex; margin: 10px">
-                    <p>Sub Total</p>
-                    <p>1.999.999,00</p>
-                </div>
-            </div>
-            <div class="container">
-                <div class="row justify-content-between"
-                     style="display: flex; border-bottom: 1px solid white; margin: 10px">
-                    <p>Shipping</p>
-                    <p>-</p>
-                </div>
-            </div>
-
-            <div class="container">
-                <div class="row justify-content-between" style="display: flex; margin: 10px">
-                    <p>Estimate</p>
-                    <p>1.999.999,00</p>
-                </div>
-            </div>
+                    <i class="fas fa-shopping-cart mt-auto mb-auto"><span class="ml-2 mt-auto mb-auto">$999</span></i>
+                </span>
+        </div>
+    </nav>
+
+    <div class="title">
+        <h3>Shopping Bag</h3>
+    </div>
+
+
+    <div class="full-body">
+        <div class="body-left">
+            <table class="table" style="color: white; margin-right: 48px;">
+                <thead>
+                <tr class="titletr">
+                    <th scope="col">Item</th>
+                    <th scope="col" >Qty</th>
+                    <th scope="col">Item Price</th>
+                    <th scope="col">Sub Total</th>
+                </tr>
+                </thead>
+                <tbody>
+                <tr class="titletrdes">
+                    <th scope="row" style="display: flex;"><img alt="placeholder image" class="img" height="80px"
+                                                                src="assets/sepatu.png" width="80px">
+                        <div class="info">
+                            <p>Fashione Shoes</p>
+                            <p>Size : 8</p>
+                            <p>Qty : 1</p>
+                        </div>
+                    </th>
+                    <td>
+                        <div class="container">
+                            <input id="" min="1" name="" type="number" value="1">
+                            <a href="" style="font-size: 10px;"><u>REMOVE</u></a>
+                        </div>
+                    </td>
+                    <td>Rp 1.999.999,00</td>
+                    <td>Rp 1.999.999,00</td>
+                </tr>
+                <tr>
+                    <th scope="row" style="display: flex;"><img alt="placeholder image" class="img" height="80px"
+                                                                src="assets/sepatu.png" width="80px">
+                        <div class="info">
+                            <p>Fashione Shoes</p>
+                            <p>Size : 8</p>
+                            <p>Qty : 1</p>
+                        </div>
+                    </th>
+                    <td>
+                        <div class="container">
+                            <input id="" min="1" name="" type="number" value="1">
+                            <a href="" style="font-size: 10px;"><u>REMOVE</u></a>
+                        </div>
+                    </td>
+                    <td>Rp 1.999.999,00</td>
+                    <td>Rp 1.999.999,00</td>
+                </tr>
+                <tr>
+                    <th scope="row" style="display: flex;"><img alt="placeholder image" class="img" height="80px"
+                                                                src="assets/sepatu.png" width="80px">
+                        <div class="info">
+                            <p>Fashione Shoes</p>
+                            <p>Size : 8</p>
+                            <p>Qty : 1</p>
+                        </div>
+                    </th>
+                    <td>
+                        <div class="container">
+                            <input id="" min="1" name="" type="number" value="1">
+                            <a href="" style="font-size: 10px;"><u>REMOVE</u></a>
+                        </div>
+                    </td>
+                    <td>Rp 1.999.999,00</td>
+                    <td>Rp 1.999.999,00</td>
+                </tr>
+                </tbody>
+            </table>
+        </div>
+
+        <div class="body-right" style="margin-left: 48px;">
+            <div class="border">
+                <h5 class="titlesummary"><b>Order Summary</b></h5>
+                <div class="container">
+                    <div class="row justify-content-between" style="display: flex; margin: 10px">
+                        <p>Sub Total</p>
+                        <p>1.999.999,00</p>
+                    </div>
+                </div>
+                <div class="container">
+                    <div class="row justify-content-between"
+                        style="display: flex; border-bottom: 1px solid white; margin: 10px">
+                        <p>Shipping</p>
+                        <p>-</p>
+                    </div>
+                </div>
+
+                <div class="container">
+                    <div class="row justify-content-between" style="display: flex; margin: 10px">
+                        <p>Estimate</p>
+                        <p>1.999.999,00</p>
+                    </div>
+                </div>
+            </div>
+            <a href="checkout.html">
+                <button class="button">Checkout</button>
+            </a>
         </div>
-        <a href="checkout.html">
-            <button class="button">Checkout</button>
-        </a>
     </div>
-</div>
 
 <script crossorigin="anonymous"
         integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
diff --git a/checkout.html b/checkout.html
index 0dc3337..b17c3d6 100644
--- a/checkout.html
+++ b/checkout.html
@@ -5,7 +5,6 @@
     <meta content="IE=edge" http-equiv="X-UA-Compatible">
     <meta content="width=device-width, initial-scale=1.0" name="viewport">
     <title>checkout</title>
-    <link href="stylecheckout.css" rel="stylesheet">
     <link crossorigin="anonymous" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"
           integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" rel="stylesheet">
     <link href="assets/favicon.png" rel="shortcut icon" type="image/png"/>
@@ -13,239 +12,467 @@
     <link href="https://fonts.googleapis.com" rel="preconnect">
     <link crossorigin href="https://fonts.gstatic.com" rel="preconnect">
     <link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
+    <style>
+        .bg-color {
+            background-color: #1b1c1e;
+        }
+
+        .comp-color {
+            background-color: #212226;
+        }
+
+        .nav-radius {
+            border-bottom-left-radius: 20px;
+            border-bottom-right-radius: 20px;
+        }
+
+        .title {
+            color: white;
+            font-family: 'Poppins', sans-serif;
+            display: flex;
+            margin-top: 15px;
+            margin-left: 48px;
+            justify-content: left;
+            text-align: left;
+            background-color: #1b1c1e;
+        }
+
+        .bag-list {
+            display: flex;
+            color: white;
+            border-bottom: 1px solid white;
+            background-color: #1b1c1e;
+            font-family: 'Poppins', sans-serif;
+            margin-bottom: 1%;
+            justify-content: left;
+            text-align: left;
+        }
+
+
+        .body-right {
+            margin-right: 48px;
+            color: white;
+            width: 30%;
+            height: 100%;
+
+        }
+
+
+        .body-left {
+            margin-left: 48px;
+            margin-right: 48px;
+        }
+
+        .button {
+            color: white;
+            background-color: green;
+            margin-top: 15px;
+        }
+
+        .full-body {
+            display: flex;
+        }
+
+        .info {
+            margin-left: 30px;
+        }
+
+        .titlesummary {
+            text-align: center;
+            border-bottom: 1px solid white;
+            margin: 10px;
+        }
+
+        .modal {
+            display: none;
+            position: fixed;
+            z-index: 1;
+            padding-top: 100px;
+            left: 0;
+            top: 0;
+            width: 100%;
+            height: 100%;
+            overflow: auto;
+            background-color: rgb(0, 0, 0);
+            background-color: rgba(0, 0, 0, 0.4);
+        }
+
+        .modal-content {
+            background-color: #fefefe;
+            margin: auto;
+            padding: 20px;
+            border: 1px solid #888;
+            width: 80%;
+        }
+
+        .close {
+            color: #aaaaaa;
+            float: right;
+            font-size: 28px;
+            font-weight: bold;
+        }
+
+        .close:hover,
+        .close:focus {
+            color: #000;
+            text-decoration: none;
+            cursor: pointer;
+        }
+
+        @media only screen and (max-width: 1000px) {
+            .full-body {
+                display: grid !important;
+            }
+
+            .body-right {
+                margin-left: 48px;
+                width: 500px;
+            }
+
+        }
+
+        @media (max-width: 600px) {
+
+            .full-body {
+                font-size: 7px;
+            }
+
+            .img {
+                width: 30px;
+                height: 30px;
+            }
+
+            .info {
+                margin-left: 5px;
+            }
+
+            .titletr {
+                word-break: keep-all;
+            }
+
+            .titletrdes {
+                word-break: break-all;
+            }
+
+            .titlesummary {
+                font-size: 10px;
+            }
+
+            .body-right {
+                width: 504px;
+            }
+
+            .body-left {
+                width: 504px;
+            }
+        }
+
+        @media (max-width: 541px) {
+            .body-right {
+                width: 444px;
+            }
+
+            .body-left {
+                width: 444px;
+            }
+        }
+
+        @media (max-width: 412px) {
+            .body-right {
+                width: 315px;
+            }
+
+            .body-left {
+                width: 315px;
+            }
+        }
+
+        @media (max-width: 415px) {
+            .body-right {
+                width: 318px;
+            }
+
+            .body-left {
+                width: 318px;
+            }
+        }
+
+        @media (max-width: 376px) {
+            .body-right {
+                width: 280px;
+            }
+
+            .body-left {
+                width: 280px;
+            }
+        }
+
+        @media (max-width: 361px) {
+            .body-right {
+                width: 264px;
+            }
+
+            .body-left {
+                width: 264px;
+            }
+        }
+
+        @media (max-width: 321px) {
+            .body-right {
+                width: 224px;
+            }
+
+            .body-left {
+                width: 224px;
+            }
+        }
+
+        @media (max-width: 281px) {
+            .body-right {
+                width: 184px;
+            }
+
+            .body-left {
+                width: 184px;
+            }
+        }
+    </style>
 </head>
 
 <body class="bg-color">
-<nav class="navbar navbar-expand-lg navbar-dark comp-color ml-5 mr-5 nav-radius">
-    <a class="navbar-brand" href="#">Checkout</a>
-    <button aria-controls="navbarTogglerDemo01" aria-expanded="false" aria-label="Toggle navigation" class="navbar-toggler"
+    <nav class="navbar navbar-expand-lg navbar-dark comp-color ml-5 mr-5 nav-radius">
+        <a class="navbar-brand" href="#">Shopping Cart</a>
+        <button aria-controls="navbarTogglerDemo01" aria-expanded="false" aria-label="Toggle navigation" class="navbar-toggler"
             data-target="#navbarTogglerDemo01" data-toggle="collapse" type="button">
-        <span class="navbar-toggler-icon"></span>
-    </button>
-    <div class="collapse navbar-collapse" id="navbarTogglerDemo01">
-        <ul class="navbar-nav mx-auto">
-            <li class="nav-item active">
-                <a class="nav-link" href="/">Home</a>
-            </li>
-            <li class="nav-item">
-                <a aria-disabled="true" class="nav-link disabled" href="/products-page.html">Products</a>
-            </li>
-            <li class="nav-item">
-                <a class="nav-link" href="/aboutus.html">About Us</a>
-            </li>
-        </ul>
-        <span class="navbar-nav my-2 my-lg-0 text-white">
-                <div class="my-4">
-                    <a href="login.html"><button class="btn btn-outline-success mt-auto mb-auto mr-3" type="button">Login</button></a>
-                </div>
-                <i class="fas fa-shopping-cart mt-auto mb-auto"><span class="ml-2 mt-auto mb-auto">$999</span></i>
-            </span>
-    </div>
-</nav>
-
-<div class="title">
-    <h3>Shopping Cart</h3>
-</div>
-
-
-<div class="full-body">
-    <div class="body-left">
-        <table class="table" style="color: white; margin-right: 48px;">
-            <thead>
-            <tr class="titletr">
-                <th scope="col">Item</th>
-                <th scope="col">Qty</th>
-                <th scope="col">Item Price</th>
-                <th scope="col">Sub Total</th>
-            </tr>
-            </thead>
-            <tbody>
-            <tr class="titletrdes">
-                <th scope="row" style="display: flex;"><img alt="placeholder image" class="img" height="80px"
-                                                            src="assets/sepatu.png" width="80px">
-                    <div class="info">
-                        <p>Fashione Shoes</p>
-                        <p>Size : 8</p>
-                        <p>Qty : 1</p>
+            <span class="navbar-toggler-icon"></span>
+        </button>
+        <div class="collapse navbar-collapse" id="navbarTogglerDemo01">
+            <ul class="navbar-nav mx-auto">
+                <li class="nav-item">
+                    <a class="nav-link" href="/">Home</a>
+                </li>
+                <li class="nav-item active">
+                    <a aria-disabled="true" class="nav-link disabled" href="product-list.html">Products</a>
+                </li>
+                <li class="nav-item">
+                    <a class="nav-link" href="about-us.html">About Us</a>
+                </li>
+                   <li class="nav-item">
+                    <a class="nav-link" href="faq.html">FAQ</a>
+                </li>
+            </ul>
+            <span class="navbar-nav my-2 my-lg-0 text-white">
+                    <div class="my-4">
+                        <a href="login.html"><button class="btn btn-outline-success mt-auto mb-auto mr-3" type="button">Login</button></a>
                     </div>
-                </th>
-                <td>1</td>
-                <td>Rp 1.999.999,00</td>
-                <td>Rp 1.999.999,00</td>
-            </tr>
-            <tr>
-                <th scope="row" style="display: flex;"><img alt="placeholder image" class="img" height="80px"
-                                                            src="assets/sepatu.png" width="80px">
-                    <div class="info">
-                        <p>Fashione Shoes</p>
-                        <p>Size : 8</p>
-                        <p>Qty : 1</p>
-                    </div>
-                </th>
-                <td>1</td>
-                <td>Rp 1.999.999,00</td>
-                <td>Rp 1.999.999,00</td>
-            </tr>
-            <tr>
-                <th scope="row" style="display: flex;"><img alt="placeholder image" class="img" height="80px"
-                                                            src="assets/sepatu.png" width="80px">
-                    <div class="info">
-                        <p>Fashione Shoes</p>
-                        <p>Size : 8</p>
-                        <p>Qty : 1</p>
-                    </div>
-                </th>
-                <td>1</td>
-                <td>Rp 1.999.999,00</td>
-                <td>Rp 1.999.999,00</td>
-            </tr>
-            </tbody>
-        </table>
+                    <i class="fas fa-shopping-cart mt-auto mb-auto"><span class="ml-2 mt-auto mb-auto">$999</span></i>
+                </span>
+        </div>
+    </nav>
+
+    <div class="title">
+        <h3>Shopping Cart</h3>
     </div>
 
-    <div class="body-right" style="margin-left: 48px;">
-        <div class="card" style="background-color: #212226 ; border-radius: 20px; padding: 30px;">
-            <h3>SHIPPING DETAILS</h3>
-            <p>Please enter your delivery address</p>
-            <form style="border-top: 1px solid white;">
-                <div class="form-group">
-                    <label for="contactInformation"><b>CONTACT INFORMATION</b></label>
-                    <div style="display: flex;">
-                        <input aria-describedby="fnamehelp" class="form-control" id="exampleInputFName" placeholder="First Name"
-                               type="FName">
-                        <input aria-describedby="lnamehelp" class="form-control" id="exampleInputLName" placeholder="Last Name"
-                               type="Lname">
+
+    <div class="full-body">
+        <div class="body-left">
+            <table class="table" style="color: white; margin-right: 48px;">
+                <thead>
+                <tr class="titletr">
+                    <th scope="col">Item</th>
+                    <th scope="col">Qty</th>
+                    <th scope="col">Item Price</th>
+                    <th scope="col">Sub Total</th>
+                </tr>
+                </thead>
+                <tbody>
+                <tr class="titletrdes">
+                    <th scope="row" style="display: flex;"><img alt="placeholder image" class="img" height="80px"
+                                                                src="assets/sepatu.png" width="80px">
+                        <div class="info">
+                            <p>Fashione Shoes</p>
+                            <p>Size : 8</p>
+                            <p>Qty : 1</p>
+                        </div>
+                    </th>
+                    <td>1</td>
+                    <td>Rp 1.999.999,00</td>
+                    <td>Rp 1.999.999,00</td>
+                </tr>
+                <tr>
+                    <th scope="row" style="display: flex;"><img alt="placeholder image" class="img" height="80px"
+                                                                src="assets/sepatu.png" width="80px">
+                        <div class="info">
+                            <p>Fashione Shoes</p>
+                            <p>Size : 8</p>
+                            <p>Qty : 1</p>
+                        </div>
+                    </th>
+                    <td>1</td>
+                    <td>Rp 1.999.999,00</td>
+                    <td>Rp 1.999.999,00</td>
+                </tr>
+                <tr>
+                    <th scope="row" style="display: flex;"><img alt="placeholder image" class="img" height="80px"
+                                                                src="assets/sepatu.png" width="80px">
+                        <div class="info">
+                            <p>Fashione Shoes</p>
+                            <p>Size : 8</p>
+                            <p>Qty : 1</p>
+                        </div>
+                    </th>
+                    <td>1</td>
+                    <td>Rp 1.999.999,00</td>
+                    <td>Rp 1.999.999,00</td>
+                </tr>
+                </tbody>
+            </table>
+        </div>
+
+        <div class="body-right" style="margin-left: 48px;">
+            <div class="card" style="background-color: #212226 ; border-radius: 20px; padding: 30px;">
+                <h3>SHIPPING DETAILS</h3>
+                <p>Please enter your delivery address</p>
+                <form style="border-top: 1px solid white;">
+                    <div class="form-group">
+                        <label for="contactInformation"><b>CONTACT INFORMATION</b></label>
+                        <div style="display: flex;">
+                            <input aria-describedby="fnamehelp" class="form-control" id="exampleInputFName" placeholder="First Name"
+                                type="FName">
+                            <input aria-describedby="lnamehelp" class="form-control" id="exampleInputLName" placeholder="Last Name"
+                                type="Lname">
+                        </div>
+                        <input aria-describedby="PhoneNumber" class="form-control" id="exampleInputPhoneNum" placeholder="Phone Number"
+                            type="PhoneNum">
+                        <small class="form-text text-muted" id="phoneHelp">We'll never share your Phone Number with anyone
+                            else.</small>
                     </div>
-                    <input aria-describedby="PhoneNumber" class="form-control" id="exampleInputPhoneNum" placeholder="Phone Number"
-                           type="PhoneNum">
-                    <small class="form-text text-muted" id="phoneHelp">We'll never share your Phone Number with anyone
-                        else.</small>
-                </div>
 
-                <div class="form-group">
-                    <label for="contactInformation"><b>ADDRESS</b></label>
-                    <input aria-describedby="Address1" class="form-control" id="exampleInputAddress1" placeholder="Street Address "
-                           type="Address1">
-                    <input aria-describedby="Address2" class="form-control" id="exampleInputAddress2" placeholder="Street Address 2 "
-                           type="Address2">
-                </div>
-
-
-                <div class="input-group mb-3">
-                    <div class="input-group-prepend">
-                        <label class="input-group-text" for="inputGroupSelect01">Region</label>
+                    <div class="form-group">
+                        <label for="contactInformation"><b>ADDRESS</b></label>
+                        <input aria-describedby="Address1" class="form-control" id="exampleInputAddress1" placeholder="Street Address "
+                            type="Address1">
+                        <input aria-describedby="Address2" class="form-control" id="exampleInputAddress2" placeholder="Street Address 2 "
+                            type="Address2">
                     </div>
-                    <select class="custom-select" id="inputGroupSelect01">
-                        <option selected>
-                            <Choose class=""></Choose>
-                        </option>
-                        <option value="1">Indonesia</option>
-                        <option value="2">Japan</option>
-                        <option value="3">United Kingdom</option>
-                    </select>
-                </div>
 
-                <div class="input-group mb-3">
-                    <div class="input-group-prepend">
-                        <label class="input-group-text" for="inputGroupSelect02">State/Province</label>
+
+                    <div class="input-group mb-3">
+                        <div class="input-group-prepend">
+                            <label class="input-group-text" for="inputGroupSelect01">Region</label>
+                        </div>
+                        <select class="custom-select" id="inputGroupSelect01">
+                            <option selected>
+                                <Choose class=""></Choose>
+                            </option>
+                            <option value="1">Indonesia</option>
+                            <option value="2">Japan</option>
+                            <option value="3">United Kingdom</option>
+                        </select>
                     </div>
-                    <select class="custom-select" id="inputGroupSelect02">
-                        <option selected>Choose...</option>
-                        <option value="1">DKI Jakarta</option>
-                        <option value="2">Kalimantan Barat</option>
-                        <option value="3">Jawab Barat</option>
-                    </select>
-                </div>
 
-                <div class="input-group mb-3">
-                    <div class="input-group-prepend">
-                        <label class="input-group-text" for="inputGroupSelect03">City</label>
+                    <div class="input-group mb-3">
+                        <div class="input-group-prepend">
+                            <label class="input-group-text" for="inputGroupSelect02">State/Province</label>
+                        </div>
+                        <select class="custom-select" id="inputGroupSelect02">
+                            <option selected>Choose...</option>
+                            <option value="1">DKI Jakarta</option>
+                            <option value="2">Kalimantan Barat</option>
+                            <option value="3">Jawab Barat</option>
+                        </select>
                     </div>
-                    <select class="custom-select" id="inputGroupSelect03">
-                        <option selected>Choose...</option>
-                        <option value="1">Jakarta</option>
-                        <option value="2">Singkawang</option>
-                        <option value="3">Bogor</option>
-                    </select>
-                </div>
 
-                <div class="input-group mb-3">
-                    <div class="input-group-prepend">
-                        <label class="input-group-text" for="inputGroupSelect04">District</label>
+                    <div class="input-group mb-3">
+                        <div class="input-group-prepend">
+                            <label class="input-group-text" for="inputGroupSelect03">City</label>
+                        </div>
+                        <select class="custom-select" id="inputGroupSelect03">
+                            <option selected>Choose...</option>
+                            <option value="1">Jakarta</option>
+                            <option value="2">Singkawang</option>
+                            <option value="3">Bogor</option>
+                        </select>
                     </div>
-                    <select class="custom-select" id="inputGroupSelect04">
-                        <option selected>Choose...</option>
-                        <option value="1">Grogol</option>
-                        <option value="2">Sei-Wei</option>
-                        <option value="3">Puncak</option>
-                    </select>
-                </div>
 
-                <div class="input-group mb-3">
-                    <div class="input-group-prepend">
-                        <label class="input-group-text" for="inputGroupSelect05">Sub District</label>
+                    <div class="input-group mb-3">
+                        <div class="input-group-prepend">
+                            <label class="input-group-text" for="inputGroupSelect04">District</label>
+                        </div>
+                        <select class="custom-select" id="inputGroupSelect04">
+                            <option selected>Choose...</option>
+                            <option value="1">Grogol</option>
+                            <option value="2">Sei-Wei</option>
+                            <option value="3">Puncak</option>
+                        </select>
                     </div>
-                    <select class="custom-select" id="inputGroupSelect05">
-                        <option selected>Choose...</option>
-                        <option value="1">...</option>
-                        <option value="2">...</option>
-                        <option value="3">...</option>
-                    </select>
-                </div>
 
-                <div class="input-group mb-3">
-                    <div class="input-group-prepend">
-                        <label class="input-group-text" for="inputGroupSelect06">Portal Code</label>
+                    <div class="input-group mb-3">
+                        <div class="input-group-prepend">
+                            <label class="input-group-text" for="inputGroupSelect05">Sub District</label>
+                        </div>
+                        <select class="custom-select" id="inputGroupSelect05">
+                            <option selected>Choose...</option>
+                            <option value="1">...</option>
+                            <option value="2">...</option>
+                            <option value="3">...</option>
+                        </select>
                     </div>
-                    <select class="custom-select" id="inputGroupSelect06">
-                        <option selected>Choose...</option>
-                        <option value="1">11450</option>
-                        <option value="2">79115</option>
-                        <option value="3">16111</option>
-                    </select>
-                </div>
 
-                <small class="form-text text-muted" id="phoneHelp">Email : budi45@gmail.com</small>
-                <div class="form-check">
-                    <input class="form-check-input" id="defaultCheck1" type="checkbox" value="">
-                    <label class="form-check-label" for="defaultCheck1">
-                        My Billing and Shipping information are the same
-                    </label>
-                </div>
-            </form>
-
-            <h3 style="margin-top: 20px;">SHIPPING METHODS</h3>
-
-            <form style="border-top: 1px solid white;">
-                <div class="input-group mb-3">
-                    <div class="input-group-prepend">
-                        <label class="input-group-text" for="inputGroupSelect07">Shipping Methods</label>
+                    <div class="input-group mb-3">
+                        <div class="input-group-prepend">
+                            <label class="input-group-text" for="inputGroupSelect06">Portal Code</label>
+                        </div>
+                        <select class="custom-select" id="inputGroupSelect06">
+                            <option selected>Choose...</option>
+                            <option value="1">11450</option>
+                            <option value="2">79115</option>
+                            <option value="3">16111</option>
+                        </select>
                     </div>
-                    <select class="custom-select" id="inputGroupSelect07">
-                        <option selected>Choose...</option>
-                        <option value="1">JNT</option>
-                        <option value="2">JNE</option>
-                        <option value="3">SICEPAT</option>
-                    </select>
-                </div>
-            </form>
-            <div style="display: flex; color: black;">
-                <button class="button" id="myBtn">Pay</button>
-                <div class="modal" id="myModal">
-                    <div class="modal-content">
-                        <span class="close">&times;</span>
-                        <div class="konten">
-                            <h4><b>YOUR ORDER SUCCESSFULLY</b></h4>
-                            <a href="payment.html">
-                                <button class="button" style="background-color: yellow; color: black;">How to Pay</button>
-                            </a>
+
+                    <small class="form-text text-muted" id="phoneHelp">Email : budi45@gmail.com</small>
+                    <div class="form-check">
+                        <input class="form-check-input" id="defaultCheck1" type="checkbox" value="">
+                        <label class="form-check-label" for="defaultCheck1">
+                            My Billing and Shipping information are the same
+                        </label>
+                    </div>
+                </form>
+
+                <h3 style="margin-top: 20px;">SHIPPING METHODS</h3>
+
+                <form style="border-top: 1px solid white;">
+                    <div class="input-group mb-3">
+                        <div class="input-group-prepend">
+                            <label class="input-group-text" for="inputGroupSelect07">Shipping Methods</label>
+                        </div>
+                        <select class="custom-select" id="inputGroupSelect07">
+                            <option selected>Choose...</option>
+                            <option value="1">JNT</option>
+                            <option value="2">JNE</option>
+                            <option value="3">SICEPAT</option>
+                        </select>
+                    </div>
+                </form>
+                <div style="display: flex; color: black;">
+                    <button class="button" id="myBtn">Pay</button>
+                    <div class="modal" id="myModal">
+                        <div class="modal-content">
+                            <span class="close">&times;</span>
+                            <div class="konten">
+                                <h4><b>YOUR ORDER SUCCESSFULLY</b></h4>
+                                <a href="payment.html">
+                                    <button class="button" style="background-color: yellow; color: black;">How to Pay</button>
+                                </a>
+                            </div>
                         </div>
                     </div>
                 </div>
             </div>
         </div>
     </div>
-</div>
 
 
 <script crossorigin="anonymous"
diff --git a/payment.html b/payment.html
index f7958ed..021d62e 100644
--- a/payment.html
+++ b/payment.html
@@ -1,154 +1,252 @@
-<!DOCTYPE html>
+<!doctype html>
 <html lang="en">
 <head>
-    <meta charset="UTF-8">
+    <meta charset="utf-8">
     <meta content="IE=edge" http-equiv="X-UA-Compatible">
-    <meta content="width=device-width, initial-scale=1.0" name="viewport">
-    <title>payment</title>
-    <link href="stylepayment.css" rel="stylesheet">
+    <meta content="width=device-width, initial-scale=1" name="viewport">
+    <link href="assets/favicon.png" rel="shortcut icon" type="image/png"/>
+    <title>Payment</title>
     <link crossorigin="anonymous" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"
           integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" rel="stylesheet">
-    <link href="assets/favicon.png" rel="shortcut icon" type="image/png"/>
-    <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" rel="stylesheet">
     <link href="https://fonts.googleapis.com" rel="preconnect">
     <link crossorigin href="https://fonts.gstatic.com" rel="preconnect">
     <link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
 
+    <style>
+        body {
+            font-family: 'Poppins', sans-serif;
+            background-color: #1b1c1e;
+        }
+
+        .nav-color {
+            background-color: #212226;
+        }
+
+        .nav-radius {
+            border-bottom-left-radius: 20px;
+            border-bottom-right-radius: 20px;
+        }
+
+        .card {
+            position: center;
+            margin: auto;
+            text-align: center;
+            border-bottom-left-radius: 20px;
+            border-bottom-right-radius: 20px;
+            border-top-left-radius: 20px;
+            border-top-right-radius: 20px;
+            background-color: #212226;
+        }
+
+        .icon {
+            position: center;
+            margin: auto;
+            width: 70%;
+            height: 70%;
+        }
+
+        @media screen and (max-width: 766px) {
+            .card h2 {
+                font-size: 7vw;
+            }
+
+            .card h5 {
+                font-size: 5vw;
+            }
+
+            .navbar-brand {
+                width: 11vw;
+                height: 11vw;
+            }
+
+        }
+
+        @media screen and (min-width: 767px) {
+            .card h2 {
+                font-size: 4vw;
+            }
+
+            .card h5 {
+                font-size: 2vw;
+            }
+
+            .navbar-brand {
+                width: 8vw;
+                height: 8vw;
+            }
+
+        }
+
+        @media screen and (min-width: 993px) {
+            .card h2 {
+                font-size: 3vw;
+            }
+
+            .card h5 {
+                font-size: 1.3vw;
+            }
+
+            .navbar-brand {
+                width: 6vw;
+                height: 6vw;
+            }
+
+        }
+
+        @media screen and (min-width: 1400px) {
+            .card h2 {
+                font-size: 4vw;
+            }
+
+            .card h5 {
+                font-size: 2vw;
+            }
+
+            .navbar-brand {
+                width: 6vw;
+                height: 6vw;
+            }
+        }
+        .btn {
+            position: center;
+            margin: auto;
+            text-align: center;
+            border-bottom-left-radius: 20px;
+            border-bottom-right-radius: 20px;
+            border-top-left-radius: 20px;
+            border-top-right-radius: 20px;
+            background-color: #212226;
+        }
+        .card-body{
+            text-align: left;
+        }
+        .border{
+            text-align: center;
+        }
+    </style>
 </head>
+<body>
+<nav class="navbar navbar-dark nav-color ml-5 mr-5 nav-radius">
+    <img alt="Banner" class="navbar-brand" src="assets/logo_transparent.png" style="margin-top: 0%;" width="5%">
+    <ul class="navbar-nav">
+        <li class="nav-item">
+            <a style="color: white; font-size: 16pt;">Payment Page</a>
+        </li>
+    </ul>
+    <div class="collapse navbar-collapse" id="navbarTogglerDemo01"></div>
+</nav>
 
-<body class="bg-color">
-    <nav class="navbar navbar-expand-lg navbar-dark comp-color ml-5 mr-5 nav-radius">
-        <a class="navbar-brand" href="#">Payments</a>
-        <button aria-controls="navbarTogglerDemo01" aria-expanded="false" aria-label="Toggle navigation" class="navbar-toggler"
-                data-target="#navbarTogglerDemo01" data-toggle="collapse" type="button">
-            <span class="navbar-toggler-icon"></span>
-        </button>
-        <div class="collapse navbar-collapse" id="navbarTogglerDemo01">
-            <ul class="navbar-nav mx-auto">
-                <li class="nav-item active">
-                    <a class="nav-link" href="/">Home</a>
-                </li>
-                <li class="nav-item">
-                    <a aria-disabled="true" class="nav-link disabled" href="/products-page.html">Products</a>
-                </li>
-                <li class="nav-item">
-                    <a class="nav-link" href="/aboutus.html">About Us</a>
-                </li>
-            </ul>
-            <span class="navbar-nav my-2 my-lg-0 text-white">
-                    <div class="my-4">
-                        <a href="login.html"><button class="btn btn-outline-success mt-auto mb-auto mr-3" type="button">Login</button></a>
-                    </div>
-                    <i class="fas fa-shopping-cart mt-auto mb-auto"><span class="ml-2 mt-auto mb-auto">$999</span></i>
-                </span>
-        </div>
-    </nav>
+<br>
 
-
-
-
-    <div class="full-body">
-        <div class="card" style="background-color: #212226; color: white;">
-            <h3><b>PAYMENTS METHODS</b></h3>
-            <div>
-                <a href=""><img alt="placeholder image" class="img-fluid" src="assets/bca.png"
-                                            style="width: 100px; margin-right: 10px; margin: 20px;"/></a>
-                <a href=""><img alt="placeholder image" class="img-fluid" src="assets/bni.png"
-                                            style="width: 100px; margin-right: 10px; margin: 20px;"/></a>
-                <a href=""><img alt="placeholder image" class="img-fluid " src="assets/bri.png"
-                                            style="width: 100px; margin-right: 10px; margin: 20px;"/></a>
-            </div>
-
-            <div class="container-fluid mt-0">
-                <div class="accordion" id="accordionExample">
-                    <div class="card bg-dark">
-                        <div class="card-header" id="headingOne">
-                            <h2 class="mb-0">
-                                <button aria-controls="collapseOne"
-                                        aria-expanded="false"
-                                        class="btn btn-link btn-block text-left collapsed text-decoration-none text-white"
-                                        data-target="#collapseOne" data-toggle="collapse" type="button">
-                                    How to order ?
-                                </button>
-                            </h2>
-                        </div>
-            
-                        <div aria-labelledby="headingOne" class="collapse" data-parent="#accordionExample"
-                             id="collapseOne">
-                            <div class="card-body text-white">
-                                Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent tortor tortor, imperdiet quis
-                                mollis et, malesuada eu eros. Quisque nibh elit, vulputate ac consectetur eget, convallis sed
-                                ligula. Curabitur a congue nunc. Pellentesque vestibulum augue eu dictum faucibus. Curabitur sed mi
-                                ullamcorper turpis posuere pharetra eget et tortor. Phasellus eros.
+<div class="container">
+    <div class="row">
+        <div class="col">
+            <div class="card col-md-6 col-lg-6 col-xl-8">
+                <div class="card-header" style="color: white;">
+                    <h2>Payment Methods</h2>
+                </div>
+                <div>
+                    <img alt="placeholder image" class="img-fluid" src="assets/bca.png"
+                                                style="width: 100px; margin-right: 10px; margin: 20px;"/>
+                    <img alt="placeholder image" class="img-fluid" src="assets/bni.png"
+                                                style="width: 100px; margin-right: 10px; margin: 20px;"/>
+                    <img alt="placeholder image" class="img-fluid " src="assets/bri.png"
+                                                style="width: 100px; margin-right: 10px; margin: 20px;"/>
+                </div>
+                <div class="card-body">
+                    <div class="container-fluid mt-3">
+                        <div class="accordion" id="accordionExample">
+                            <div class="card bg-dark">
+                                <div class="card-header" id="headingOne">
+                                    <h2 class="mb-0">
+                                        <button aria-controls="collapseOne"
+                                                aria-expanded="false"
+                                                class="btn btn-link btn-block text-left collapsed text-decoration-none text-white"
+                                                data-target="#collapseOne" data-toggle="collapse" type="button">
+                                                How to Pay with BCA Transfer ?
+                                        </button>
+                                    </h2>
+                                </div>
+                    
+                                <div aria-labelledby="headingOne" class="collapse" data-parent="#accordionExample"
+                                    id="collapseOne">
+                                    <div class="card-body text-white">
+                                        <p>1. Login pada alamat Internet Banking BCA (***)</p>
+                                        <p>2. Pilih menu Pembayaran Tagihan > Pembayaran > Antar Rekening</p>
+                                        <p>3. Pada Ke Rekening masukkan Rekening perusahaan</p>
+                                        <p>4. Masukkan Jumlah Nominal yang akan ditransfer</p>
+                                        <p>5. Kemudian tekan send. Cetak/simpan stuck Transfer sebagai bukti pembayaran</p>
+                                    </div>
+                                </div>
+                            </div>
+                            <div class="card bg-dark">
+                                <div class="card-header" id="headingTwo">
+                                    <h2 class="mb-0">
+                                        <button aria-controls="collapseTwo"
+                                                aria-expanded="false" class="btn btn-link btn-block text-left collapsed text-decoration-none text-white"
+                                                data-target="#collapseTwo" data-toggle="collapse" type="button">
+                                            How to Pay with BNI Transfer ?
+                                        </button>
+                                    </h2>
+                                </div>
+                                <div aria-labelledby="headingTwo" class="collapse" data-parent="#accordionExample" id="collapseTwo">
+                                    <div class="card-body text-white">
+                                        <p>1. Login pada alamat Internet Banking BNI (***)</p>
+                                        <p>2. Pilih menu Pembayaran Tagihan > Pembayaran > Antar Rekening</p>
+                                        <p>3. Pada Ke Rekening masukkan Rekening perusahaan</p>
+                                        <p>4. Masukkan Jumlah Nominal yang akan ditransfer</p>
+                                        <p>5. Kemudian tekan send. Cetak/simpan stuck Transfer sebagai bukti pembayaran</p>
+                                    </div>
+                                </div>
+                            </div>
+                            <div class="card bg-dark">
+                                <div class="card-header" id="headingThree">
+                                    <h2 class="mb-0">
+                                        <button aria-controls="collapseThree"
+                                                aria-expanded="false" class="btn btn-link btn-block text-left collapsed text-decoration-none text-white"
+                                                data-target="#collapseThree" data-toggle="collapse" type="button">
+                                                How to Pay with BRI Transfer ?
+                                        </button>
+                                    </h2>
+                                </div>
+                                <div aria-labelledby="headingThree" class="collapse" data-parent="#accordionExample" id="collapseThree">
+                                    <div class="card-body text-white">
+                                        <p>1. Login pada alamat Internet Banking BRI (***)</p>
+                                        <p>2. Pilih menu Pembayaran Tagihan > Pembayaran > Antar Rekening</p>
+                                        <p>3. Pada Ke Rekening masukkan Rekening perusahaan</p>
+                                        <p>4. Masukkan Jumlah Nominal yang akan ditransfer</p>
+                                        <p>5. Kemudian tekan send. Cetak/simpan stuck Transfer sebagai bukti pembayaran</p>
+                                    </div>
+                                </div>
                             </div>
                         </div>
                     </div>
-                    <div class="card bg-dark">
-                        <div class="card-header" id="headingTwo">
-                            <h2 class="mb-0">
-                                <button aria-controls="collapseTwo"
-                                        aria-expanded="false" class="btn btn-link btn-block text-left collapsed text-decoration-none text-white"
-                                        data-target="#collapseTwo" data-toggle="collapse" type="button">
-                                    How to check order status ?
-                                </button>
-                            </h2>
-                        </div>
-                        <div aria-labelledby="headingTwo" class="collapse" data-parent="#accordionExample" id="collapseTwo">
-                            <div class="card-body text-white">
-                                Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent tortor tortor, imperdiet quis
-                                mollis et, malesuada eu eros. Quisque nibh elit, vulputate ac consectetur eget, convallis sed
-                                ligula. Curabitur a congue nunc. Pellentesque vestibulum augue eu dictum faucibus. Curabitur sed mi
-                                ullamcorper turpis posuere pharetra eget et tortor. Phasellus eros.
+                    <br>
+                    <div class="border" style="color: white;">
+                        <h5 class="titlesummary"><b>Total Payments</b></h5>
+                        <div class="container">
+                            <div class="row justify-content-between" style="display: flex; margin: 10px">
+                                <p>Cost</p>
+                                <p>1.999.999,00</p>
                             </div>
                         </div>
                     </div>
-                    <div class="card bg-dark">
-                        <div class="card-header" id="headingThree">
-                            <h2 class="mb-0">
-                                <button aria-controls="collapseThree"
-                                        aria-expanded="false" class="btn btn-link btn-block text-left collapsed text-decoration-none text-white"
-                                        data-target="#collapseThree" data-toggle="collapse" type="button">
-                                    How to cancel order ?
-                                </button>
-                            </h2>
-                        </div>
-                        <div aria-labelledby="headingThree" class="collapse" data-parent="#accordionExample" id="collapseThree">
-                            <div class="card-body text-white">
-                                Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent tortor tortor, imperdiet quis
-                                mollis et, malesuada eu eros. Quisque nibh elit, vulputate ac consectetur eget, convallis sed
-                                ligula. Curabitur a congue nunc. Pellentesque vestibulum augue eu dictum faucibus. Curabitur sed mi
-                                ullamcorper turpis posuere pharetra eget et tortor. Phasellus eros.
-                            </div>
-                        </div>
+                    <br>
+                    <div style="display: flex; color: black;">
+                        <a class="btn btn-primary" href="transaction.html">Transaction</a>
                     </div>
                 </div>
             </div>
-
-            <div class="border">
-                <h5 class="titlesummary"><b>Total Payments</b></h5>
-                <div class="container">
-                    <div class="row justify-content-between" style="display: flex; margin: 10px">
-                        <p>Cost</p>
-                        <p>1.999.999,00</p>
-                    </div>
-                </div>
-            </div>
-            <div style="display: flex; color: black;">
-                <a href="transaction.html"><button class="button" id="myBtn" style="margin-left: 48px;">See Transaction?</button></a>
-            </div>
         </div>
-    
-
+    </div>
 </div>
 
-
-
 <script crossorigin="anonymous"
         integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
         src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
 <script crossorigin="anonymous"
         integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns"
         src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"></script>
-
+<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
 </body>
 </html>
\ No newline at end of file
diff --git a/product.html b/product.html
index d49c7d5..d6b66e2 100644
--- a/product.html
+++ b/product.html
@@ -6,20 +6,212 @@
     <meta content="width=device-width, initial-scale=1.0" name="viewport">
     <link href="assets/favicon.png" rel="shortcut icon" type="image/png"/>
     <title>Product Page</title>
-    <link href="styleproduct.css" rel="stylesheet">
     <link crossorigin="anonymous" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"
           integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" rel="stylesheet">
     <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" rel="stylesheet">
     <link href="https://fonts.googleapis.com" rel="preconnect">
     <link crossorigin href="https://fonts.gstatic.com" rel="preconnect">
     <link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
+    <style>
+        .bg-color {
+            background-color: #1b1c1e;
+        }
 
+        .comp-color {
+            background-color: #212226;
+        }
+
+        .nav-radius {
+            border-bottom-left-radius: 20px;
+            border-bottom-right-radius: 20px;
+        }
+
+        .product {
+            background-color: #1b1c1e;
+            font-family: 'Poppins', sans-serif;
+            display: flex;
+            justify-content: left;
+            text-align: left;
+        }
+
+        .description {
+            color: #ffffff;
+            font-family: 'Poppins', sans-serif;
+            margin-top: 20px;
+            margin-left: 48px;
+            justify-content: center;
+            text-align: left;
+        }
+
+        .button {
+            background-color: #c2f706;
+            border: none;
+            color: black;
+            padding: 10px 20px;
+            text-align: center;
+            text-decoration: none;
+            display: inline-block;
+            margin: 4px 2px;
+            margin-left: 20px;
+            cursor: pointer;
+            border-radius: 16px;
+        }
+
+        .modal {
+            display: none;
+            position: fixed;
+            z-index: 1;
+            padding-top: 100px;
+            left: 0;
+            top: 0;
+            width: 100%;
+            height: 100%;
+            overflow: auto;
+            background-color: rgb(0, 0, 0);
+            background-color: rgba(0, 0, 0, 0.4);
+        }
+
+        .modal-content {
+            background-color: #fefefe;
+            margin: auto;
+            padding: 20px;
+            border: 1px solid #888;
+            width: 80%;
+        }
+
+        .close {
+            color: #aaaaaa;
+            float: right;
+            font-size: 28px;
+            font-weight: bold;
+        }
+
+        .close:hover,
+        .close:focus {
+            color: #000;
+            text-decoration: none;
+            cursor: pointer;
+        }
+
+        .card {
+            background-color: #1b1c1e;
+            font-family: 'Poppins', sans-serif;
+            display: flex;
+            margin-left: 48px;
+            margin-right: 48px;
+            justify-content: left;
+            text-align: left;
+        }
+
+        .sizeSepatu {
+            margin-left: 20px;
+        }
+
+        .konten {
+            display: flex;
+            padding-top: 10px;
+        }
+
+        @media only screen and (max-width: 1000px) {
+            .product {
+                display: grid;
+            }
+
+            .description {
+                margin-left: 0px;
+                word-break: break-all;
+            }
+        }
+
+        @media (max-width: 900px) {
+            .konten {
+                display: grid;
+            }
+
+            .bodymodal {
+                border-top: 1px solid black;
+                border-left: none !important;
+            }
+        }
+
+        @media (max-width: 601px) {
+            .konten {
+                display: grid;
+            }
+
+            .titledes {
+                font-size: 25px;
+            }
+
+            .card-body {
+                font-size: 12px;
+            }
+        }
+
+
+        @media (max-width: 361px) {
+            .konten {
+                display: grid;
+            }
+
+            .titledes {
+                font-size: 20px;
+            }
+
+            .card-body {
+                font-size: 10px;
+            }
+        }
+
+        @media (max-width: 321px) {
+            .konten {
+                display: grid;
+            }
+
+            .titledes {
+                font-size: 17px;
+            }
+
+            .card-body {
+                font-size: 8px;
+            }
+        }
+
+        @media (max-width: 376px) {
+            .konten {
+                display: grid;
+            }
+
+            .titledes {
+                font-size: 22px;
+            }
+
+            .card-body {
+                font-size: 11px;
+            }
+        }
+
+        @media (max-width: 511px) {
+            .titlemodal {
+                font-size: 15px;
+            }
+
+            .modall {
+                font-size: 10px;
+            }
+
+            .titlee {
+                font-size: 20px;
+            }
+        }
+    </style>
 </head>
+
 <body class="bg-color">
 <nav class="navbar navbar-expand-lg navbar-dark comp-color ml-5 mr-5 nav-radius">
     <a class="navbar-brand" href="#">Details Products</a>
     <button aria-controls="navbarTogglerDemo01" aria-expanded="false" aria-label="Toggle navigation" class="navbar-toggler"
-            data-target="#navbarTogglerDemo01" data-toggle="collapse" type="button">
+        data-target="#navbarTogglerDemo01" data-toggle="collapse" type="button">
         <span class="navbar-toggler-icon"></span>
     </button>
     <div class="collapse navbar-collapse" id="navbarTogglerDemo01">
@@ -33,7 +225,7 @@
             <li class="nav-item">
                 <a class="nav-link" href="about-us.html">About Us</a>
             </li>
-            <li class="nav-item">
+               <li class="nav-item">
                 <a class="nav-link" href="faq.html">FAQ</a>
             </li>
         </ul>
diff --git a/stylebag.css b/stylebag.css
deleted file mode 100644
index 59b4055..0000000
--- a/stylebag.css
+++ /dev/null
@@ -1,200 +0,0 @@
-.bg-color {
-    background-color: #1b1c1e;
-}
-
-.comp-color {
-    background-color: #212226;
-}
-
-.nav-radius {
-    border-bottom-left-radius: 20px;
-    border-bottom-right-radius: 20px;
-}
-
-.title {
-    color: white;
-    font-family: 'Poppins', sans-serif;
-    display: flex;
-    margin-top: 15px;
-    margin-left: 48px;
-    justify-content: left;
-    text-align: left;
-    background-color: #1b1c1e;
-}
-
-.bag-list {
-    display: flex;
-    color: white;
-    border-bottom: 1px solid white;
-    background-color: #1b1c1e;
-    font-family: 'Poppins', sans-serif;
-    margin-bottom: 1%;
-    justify-content: left;
-    text-align: left;
-}
-
-
-.body-right {
-    margin-right: 48px;
-    color: white;
-    width: 30%;
-    height: 100%;
-
-}
-
-
-.body-left {
-    margin-left: 48px;
-    margin-right: 48px;
-}
-
-.button {
-    color: white;
-    background-color: green;
-    margin-top: 15px;
-}
-
-.full-body {
-    display: flex;
-}
-
-.info {
-    margin-left: 30px;
-}
-
-.titlesummary {
-    text-align: center;
-    border-bottom: 1px solid white;
-    margin: 10px;
-}
-
-.container {
-    margin-left: 0px;
-    justify-content: left;
-}
-
-.container input {
-    justify-content: left;
-    width: 40px;
-}
-
-@media only screen and (max-width: 1000px) {
-    .full-body {
-        display: grid !important;
-    }
-
-    .body-right {
-        margin-left: 48px;
-    }
-
-}
-
-@media (max-width: 600px) {
-
-    .full-body {
-        font-size: 7px;
-    }
-
-    .img {
-        width: 30px;
-        height: 30px;
-    }
-
-    .info {
-        margin-left: 5px;
-    }
-
-    .titletr {
-        word-break: keep-all;
-    }
-
-    .titletrdes {
-        word-break: break-all;
-    }
-
-    .titlesummary {
-        font-size: 20px;
-
-    }
-
-    .body-right {
-        width: 300px;
-    }
-
-    .body-left {
-        width: 300px;
-    }
-}
-
-@media (max-width: 541px) {
-    .body-right {
-        width: 444px;
-    }
-
-    .body-left {
-        width: 444px;
-    }
-}
-
-@media (max-width: 412px) {
-    .body-right {
-        width: 315px;
-    }
-
-    .body-left {
-        width: 315px;
-    }
-}
-
-@media (max-width: 415px) {
-    .body-right {
-        width: 318px;
-    }
-
-    .body-left {
-        width: 318px;
-    }
-}
-
-@media (max-width: 376px) {
-    .body-right {
-        width: 280px;
-    }
-
-    .body-left {
-        width: 280px;
-    }
-}
-
-@media (max-width: 361px) {
-    .body-right {
-        width: 264px;
-    }
-
-    .body-left {
-        width: 264px;
-    }
-}
-
-@media (max-width: 321px) {
-    .body-right {
-        width: 224px;
-    }
-
-    .body-left {
-        width: 224px;
-    }
-}
-
-@media (max-width: 281px) {
-    .body-right {
-        width: 184px;
-    }
-
-    .body-left {
-        width: 184px;
-    }
-}
-
-
-
diff --git a/stylecheckout.css b/stylecheckout.css
deleted file mode 100644
index d1a7a0c..0000000
--- a/stylecheckout.css
+++ /dev/null
@@ -1,225 +0,0 @@
-.bg-color {
-    background-color: #1b1c1e;
-}
-
-.comp-color {
-    background-color: #212226;
-}
-
-.nav-radius {
-    border-bottom-left-radius: 20px;
-    border-bottom-right-radius: 20px;
-}
-
-.title {
-    color: white;
-    font-family: 'Poppins', sans-serif;
-    display: flex;
-    margin-top: 15px;
-    margin-left: 48px;
-    justify-content: left;
-    text-align: left;
-    background-color: #1b1c1e;
-}
-
-.bag-list {
-    display: flex;
-    color: white;
-    border-bottom: 1px solid white;
-    background-color: #1b1c1e;
-    font-family: 'Poppins', sans-serif;
-    margin-bottom: 1%;
-    justify-content: left;
-    text-align: left;
-}
-
-
-.body-right {
-    margin-right: 48px;
-    color: white;
-    width: 30%;
-    height: 100%;
-
-}
-
-
-.body-left {
-    margin-left: 48px;
-    margin-right: 48px;
-}
-
-.button {
-    color: white;
-    background-color: green;
-    margin-top: 15px;
-}
-
-.full-body {
-    display: flex;
-}
-
-.info {
-    margin-left: 30px;
-}
-
-.titlesummary {
-    text-align: center;
-    border-bottom: 1px solid white;
-    margin: 10px;
-}
-
-.modal {
-    display: none;
-    position: fixed;
-    z-index: 1;
-    padding-top: 100px;
-    left: 0;
-    top: 0;
-    width: 100%;
-    height: 100%;
-    overflow: auto;
-    background-color: rgb(0, 0, 0);
-    background-color: rgba(0, 0, 0, 0.4);
-}
-
-.modal-content {
-    background-color: #fefefe;
-    margin: auto;
-    padding: 20px;
-    border: 1px solid #888;
-    width: 80%;
-}
-
-.close {
-    color: #aaaaaa;
-    float: right;
-    font-size: 28px;
-    font-weight: bold;
-}
-
-.close:hover,
-.close:focus {
-    color: #000;
-    text-decoration: none;
-    cursor: pointer;
-}
-
-@media only screen and (max-width: 1000px) {
-    .full-body {
-        display: grid !important;
-    }
-
-    .body-right {
-        margin-left: 48px;
-        width: 500px;
-    }
-
-}
-
-@media (max-width: 600px) {
-
-    .full-body {
-        font-size: 7px;
-    }
-
-    .img {
-        width: 30px;
-        height: 30px;
-    }
-
-    .info {
-        margin-left: 5px;
-    }
-
-    .titletr {
-        word-break: keep-all;
-    }
-
-    .titletrdes {
-        word-break: break-all;
-    }
-
-    .titlesummary {
-        font-size: 10px;
-    }
-
-    .body-right {
-        width: 504px;
-    }
-
-    .body-left {
-        width: 504px;
-    }
-}
-
-@media (max-width: 541px) {
-    .body-right {
-        width: 444px;
-    }
-
-    .body-left {
-        width: 444px;
-    }
-}
-
-@media (max-width: 412px) {
-    .body-right {
-        width: 315px;
-    }
-
-    .body-left {
-        width: 315px;
-    }
-}
-
-@media (max-width: 415px) {
-    .body-right {
-        width: 318px;
-    }
-
-    .body-left {
-        width: 318px;
-    }
-}
-
-@media (max-width: 376px) {
-    .body-right {
-        width: 280px;
-    }
-
-    .body-left {
-        width: 280px;
-    }
-}
-
-@media (max-width: 361px) {
-    .body-right {
-        width: 264px;
-    }
-
-    .body-left {
-        width: 264px;
-    }
-}
-
-@media (max-width: 321px) {
-    .body-right {
-        width: 224px;
-    }
-
-    .body-left {
-        width: 224px;
-    }
-}
-
-@media (max-width: 281px) {
-    .body-right {
-        width: 184px;
-    }
-
-    .body-left {
-        width: 184px;
-    }
-}
-
-
diff --git a/stylepayment.css b/stylepayment.css
deleted file mode 100644
index e2bab6e..0000000
--- a/stylepayment.css
+++ /dev/null
@@ -1,173 +0,0 @@
-.bg-color {
-    background-color: #1b1c1e;
-}
-
-.comp-color {
-    background-color: #212226;
-}
-
-.nav-radius {
-    border-bottom-left-radius: 20px;
-    border-bottom-right-radius: 20px;
-}
-
-.title {
-    color: white;
-    font-family: 'Poppins', sans-serif;
-    display: flex;
-    margin-top: 15px;
-    margin-left: 48px;
-    justify-content: left;
-    text-align: left;
-    background-color: #1b1c1e;
-}
-
-.button {
-    color: white;
-    background-color: green;
-}
-
-.card {
-    position: center;
-    margin: auto;
-    text-align: center;
-    border-bottom-left-radius: 20px;
-    border-bottom-right-radius: 20px;
-    border-top-left-radius: 20px;
-    border-top-right-radius: 20px;
-    background-color: #212226;
-    width: 500px;
-}
-
-.titlesummary {
-    text-align: center;
-    border-bottom: 1px solid white;
-}
-
-
-.container input {
-    justify-content: left;
-    width: 40px;
-}
-
-
-@media only screen and (max-width: 1000px) {
-    .full-body {
-        display: grid !important;
-    }
-
-    .body-right {
-        margin-left: 48px;
-        margin-top: 30px;
-    }
-
-}
-
-@media (max-width: 600px) {
-
-    .full-body {
-        font-size: 7px;
-    }
-
-    .img {
-        width: 30px;
-        height: 30px;
-    }
-
-    .info {
-        margin-left: 5px;
-    }
-
-    .titletr {
-        word-break: keep-all;
-    }
-
-    .titletrdes {
-        word-break: break-all;
-    }
-
-    .titlesummary {
-        font-size: 20px;
-
-    }
-
-    .body-right {
-        width: 300px;
-    }
-
-    .body-left {
-        width: 300px;
-    }
-}
-
-@media (max-width: 541px) {
-    .body-right {
-        width: 444px;
-    }
-
-    .body-left {
-        width: 444px;
-    }
-}
-
-@media (max-width: 412px) {
-    .body-right {
-        width: 315px;
-    }
-
-    .body-left {
-        width: 315px;
-    }
-}
-
-@media (max-width: 415px) {
-    .body-right {
-        width: 318px;
-    }
-
-    .body-left {
-        width: 318px;
-    }
-}
-
-@media (max-width: 376px) {
-    .body-right {
-        width: 280px;
-    }
-
-    .body-left {
-        width: 280px;
-    }
-}
-
-@media (max-width: 361px) {
-    .body-right {
-        width: 264px;
-    }
-
-    .body-left {
-        width: 264px;
-    }
-}
-
-@media (max-width: 321px) {
-    .body-right {
-        width: 224px;
-    }
-
-    .body-left {
-        width: 224px;
-    }
-}
-
-@media (max-width: 281px) {
-    .body-right {
-        width: 184px;
-    }
-
-    .body-left {
-        width: 184px;
-    }
-}
-
-
diff --git a/styleproduct.css b/styleproduct.css
deleted file mode 100644
index 0ba1274..0000000
--- a/styleproduct.css
+++ /dev/null
@@ -1,203 +0,0 @@
-
-.bg-color {
-    background-color: #1b1c1e;
-}
-
-.comp-color {
-    background-color: #212226;
-}
-
-.nav-radius {
-    border-bottom-left-radius: 20px;
-    border-bottom-right-radius: 20px;
-}
-
-.product {
-    background-color: #1b1c1e;
-    font-family: 'Poppins', sans-serif;
-    display: flex;
-    justify-content: left;
-    text-align: left;
-}
-
-.description {
-    color: #ffffff;
-    font-family: 'Poppins', sans-serif;
-    margin-top: 20px;
-    margin-left: 48px;
-    justify-content: center;
-    text-align: left;
-}
-
-.button {
-    background-color: #c2f706;
-    border: none;
-    color: black;
-    padding: 10px 20px;
-    text-align: center;
-    text-decoration: none;
-    display: inline-block;
-    margin: 4px 2px;
-    margin-left: 20px;
-    cursor: pointer;
-    border-radius: 16px;
-}
-
-.modal {
-    display: none;
-    position: fixed;
-    z-index: 1;
-    padding-top: 100px;
-    left: 0;
-    top: 0;
-    width: 100%;
-    height: 100%;
-    overflow: auto;
-    background-color: rgb(0, 0, 0);
-    background-color: rgba(0, 0, 0, 0.4);
-}
-
-.modal-content {
-    background-color: #fefefe;
-    margin: auto;
-    padding: 20px;
-    border: 1px solid #888;
-    width: 80%;
-}
-
-.close {
-    color: #aaaaaa;
-    float: right;
-    font-size: 28px;
-    font-weight: bold;
-}
-
-.close:hover,
-.close:focus {
-    color: #000;
-    text-decoration: none;
-    cursor: pointer;
-}
-
-.card {
-    background-color: #1b1c1e;
-    font-family: 'Poppins', sans-serif;
-    display: flex;
-    margin-left: 48px;
-    margin-right: 48px;
-    justify-content: left;
-    text-align: left;
-}
-
-.sizeSepatu {
-    margin-left: 20px;
-}
-
-.konten {
-    display: flex;
-    padding-top: 10px;
-}
-
-@media only screen and (max-width: 1000px) {
-    .product {
-        display: grid;
-    }
-
-    .description {
-        margin-left: 0px;
-        word-break: break-all;
-    }
-}
-
-@media (max-width: 900px) {
-    .konten {
-        display: grid;
-    }
-
-    .bodymodal {
-        border-top: 1px solid black;
-        border-left: none !important;
-    }
-}
-
-@media (max-width: 601px) {
-    .konten {
-        display: grid;
-    }
-
-    .titledes {
-        font-size: 25px;
-    }
-
-    .card-body {
-        font-size: 12px;
-    }
-}
-
-
-@media (max-width: 361px) {
-    .konten {
-        display: grid;
-    }
-
-    .titledes {
-        font-size: 20px;
-    }
-
-    .card-body {
-        font-size: 10px;
-    }
-}
-
-@media (max-width: 321px) {
-    .konten {
-        display: grid;
-    }
-
-    .titledes {
-        font-size: 17px;
-    }
-
-    .card-body {
-        font-size: 8px;
-    }
-}
-
-@media (max-width: 376px) {
-    .konten {
-        display: grid;
-    }
-
-    .titledes {
-        font-size: 22px;
-    }
-
-    .card-body {
-        font-size: 11px;
-    }
-}
-
-@media (max-width: 511px) {
-    .titlemodal {
-        font-size: 15px;
-    }
-
-    .modall {
-        font-size: 10px;
-    }
-
-    .titlee {
-        font-size: 20px;
-    }
-}
-
-  
-
-
-
-
-
-
-
-
-  
\ No newline at end of file