:root {
    --primary: #6F4E37;
    --gold: #D4AF37;
    --dark: #111111;
    --light: #f8f8f8;
    --border: #e5e5e5;
    --white: #ffffff;
    --success: #dff3e4;
    --warning: #fff1cc;
    --info: #dff2ff;
}

* {
    margin : 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #ffffff;
    color: #111;
}

.page-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* MAIN LAYOUT */



/* SIDEBAR */

.sidebar {
    width: 260px;
    background: linear-gradient(to bottom, #1b1b1b, #2b2b2b);
    color: white;
    padding: 30px 0;
}

.logo {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 35px;
    line-height: 1.4;
    color: white;
}

.menu {
    list-style: none;
}

.menu li {
    padding: 18px 28px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    border-left: 4px solid transparent;
}

.menu li:hover,
.menu li.active {
    background: rgba(255,255,255,0.08);
    border-left: 4px solid var(--gold);
}

/* CONTENT */

.main-content {
    flex: 1;
    background: #fff;
}

/* TOP BAR */

.top-bar {
    height: 80px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 35px;
}

.top-icons {
    display: flex;
    gap: 18px;
    font-size: 22px;
}

/* BODY */

.content-area {
    padding: 35px;
}

.welcome-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.welcome-row h2 {
    font-size: 34px;
    margin-bottom: 8px;
}

.tier {
    font-size: 15px;
    color: #555;
}

.tier-badge {
    background: #eeeeee;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
}

/* QUICK STATS */

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 40px;
}

.stat-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.stat-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 15px;
    color: #555;
    margin-bottom: 14px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-link {
    font-size: 14px;
    color: var(--primary);
}

/* TABLE */

