html {
    scroll-behavior: smooth;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", serif;
}

::selection {
    color: #FFF;
    background-color: #A6623B;
}

body,
main {
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, #DFCCBD, #D7A082, #8C5431, #593421);
    color: #333;
}

/* HEADER STYLING */
header {
    width: 100%;
    overflow: hidden;
    position: relative;
}

header img {
    width: 100%;
    filter: brightness(0.9);
    transition: transform 0.5s ease;
}

header img:hover {
    transform: scale(1.02);
}

/* NAVIGATION BAR */
nav {
    background-color: #4B392F;
    padding: 1em 3em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a,
nav #logo {
    text-decoration: none;
    color: #DFCCBD;
    transition: color 0.3s;
}

nav #Logo {
    font-size: 36px;
    font-weight: 700;
}

nav a {
    font-size: 16px;
    font-weight: 300;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 2em;
    list-style: none;
}

nav ul a:hover {
    color: #D7A082;
    transition: color 0.3s ease-in-out;
}

/* MARQUEE TEXT */
.marquee-box {
    overflow: hidden;
    background: #593421;
    padding: 1em 0;
}

.marquee-text {
    display: flex;
    white-space: nowrap;
    animation: marquee 15s linear infinite;
}

.marquee-text h2 {
    font-family: "Wix Madefor Display", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #DFCCBD;
    padding: 0.5em 1em;
    white-space: nowrap;
}

@keyframes marquee {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* PRODUCT NAVIGATION */
#navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 2em 0;
}

#navigation ul {
    display: flex;
    align-items: center;
    gap: 2.5em;
    list-style: none;
}

#navigation ul a {
    font-size: 20px;
    padding: 0.5em;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

#navigation ul a:hover {
    color: #8C5431;
    border-bottom: 2px solid #8C5431;
}

#navigation .vbox {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    gap: 2em;
}

#navigation .vbox video {
    border-radius:0.8em;
    height: 200px;
    background-size: 100% 100%;
    box-shadow: 0px 0px 10px 1px #8C5431 ;
}
#navHeading{
    margin: 1em 0;
    font-family: "Wix Madefor Display", sans-serif;
    color: #333;
    text-shadow: 0px 0px 1px #593421;
}
#navAll {
    border-bottom: 3px solid #000;
}
#navEarrings,
#navFootwares {
    opacity: 0.5 ;
}

/* PRODUCT CARD */

section {
    /* width: 80%;
    margin: 0 20%; */
    width: 80%;
    margin: 5% 10%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.mainbox {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.product {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    margin: 1rem;
    width: 250px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product img {
    max-width: 100%;
    border-radius: 8px;
}

.product h3 {
    margin: 0.5rem 0;
    font-weight: 600;
    color: #8C5431;
}

.product p {
    margin: 0.2em 0;
    color: #666;
}

.product button {
    margin: 0.4em 0 0 0 ;
    padding: 0.5rem 1.2rem;
    background-color: #8C5431;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.9em;
    transition: background-color 0.3s;
}

.product button:hover {
    background-color: #A6623B;
}

/* FOOTER */
footer {
    background: linear-gradient(135deg, #3F2D26, #5E4032);
    color: #DFCCBD;
    display: flex;
    justify-content: space-around;
    padding: 2.5em 1em;
    flex-wrap: wrap;
    gap: 2em;
}

footer h3 {
    font-size: 24px;
    color: #D7A082;
    font-weight: 600;
    margin-bottom: 1em;
}

footer p {
    font-size: 14px;
    line-height: 1.8;
    color: #DFCCBD;
}

footer .image img {
    height: 32px;
    margin: 0 0.5em;
    transition: transform 0.3s ease;
}

footer .image img:hover {
    transform: scale(1.1);
}

footer .main-info, .main-info2, .basic-info {
    flex-basis: 22%;
    text-align: left;
}

footer .basic-info h3,
footer .main-info h3 {
    padding-bottom: 0.5em;
    border-bottom: 1px solid #D7A082;
}

@media (max-width: 768px) {
    .vbox video {
        height: 150px;
    }

    .product {
        width: 100%;
    }

    #navigation ul {
        gap: 20px;
    }

    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    footer .main-info, .main-info2, .basic-info {
        flex-basis: 100%;
    }
}

/* loader */
/* Loader */
.loader {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #DFCCBD;
    z-index: 99;
    display: none;
    overflow: hidden;
  }
  
  .dot-spinner {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    --uib-size: 2.8rem;
    --uib-speed: 0.9s;
    --uib-color: #593421;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--uib-size);
    width: var(--uib-size);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  }
  
  .dot-spinner__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
  }
  
  .dot-spinner__dot::before {
    content: "";
    height: 20%;
    width: 20%;
    border-radius: 50%;
    background-color: var(--uib-color);
    transform: scale(0);
    opacity: 0.5;
    animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
    box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
  }
  
  .dot-spinner__dot:nth-child(2) {
    transform: rotate(45deg);
  }
  
  .dot-spinner__dot:nth-child(2)::before {
    animation-delay: calc(var(--uib-speed) * -0.875);
  }
  
  .dot-spinner__dot:nth-child(3) {
    transform: rotate(90deg);
  }
  
  .dot-spinner__dot:nth-child(3)::before {
    animation-delay: calc(var(--uib-speed) * -0.75);
  }
  
  .dot-spinner__dot:nth-child(4) {
    transform: rotate(135deg);
  }
  
  .dot-spinner__dot:nth-child(4)::before {
    animation-delay: calc(var(--uib-speed) * -0.625);
  }
  
  .dot-spinner__dot:nth-child(5) {
    transform: rotate(180deg);
  }
  
  .dot-spinner__dot:nth-child(5)::before {
    animation-delay: calc(var(--uib-speed) * -0.5);
  }
  
  .dot-spinner__dot:nth-child(6) {
    transform: rotate(225deg);
  }
  
  .dot-spinner__dot:nth-child(6)::before {
    animation-delay: calc(var(--uib-speed) * -0.375);
  }
  
  .dot-spinner__dot:nth-child(7) {
    transform: rotate(270deg);
  }
  
  .dot-spinner__dot:nth-child(7)::before {
    animation-delay: calc(var(--uib-speed) * -0.25);
  }
  
  .dot-spinner__dot:nth-child(8) {
    transform: rotate(315deg);
  }
  
  .dot-spinner__dot:nth-child(8)::before {
    animation-delay: calc(var(--uib-speed) * -0.125);
  }
  
  @keyframes pulse0112 {
    0%,
    100% {
      transform: scale(0);
      opacity: 0.5;
    }
  
    50% {
      transform: scale(1);
      opacity: 1;
    }
  }
  