* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-decoration: none;
}

:root {
    --primary-color: #d2b89e;
    --secondary-color: #c4996c;
    --orange: #b45027;
    --lightcolor: #cb8978;
    --bg:#e6e0dc;
}
body{
    background-color: var(--bg);
}
.navitems {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navitems-left {
    display: flex;
    align-items: center;
}

.navitems-left .arrow-icon {
    color: white;
    font-size: 20px;
    margin-right: 10px;
    text-decoration: none;
    color: var(--orange);
}
.navitems-left .arrow-icon:hover{
    color:black;
}
.navitems-left h1 {
    margin: 0;
    font-size: 18px;
    color: var(--orange);
}

.search {
    position: relative;
    display: flex;
    align-items: center;
}

.search input {
    padding: 8px 10px 8px 30px;
    border: 1px solid var(--orange);
    border-radius: 4px;
    width: 700px;
    height: 50px;
    border-radius: 10px;
    outline: none;
}
.search input:focus {
    border-color: var(--orange); 
    box-shadow: 0 0 5px var(--orange); 
}

.search button {
    position: absolute;
    left: 10px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.search i {
    font-size: 18px;
    color: #333;
}

.navitems-right {
    display: flex;
    align-items: center;
}

.navitems-right a {
    text-decoration: none;
    color: #333;
    margin: 0 15px;
    text-align: center;
}
.navitems-right :hover{
    color: var(--orange);
}
.navitems-right .nav-item i {
    font-size: 20px;
    display: block;
}

.navitems-right .nav-item span {
    font-size: 12px;
    display: block;
    margin-top: 5px;
}

/* Product Page */
.product-page {
    padding: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
}

.pro-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    width: 40%; /* Take up 40% of the page width */
}

.pro-img {
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 400px;
    position: relative;
}

.pro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

/* Dots */
.dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #bbb;
    cursor: pointer;
}

.dot.active {
    background-color: var(--orange);
}

/* Product Content */
.pro-content {
    margin: 20px 0;
    width: 55%; /* Take up 55% of the page width */
    display: flex;
    flex-direction: column; /* Stack content vertically */
    gap: 15px; /* Add space between items */
}

/* Product Name */
.pro-name {
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-text);
}
.pro-des {
    font-size: 20px;
    font-weight: lighter;
    color: var(--dark-text);
}

/* Price */
.pro-price {
    font-size: 20px;
    color: var(--orange);
}
/* Size Selector */
.pro-size {
    font-size: 18px;
    font-weight: bold;
}

.sizebox {
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}

.sizebox:hover {
    background-color: var(--orange);
    color: #fff;
}

/* Active state for sizebox */
.sizebox.active {
    background-color: var(--orange);
    color: #fff;
}

.pro-size-opt {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* Details */
.details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

.details-content {
    margin-top: 10px;
    font-size: 14px;
}

.hidden {
    display: none;
}

/* Wishlist and Bag buttons */
.pro-shop {
    display: flex;
    gap: 10px; /* Adds small space between the buttons */
    justify-content: flex-start; /* Aligns the buttons to the left */
}

.pro-shop div {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.pro-shop div i {
    margin-right: 10px; /* Adds space between the icon and the text */
}

.pro-shop div:hover {
    background-color: var(--orange);
    color: #fff;
}

/* Active state for buttons */
.pro-shop div.active {
    background-color: var(--orange);
    color: #fff;
}