.table-box {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 40px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    padding-bottom: 14px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

td {
    padding: 18px 0;
    font-size: 15px;
    border-bottom: 1px solid #f2f2f2;
}

.status {
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.confirmed {
    background: var(--success);
}

.pending {
    background: var(--warning);
}

.completed {
    background: var(--info);
}

.view-btn {
    margin-top: 20px;
    border: 1px solid #ccc;
    background: white;
    padding: 12px 26px;
    border-radius: 8px;
    cursor: pointer;
}

/* SHORTCUTS */

.shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.shortcut-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.shortcut-card:hover {
    border-color: var(--primary);
}

.shortcut-icon {
    font-size: 34px;
    margin-bottom: 14px;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .sidebar {
        width: 100%;
    }

    .stats-grid,
    .shortcuts-grid {
        grid-template-columns: 1fr;
    }

    .welcome-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

}


/* PRODUCTS PAGE */

.page-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.container-product {
  width: 90%;
  margin: 40px auto;
}

/* MAIN LAYOUT */

/* BODY */

.content-area {
    padding: 35px;
}

.welcome-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.welcome-row h2 {
    font-size: 34px;
    margin-bottom: 8px;
}

.tier {
    font-size: 15px;
    color: #555;
}

.tier-badge {
    background: #eeeeee;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
}

/* QUICK STATS */

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 40px;
}

.stat-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.stat-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 15px;
    color: #555;
    margin-bottom: 14px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-link {
    font-size: 14px;
    color: var(--primary);
}

/* TABLE */

.table-box {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 40px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    padding-bottom: 14px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

td {
    padding: 18px 0;
    font-size: 15px;
    border-bottom: 1px solid #f2f2f2;
}

.status {
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.confirmed {
    background: var(--success);
}

.pending {
    background: var(--warning);
}

.completed {
    background: var(--info);
}

.view-btn {
    margin-top: 20px;
    border: 1px solid #ccc;
    background: white;
    padding: 12px 26px;
    border-radius: 8px;
    cursor: pointer;
}

/* SHORTCUTS */

.shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.shortcut-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.shortcut-card:hover {
    border-color: var(--primary);
}

.shortcut-icon {
    font-size: 34px;
    margin-bottom: 14px;
}

/* RESPONSIVE */

@media (max-width: 992px) {


    .sidebar {
        width: 100%;
    }

    .stats-grid,
    .shortcuts-grid {
        grid-template-columns: 1fr;
    }

    .welcome-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 40px auto;
}

h2 {
  margin-bottom: 20px;
}

.top-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

select, input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  flex: 1;
}

.tabs-product {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.tab-product {
  background: none;
  border: none;
  padding: 8px 10px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.tab-product.active {
  border-bottom: 2px solid #6b4f3b;
  font-weight: bold;
}

.grid-product{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.card-product {
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card-product img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  background: #ddd;
}

.card-product h3 {
  margin: 10px 0 5px;
}

.card-product p {
  font-size: 14px;
  color: #555;
}

.price {
  margin-top: 10px;
  font-weight: bold;
}

.pagination {
  margin-top: 20px;
  display: flex;
  gap: 8px;
}

.pagination button {
  padding: 6px 10px;
  border: none;
  background: #eee;
  cursor: pointer;
}

.pagination button.active {
  background: #6b4f3b;
  color: white;
}


/*BOOKING PAGE*/


.page-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* MAIN LAYOUT */


/* BODY */

.content-area {
    padding: 35px;
}

.welcome-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.welcome-row h2 {
    font-size: 34px;
    margin-bottom: 8px;
}

.tier {
    font-size: 15px;
    color: #555;
}

.tier-badge {
    background: #eeeeee;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
}

/* QUICK STATS */

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 40px;
}

.stat-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.stat-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 15px;
    color: #555;
    margin-bottom: 14px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-link {
    font-size: 14px;
    color: var(--primary);
}

/* TABLE */

.table-box {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 40px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    padding-bottom: 14px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

td {
    padding: 18px 0;
    font-size: 15px;
    border-bottom: 1px solid #f2f2f2;
}

.status {
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.confirmed {
    background: var(--success);
}

.pending {
    background: var(--warning);
}

.completed {
    background: var(--info);
}

.view-btn {
    margin-top: 20px;
    border: 1px solid #ccc;
    background: white;
    padding: 12px 26px;
    border-radius: 8px;
    cursor: pointer;
}

/* SHORTCUTS */

.shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.shortcut-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.shortcut-card:hover {
    border-color: var(--primary);
}

.shortcut-icon {
    font-size: 34px;
    margin-bottom: 14px;
}

/* RESPONSIVE */

@media (max-width: 992px) {


    .sidebar {
        width: 100%;
    }

    .stats-grid,
    .shortcuts-grid {
        grid-template-columns: 1fr;
    }

    .welcome-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/*HOME PAGE*/
:root {
    --primary: #6F4E37;
    --gold: #D4AF37;
    --text: #111111;
    --light-bg: #f7f7f7;
    --border: #e6e6e6;
    --white: #ffffff;
}


.main-wrapper {
    max-width: 1200px;
    margin: auto;
    border: 1px solid #dcdcdc;
    overflow: hidden;
    background: #fff;
}

/* TOP TITLE */
.page-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

/* HEADER */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 35px;
    border-bottom: 1px solid var(--border);
    background: #fff;
}


.nav-buttons {
    display: flex;
    gap: 14px;
}

.btn {
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-login {
    background: #fff;
    border: 1px solid #cfcfcf;
    color: #111;
}

.btn-register {
    background: var(--primary);
    border: none;
    color: #fff;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: none;
}

.btn-outline {
    background: #fff;
    border: 1px solid #ccc;
    color: #111;
}

/* HERO */
.hero {
    background: #f1f1f1;
    padding: 60px 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-image {
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* VALUE PROPS */
.value-section {
    padding: 50px 40px;
    background: #fff;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 10px 20px;
    border-right: 1px solid #ececec;
}

.value-card:last-child {
    border-right: none;
}

.icon {
    font-size: 42px;
    margin-bottom: 18px;
}

.value-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

.value-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

/* BENEFITS */
.benefits-section {
    padding: 50px 40px;
    background: #fafafa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.section-heading {
    text-align: center;
    font-size: 34px;
    margin-bottom: 35px;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}

.benefit-item {
    font-size: 17px;
    line-height: 1.6;
}

.benefit-icon {
    font-size: 34px;
    margin-bottom: 12px;
}

/* PARTNERS */
.partners-section {
    padding: 45px 40px;
    background: #fff;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.partner-box {
    background: #f5f5f5;
    padding: 28px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-grid,
    .value-grid,
    .benefits-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 30px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .section-heading {
        font-size: 28px;
    }
}


/*LOGIN PAGE*/
:root {
    --primary: #6F4E37;
    --text: #111;
    --border: #e7e7e7;
    --bg: #f7f7f9;
}

/* CARD */

.container-login{
    margin : 40px auto;
    max-width:1100px;
    display: flex;
    align-items:center;
    justify-content:center;

}

.login-card {
    width:100%;
    max-width:420px;
    background:#fff;
    padding:40px;
    border-radius:16px;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
    border:1px solid var(--border);
}

/* HEADER */
.header {
    text-align:center;
    margin-bottom:30px;
}

.header h2 {
    font-size:28px;
    margin-bottom:8px;
}

.header p {
    color:#666;
    font-size:14px;
}

/* INPUT */
.form-group {
    margin-bottom:18px;
}

label {
    font-size:14px;
    font-weight:600;
    margin-bottom:6px;
    display:block;
}

input {
    width:100%;
    height:50px;
    padding:0 14px;
    border-radius:10px;
    border:1px solid var(--border);
    font-size:14px;
    transition:.2s;
}

input:focus {
    border-color: var(--primary);
    outline:none;
}

/* PASSWORD TOGGLE */
.password-wrapper {
    position:relative;
}

.toggle {
    position:absolute;
    right:12px;
    top:50%;
    transform:translateY(-50%);
    cursor:pointer;
    font-size:12px;
    color:#888;
}

/* BUTTON */
.login-btn {
    width:100%;
    height:52px;
    border:none;
    border-radius:10px;
    background: var(--primary);
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.login-btn:hover {
    background:#5c3f2c;
    transform:translateY(-1px);
}

/* FOOT */
.footer {
    margin-top:20px;
    text-align:center;
    font-size:14px;
}

.footer a {
    color:var(--primary);
    text-decoration:none;
    font-weight:600;
}

/* ERROR */
.error {
    color:red;
    font-size:13px;
    margin-top:5px;
    display:none;
}

/*COMMISSION PAGE*/


.page-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* MAIN LAYOUT */

.dashboard-wrapper {
    width: 100%;
    border: 1px solid #dcdcdc;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    min-height: 850px;
}




/* CONTENT */


/* TOP BAR */

.top-bar {
    height: 80px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 35px;
}

.top-icons {
    display: flex;
    gap: 18px;
    font-size: 22px;
}

/* BODY */

.content-area {
    padding: 35px;
}

.welcome-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.welcome-row h2 {
    font-size: 34px;
    margin-bottom: 8px;
}

.tier {
    font-size: 15px;
    color: #555;
}

.tier-badge {
    background: #eeeeee;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
}

/* QUICK STATS */

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 40px;
}

.stat-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.stat-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 15px;
    color: #555;
    margin-bottom: 14px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-link {
    font-size: 14px;
    color: var(--primary);
}

/* TABLE */

.table-box {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 40px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    padding-bottom: 14px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

td {
    padding: 18px 0;
    font-size: 15px;
    border-bottom: 1px solid #f2f2f2;
}

.status {
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.confirmed {
    background: var(--success);
}

.pending {
    background: var(--warning);
}

.completed {
    background: var(--info);
}

.view-btn {
    margin-top: 20px;
    border: 1px solid #ccc;
    background: white;
    padding: 12px 26px;
    border-radius: 8px;
    cursor: pointer;
}

/* SHORTCUTS */

.shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.shortcut-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.shortcut-card:hover {
    border-color: var(--primary);
}

.shortcut-icon {
    font-size: 34px;
    margin-bottom: 14px;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .sidebar {
        width: 100%;
    }

    .stats-grid,
    .shortcuts-grid {
        grid-template-columns: 1fr;
    }

    .welcome-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

.container{
    display:flex;
    min-height:100vh;
}
.sidebar{
    width:230px;
    background:#2b2b2b;
    color:#fff;
}
.sidebar h2{
    font-size:22px;
    margin-bottom:30px;
}
.sidebar ul{
    list-style:none;
}
.sidebar li{
    margin-bottom:8px;
    cursor:pointer;
}
.sidebar li:hover,
.sidebar .active{
    background:#444;
}
.main{
    padding:25px;
}
.card{
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    margin-bottom:25px;
}
.top-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:20px;
}
.tier-badge{
    display:inline-block;
    padding:10px 24px;
    background:#e9e9e9;
    border-radius:30px;
    font-weight:bold;
    font-size:24px;
    margin:15px 0;
}
.progress{
    background:#ddd;
    border-radius:20px;
    overflow:hidden;
    height:22px;
}
.progress-bar{
    width:15%;
    background:#c79c58;
    height:100%;
}
.benefits ul{
    margin-top:10px;
    padding-left:20px;
}
.statement-header{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:20px;
}
select{
    padding:10px;
    border:1px solid #ccc;
    border-radius:8px;
}
.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin-bottom:20px;
}
.stat-box{
    background:#fafafa;
    padding:20px;
    border-radius:10px;
    text-align:center;
}
.stat-box h3{
    margin-top:8px;
}
table{
    width:100%;
    border-collapse:collapse;
}
th, td{
    padding:14px;
    border-bottom:1px solid #eee;
    text-align:left;
}
.info-box{
    background:#fafafa;
    padding:18px;
    border-radius:10px;
    margin-top:20px;
}
@media(max-width:900px){
    .top-grid{
        grid-template-columns:1fr;
    }
    .stats{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:600px){
    .container{
        flex-direction:column;
    }
    .sidebar{
        width:100%;
    }
    .stats{
        grid-template-columns:1fr;
    }
    table{
        display:block;
        overflow-x:auto;
    }
}

/*PROFILE PAGE*/
:root {
    --primary: #6F4E37;
    --gold: #D4AF37;
    --dark: #111111;
    --light: #f8f8f8;
    --border: #e5e5e5;
    --white: #ffffff;
    --success: #dff3e4;
    --warning: #fff1cc;
    --info: #dff2ff;
    --bg: #f7f7f9;
    --card: #fff;
    --text: #111;
    --danger: #dc2626;
}



.page-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* MAIN LAYOUT */



/* SIDEBAR */


/* CONTENT */

.main-content {
    flex: 1;
    background: #fff;
}

/* TOP BAR */

.top-bar {
    height: 80px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 35px;
}

.top-icons {
    display: flex;
    gap: 18px;
    font-size: 22px;
}

/* BODY */

.content-area {
    padding: 35px;
}

.welcome-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.welcome-row h2 {
    font-size: 34px;
    margin-bottom: 8px;
}

.tier {
    font-size: 15px;
    color: #555;
}

.tier-badge {
    background: #eeeeee;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
}

/* QUICK STATS */

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 40px;
}

.stat-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.stat-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 15px;
    color: #555;
    margin-bottom: 14px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-link {
    font-size: 14px;
    color: var(--primary);
}

/* TABLE */

.table-box {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 40px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    padding-bottom: 14px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

td {
    padding: 18px 0;
    font-size: 15px;
    border-bottom: 1px solid #f2f2f2;
}

.status {
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.confirmed {
    background: var(--success);
}

.pending {
    background: var(--warning);
}

.completed {
    background: var(--info);
}

.view-btn {
    margin-top: 20px;
    border: 1px solid #ccc;
    background: white;
    padding: 12px 26px;
    border-radius: 8px;
    cursor: pointer;
}

/* SHORTCUTS */

.shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.shortcut-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.shortcut-card:hover {
    border-color: var(--primary);
}

.shortcut-icon {
    font-size: 34px;
    margin-bottom: 14px;
}

/* RESPONSIVE */

@media (max-width: 992px) {


    .sidebar {
        width: 100%;
    }

    .stats-grid,
    .shortcuts-grid {
        grid-template-columns: 1fr;
    }

    .welcome-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* CONTAINER */
.profile-container {
  max-width: 900px;
  margin: auto;
}

/* CARD */
.card {
  background: var(--card);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 15px;
}

/* FORM */
.form-group {
  margin-bottom: 15px;
}

label {
  font-size: 13px;
  display: block;
  margin-bottom: 5px;
}

input {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

/* BUTTONS */
.btn {
  padding: 10px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-danger {
  background: var(--danger);
  color: white;
}

.btn-outline {
  border: 1px solid var(--border);
  background: transparent;
}

/* WARNING */
.warning {
  background: #ffeaea;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 15px;
  color: #a00;
}

/* MODAL */
.modal {
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.5);
  display:none;
  align-items:center;
  justify-content:center;
}

.modal-content {
  background:#fff;
  padding:20px;
  border-radius:10px;
  text-align:center;
}

.modal button {
  margin: 10px;
}

/*COLLATERAL PAGE*/

.page-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* MAIN LAYOUT */


/* SIDEBAR */



/* CONTENT */

.main-content {
    flex: 1;
    background: #fff;
}

/* TOP BAR */

.top-bar {
    height: 80px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 35px;
}

.top-icons {
    display: flex;
    gap: 18px;
    font-size: 22px;
}

/* BODY */

.content-area {
    padding: 35px;
}

.welcome-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.welcome-row h2 {
    font-size: 34px;
    margin-bottom: 8px;
}

.tier {
    font-size: 15px;
    color: #555;
}

.tier-badge {
    background: #eeeeee;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
}

/* QUICK STATS */

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 40px;
}

.stat-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.stat-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 15px;
    color: #555;
    margin-bottom: 14px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-link {
    font-size: 14px;
    color: var(--primary);
}

/* TABLE */

.table-box {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 40px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    padding-bottom: 14px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

td {
    padding: 18px 0;
    font-size: 15px;
    border-bottom: 1px solid #f2f2f2;
}

.status {
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.confirmed {
    background: var(--success);
}

.pending {
    background: var(--warning);
}

.completed {
    background: var(--info);
}

.view-btn {
    margin-top: 20px;
    border: 1px solid #ccc;
    background: white;
    padding: 12px 26px;
    border-radius: 8px;
    cursor: pointer;
}

/* SHORTCUTS */

.shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.shortcut-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.shortcut-card:hover {
    border-color: var(--primary);
}

.shortcut-icon {
    font-size: 34px;
    margin-bottom: 14px;
}

/* RESPONSIVE */

@media (max-width: 992px) {


    .sidebar {
        width: 100%;
    }

    .stats-grid,
    .shortcuts-grid {
        grid-template-columns: 1fr;
    }

    .welcome-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

.container{
    max-width:1200px;
    margin:auto;
    background:#fff;
    border-radius:12px;
    box-shadow:0 4px 20px rgba(0,0,0,0.05);
    overflow:hidden;
}
.section{
    padding:25px;
    border-bottom:1px solid #eee;
}
h2{
    margin-bottom:20px;
    font-size:22px;
}
.tabs{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:20px;
}
.tabs button{
    border:none;
    background:none;
    padding:10px;
    cursor:pointer;
    font-weight:bold;
    color:#666;
}
.tabs button.active{
    color:#000;
    border-bottom:2px solid #333;
}

.download{
    right:15px;
    bottom:15px;
    font-size:18px;
    cursor:pointer;
}
.center-btn{
    text-align:center;
    margin-top:20px;
}
.center-btn button{
    padding:12px 24px;
    border:none;
    background:#333;
    color:#fff;
    border-radius:8px;
    cursor:pointer;
}
.support-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}
.support-card{
    border:1px solid #ddd;
    border-radius:10px;
    padding:20px;
}
.support-card h4{
    margin-bottom:10px;
}
.faq-item{
    border-bottom:1px solid #eee;
}
.faq-question{
    width:100%;
    background:none;
    border:none;
    text-align:left;
    padding:18px 0;
    font-size:16px;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
}
.faq-answer{
    display:none;
    padding-bottom:15px;
    color:#666;
}
@media(max-width:600px){
    .tabs{
        gap:10px;
    }
}


/*CREATE BOOKING PAGE*/




.page-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* MAIN LAYOUT */



/* SIDEBAR */




/* CONTENT */

.main-content {
    flex: 1;
    background: #fff;
}

/* TOP BAR */

.top-bar {
    height: 80px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 35px;
}

.top-icons {
    display: flex;
    gap: 18px;
    font-size: 22px;
}

/* BODY */

.content-area {
    padding: 35px;
}

.welcome-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.welcome-row h2 {
    font-size: 34px;
    margin-bottom: 8px;
}

.tier {
    font-size: 15px;
    color: #555;
}

.tier-badge {
    background: #eeeeee;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
}

/* QUICK STATS */

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 40px;
}

.stat-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.stat-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 15px;
    color: #555;
    margin-bottom: 14px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-link {
    font-size: 14px;
    color: var(--primary);
}

/* TABLE */

.table-box {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 40px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    padding-bottom: 14px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

td {
    padding: 18px 0;
    font-size: 15px;
    border-bottom: 1px solid #f2f2f2;
}

.status {
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.confirmed {
    background: var(--success);
}

.pending {
    background: var(--warning);
}

.completed {
    background: var(--info);
}

.view-btn {
    margin-top: 20px;
    border: 1px solid #ccc;
    background: white;
    padding: 12px 26px;
    border-radius: 8px;
    cursor: pointer;
}

/* SHORTCUTS */

.shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.shortcut-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.shortcut-card:hover {
    border-color: var(--primary);
}

.shortcut-icon {
    font-size: 34px;
    margin-bottom: 14px;
}

/* RESPONSIVE */

@media (max-width: 992px) {


    .sidebar {
        width: 100%;
    }

    .stats-grid,
    .shortcuts-grid {
        grid-template-columns: 1fr;
    }

    .welcome-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* CONTAINER */
.container{
    max-width:1100px;
    margin:40px auto;
    background:#fff;
    padding:30px;
    border-radius:12px;
}

/* STEPPER */
.stepper{
    display:flex;
    justify-content:space-between;
    margin-bottom:30px;
}
.step{
    text-align:center;
    flex:1;
    position:relative;
}
.step::after{
    content:"";
    position:absolute;
    top:15px;
    right:-50%;
    width:100%;
    height:2px;
    background:#ddd;
}
.step:last-child::after{display:none;}
.circle{
    width:30px;
    height:30px;
    border-radius:50%;
    background:#ddd;
    margin:auto;
    line-height:30px;
}
.active .circle{
    background:#6F4E37;
    color:#fff;
}
.step p{
    font-size:12px;
}

/* CARD */
.card{
    display:none;
}
.card.active{
    display:block;
}

.summary-img {
  width: 80px;
  height: 60px;
  background: #ddd;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* PRODUCTS */
.product{
    border:1px solid #ddd;
    padding:15px;
    margin-bottom:10px;
    cursor:pointer;
    border-radius:8px;
}
.product.active{
    border:2px solid #6F4E37;
}

/* INPUTS */
input, select, textarea{
    width:100%;
    padding:10px;
    margin:8px 0;
    border:1px solid #ddd;
    border-radius:6px;
}

/* BUTTONS */
.actions{
    margin-top:20px;
    display:flex;
    justify-content:space-between;
}
button{
    padding:10px 20px;
    border:none;
    border-radius:6px;
    cursor:pointer;
}
.next{
    background:#6F4E37;
    color:#fff;
}
.back{
    background:#ccc;
}

/* SUMMARY */
.summary{
    display:flex;
    gap:20px;
}
.box{
    flex:1;
    border:1px solid #ddd;
    padding:20px;
    border-radius:10px;
}

/* FILE UPLOAD */
.upload{
    border:2px dashed #ccc;
    padding:30px;
    text-align:center;
    border-radius:10px;
}

/* SMALL */
small{
    color:#777;
}

/* Upload */
.upload {
  border: 2px dashed #ccc;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
}

.upload:hover {
  background: #fafafa;
}

.price-list p {
  display: flex;
  justify-content: space-between;
  margin: 6px 0;
}

.green {
  color: green;
  font-weight: bold;
}

/* Textarea */
textarea {
  width: 100%;
  height: 100px;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 10px;
  resize: none;
}

.cardbsummary {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
}

.rowsum {
  display: flex;
  gap: 20px;
}

/*VIEW PRODUCT PAGE*/


.page-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.main-content {
    flex: 1;
    background: #fff;
}

/* TOP BAR */

.top-bar {
    height: 80px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 35px;
}

.top-icons {
    display: flex;
    gap: 18px;
    font-size: 22px;
}

/* BODY */

.content-area {
    padding: 35px;
}

.welcome-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.welcome-row h2 {
    font-size: 34px;
    margin-bottom: 8px;
}

.tier {
    font-size: 15px;
    color: #555;
}

.tier-badge {
    background: #eeeeee;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
}

/* QUICK STATS */

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 40px;
}

.stat-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.stat-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 15px;
    color: #555;
    margin-bottom: 14px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-link {
    font-size: 14px;
    color: var(--primary);
}

/* TABLE */

.table-box {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 40px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    padding-bottom: 14px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

td {
    padding: 18px 0;
    font-size: 15px;
    border-bottom: 1px solid #f2f2f2;
}

.status {
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.confirmed {
    background: var(--success);
}

.pending {
    background: var(--warning);
}

.completed {
    background: var(--info);
}

.view-btn {
    margin-top: 20px;
    border: 1px solid #ccc;
    background: white;
    padding: 12px 26px;
    border-radius: 8px;
    cursor: pointer;
}

/* SHORTCUTS */

.shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.shortcut-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.shortcut-card:hover {
    border-color: var(--primary);
}

.shortcut-icon {
    font-size: 34px;
    margin-bottom: 14px;
}

/* RESPONSIVE */

@media (max-width: 992px) {


    .sidebar {
        width: 100%;
    }

    .stats-grid,
    .shortcuts-grid {
        grid-template-columns: 1fr;
    }

    .welcome-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 40px auto;
}

h2 {
  margin-bottom: 20px;
}

.top-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

select, input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  flex: 1;
}

.tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.tab {
  background: none;
  border: none;
  padding: 8px 10px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.tab.active {
  border-bottom: 2px solid #6b4f3b;
  font-weight: bold;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.card {
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  background: #ddd;
}

.card h3 {
  margin: 10px 0 5px;
}

.card p {
  font-size: 14px;
  color: #555;
}

.price {
  margin-top: 10px;
  font-weight: bold;
}

.pagination {
  margin-top: 20px;
  display: flex;
  gap: 8px;
}

.pagination button {
  padding: 6px 10px;
  border: none;
  background: #eee;
  cursor: pointer;
}

.pagination button.active {
  background: #6b4f3b;
  color: white;
}

.container {
  max-width: 1000px;
  margin: 30px auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

.back {
  margin-bottom: 15px;
  color: #555;
  cursor: pointer;
}

.top {
  display: flex;
  gap: 20px;
}

.image-box {
  flex: 1;
}

.main-img {
  width: 100%;
  height: 220px;
  background: #ddd;
  border-radius: 10px;
}

.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.thumb {
  flex: 1;
  height: 60px;
  background: #ddd;
  border-radius: 6px;
  cursor: pointer;
}

.details {
  flex: 1;
}

.details h2 {
  margin: 0;
}

.details ul {
  margin: 10px 0;
  padding-left: 18px;
}

.price {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
}

.badge {
  display: inline-block;
  background: #e6d3b3;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
}

.tabs {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  border-bottom: 1px solid #ddd;
}

.tab {
  padding: 10px;
  cursor: pointer;
}

.tab.active {
  border-bottom: 2px solid #6b4f3b;
  font-weight: bold;
}

.content {
  padding: 20px 0;
}

.calendar {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 10px;
  width: 300px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.day {
  text-align: center;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
}

.day:hover {
  background: #eee;
}

.selected {
  background: #6b4f3b;
  color: #fff;
}

.legend {
  margin-left: 30px;
}

.legend div {
  margin-bottom: 8px;
}

.box {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border-radius: 3px;
}

.available { background: #f3e4c7; }
.limited { background: #e5c07b; }
.request { background: #f28b82; }
.unavailable { background: #ccc; }

.bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

button {
  padding: 10px 15px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.btn-secondary {
  background: #eee;
}

.btn-primary {
  background: #6b4f3b;
  color: #fff;
}