

:root {
  --primary: rgb(0, 149, 255);
  --bg-dark: hsl(240, 10%, 15%);
  --card-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: rgba(0, 149, 255, 0.3);
  --text-light: #f0f0f0;
  --text-dim: #b0b0b0;
  --color-gray-100: hsl(220, 12%, 98%);
  --color-gray-200: hsl(220, 12%, 90%);
  --color-gray-300: hsl(220, 12%, 85%);
  --color-gray-400: hsl(220, 12%, 65%);
  --color-gray-500: hsl(220, 12%, 45%);
  --color-dark-100: hsl(240, 10%, 15%);
  --color-dark-200: hsl(240, 10%, 12%);
  --color-dark-300: hsl(240, 10%, 9%);
  --color-dark-400: hsl(240, 10%, 6%);
  --color-dark-500: hsl(240, 10%, 3%);
  --color-blue-100: hsl(217, 80%, 65%);
  --color-blue-200: hsl(217, 80%, 60%);
  --color-blue-300: hsl(217, 80%, 55%);
  --color-blue-400: hsl(217, 80%, 50%);
  --color-blue-500: hsl(217, 80%, 45%);
  --shadow-small: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
     rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  --shadow-medium: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
     rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  --shadow-large: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
     rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  --shadow-extra: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
     rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  /* color: var(--color-gray-100); */
  background-color: var(--color-dark-500);
  font-family: Arial;
}
main{
    background-color: var(--color-gray-100);
    min-height: 500vh;
}

main,
section {
  overflow: hidden;
}





a,
button {
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  border: none;
  outline: none;
  color: inherit;
  background: unset;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: inherit;
  line-height: 1.25;
  text-wrap: balance;
  word-wrap: break-word;
}

p,
li {
  font-family: inherit;
  line-height: 1.5;
  text-wrap: pretty;
  word-wrap: break-word;
}

img,
svg,
picture {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: cover;
  background-size: cover;
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.section {
  padding-block: 6rem 3rem;
}

.container {
  max-width: 75rem;
  height: auto;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.center {
  text-align: center;
  vertical-align: middle;
}

.truncate {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.title-small {
  font-family: inherit;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
}

.title-medium {
  font-family: inherit;
  font-size: clamp(2.15rem, 5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.15;
}

.title-large {
  font-family: inherit;
  font-size: clamp(2.65rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
}

.text-small {
  font-family: inherit;
  font-size: 0.85rem;
  line-height: 1.5;
}
.text-base {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
}

.text-medium {
  font-family: inherit;
  font-size: 1.15rem;
  line-height: 1.5;
}
.text-large {
  font-family: inherit;
  font-size: 1.3rem;
  line-height: 1.5;
}
.text-upper {
  text-transform: uppercase;
}
.text-lower {
  text-transform: lowercase;
}
.text-capital {
  text-transform: capitalize;
}

.font-light {
  font-weight: 300;
}
.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semi {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}

.btn {
  display: inline-flex;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  align-items: center;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
  vertical-align: middle;
  column-gap: 0.35rem;
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  border-radius: 3rem;
  transition: all 0.25s ease;
}
.btn-primary {
  color: var(--color-gray-100);
  background-color: var(--color-blue-300);
  box-shadow: var(--shadow-medium);
}
.btn-neutral {
  color: var(--color-dark-300);
  background-color: var(--color-gray-100);
  box-shadow: var(--shadow-medium);
}
.btn-darken {
  color: var(--color-gray-100);
  background-color: var(--color-dark-100);
  box-shadow: var(--shadow-medium);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: all 0.35s ease;
  color: black;
}
.header.on-scroll {
  background-color: var(--color-dark-400);
  box-shadow: var(--shadow-medium);
  color: var(--color-gray-100);
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: baseline;
  column-gap: 1rem;
  width: 100%;
  height: 4rem;
  margin-inline: auto;
}

.brand {
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-gray-100);
}

.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-block: 4rem;
  background-color: var(--color-dark-400);
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
}
.menu.is-active {
  top: 0;
  left: 0;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.25rem;
}
.menu-link {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--primary);
}
.menu-block {
  margin-left: auto;
}
@media screen and (min-width: 48rem) {
  .menu {
    position: relative;
    top: initial;
    width: auto;
    padding: 0;
    margin-left: auto;
    background: unset;
    box-shadow: unset;
    transition: unset;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 2rem;
    margin-inline: auto;
  }
  .menu-link {
    text-transform: capitalize;
  }
  .menu-block {
    margin-left: 2rem;
  }
}

.burger {
  cursor: pointer;
  position: relative;
  display: block;
  order: -1;
  z-index: 10;
  width: 1.5rem;
  height: 1rem;
  user-select: none;
  visibility: visible;
}
@media screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}
.burger-line {
  position: absolute;
  display: block;
  left: 0;
  opacity: 1;
  width: 100%;
  height: 2px;
  background-color: var(--color-gray-100);
  transition: all 0.25s ease;
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  left: -1rem;
  opacity: 0;
}
.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

.overlay {
  position: fixed;
  display: none;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: black;
  transition: all 0.3s ease;
}
.overlay.is-active {
  display: block;
}

.banner-column {
  position: relative;
  display: grid;
  align-items: center;
  row-gap: 3rem;
  column-gap: 2rem;
}
@media screen and (min-width: 48rem) {
  .banner-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    margin-top: 4rem;
  }
}
@media screen and (min-width: 64rem) {
  .banner-column {
    grid-template-columns: 1fr max-content;
    column-gap: 4rem;
  }
}
.banner-image {
  display: block;
  max-width: 16rem;
  height: auto;
  object-fit: cover;
  justify-self: center;
}
@media screen and (min-width: 48rem) {
  .banner-image {
    max-width: 20rem;
    order: 1;
  }
}
@media screen and (min-width: 64rem) {
  .banner-image {
    max-width: 24rem;
    margin-right: 5rem;
  }
}
.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  row-gap: 1.5rem;
}
.banner-link {
  position: absolute;
  display: grid;
  top: 30%;
  right: 1.5rem;
  justify-items: center;
  row-gap: 0.5rem;
  visibility: hidden;
}
@media screen and (min-width: 64rem) {
  .banner-link {
    visibility: visible;
  }
}
.banner-link > * {
  font-size: 1.25rem;
  line-height: inherit;
  color: var(--color-gray-100);
}
.banner-link::before, .banner-link::after {
  content: "";
  position: absolute;
  width: 4rem;
  height: 1.5px;
  transform: rotate(90deg);
  background: var(--color-gray-100);
}
.banner-link::before {
  top: -3rem;
}
.banner-link::after {
  bottom: -3rem;
}



/* feature section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
}

.feature {
  background-color:rgb(0, 149, 255);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  color: white;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.feature i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature h3 {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.feature p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* feature section */
/* trending product */
#trending-products{
  /* background-color: var(--color-gray-200); */
  padding: 40px;
  min-height: 400px;

}
#trending-products h1{
  color: var(--color-dark-100);
  font-size: 44px;
  text-align: center;
  margin: 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.tr-product-card{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;


}
/* .card::after{
  text-align: center;
  text-justify: initial;
  vertical-align: center;
  color: rgb(255, 255, 255);
  content: "Classic ceramics kitchen ware";
  width: 100%;
  height: 100%;

  z-index: 1;
  position: absolute;
  bottom: 0;
  border-radius: 0px 0px 30px 30px;
  background: linear-gradient(transparent 20%, rgb(0, 0, 0));
} */
.card{
    width: 250px;
    position: relative;

}

/* .card:hover .inverted-radius{
    background:rgba(0, 157, 255, 0.589);

} */


.card .inverted-radius {

    position: relative;
    transition: all 0.3s;

    background: rgba( 237, 237, 237, 0.3 );
box-shadow: 0 8px 12px 0 rgba( 31, 38, 135, 0.37 );

backdrop-filter: blur( 5px );
-webkit-backdrop-filter: blur( 5px );
/* border-radius: 10px; */
border: 1px solid rgba( 255, 255, 255, 0.18 );
  
  width: 250px;
  height: 300px;
  aspect-ratio: 1;
  border-radius: 30px;
  overflow: hidden;
  
}

.card .inverted-radius .card-title{
    border-bottom: 1px solid rgb(46, 46, 46);
    padding: 15px 10px;
    font-size: 18px;
    color: rgb(73, 73, 73);
    width: 80%;
    margin: 0px auto;
    font-family: Arial, Helvetica, sans-serif;
    font-variant: small-caps;
}



.card .inverted-radius .card-image{
    width: 100%;
    margin-top: 10px;
    padding-top: 30px;
    position: relative;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    transition: all 0.2s;

}
.card:hover .inverted-radius .card-image{
    transform:translateX(-50%) scale(1.05);
}
.card .inverted-radius img {
    width: 100%;
    object-fit: cover;
    border-radius: inherit; 
    transition: all 0.2s;
}
.card:hover .inverted-radius img{
border-radius: 20px;
}
.card-image-bg{
 position: absolute;
 height: 150px;
 width: 90%;
 z-index: -1;
 background-color: gray;
 top: 15px;
 left: 10px;
 margin: 0 auto;
 border-radius: 20px;
}
.card-image-bg:nth-child(2){
    top: 0px;
    background-color: rgba(168, 168, 168, 0.534);
    width: 80%;
    left: 20px;
}

/* trending product */

/* product card */

/* produuct section  */
.product-section {
  padding: 60px 20px;
    background-color: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--navy);
  font-weight: bold;
}

.product-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 20px;
  background: transparent;
  border: 2px solid var(--color-blue-500);
  color: var(--color-blue-500);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--color-blue-500);
  color: #fff;
}

.product-grid {
  display: grid;
  place-items: center;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
    max-width: 350px;
  background: #fff;
  border-radius: 10px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.256); */
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid var(--color-blue-500);
  /* background-color: var(--color-blue-500); */
  color: white;

}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  position: relative;
  text-align: center;
  /* padding: 20px; */
  /* background: var(--white); */
}

.product-image img {
  max-width: 100%;
  height: auto;
}

.badge {
  position: absolute;
  top: 10px;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 4px;
  color: #535353;
  font-weight: 600;
}

.badge.new {
  left: 10px;
  background: var(--navy-light);
}

.badge.discount {
  right: 10px;
  background: var(--orange);
}

.product-info {
  text-align: center;
  padding: 20px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  border: 1px solid;
  background-color: var(--color-blue-500);
  margin: 10px;
  border-radius: 5px;
}

.product-info h4 {
  margin: 0 0 8px;
  font-size: 26px;
  /* color: white; */
  
}

.product-info p {
  font-size: 14px;
  color: #c7c7c7;
}
/* produuct section  */
/* product card */


/* why choose us */
.why-choose-us {
  background: linear-gradient(135deg, #f5f7fa, #e4ecf4);
  padding: 60px 20px;
  text-align: center;
}

.section-heading {
  font-size: 2.4rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 10px;
}

.section-subtext {
  font-size: 1rem;
  color: #7f8c8d;
  margin-bottom: 40px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.benefit-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  width: 280px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.benefit-card .icon {
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 15px;
}

.benefit-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #7f8c8d;
}

/* why choose us */

.product-highlight-centered {
  padding: 80px 30px;
  background: linear-gradient(to right, #f9fbfc, #eef4f7);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.center-container {
  max-width: 700px;
  margin: 0 auto;
}

.tagline {
  font-size: 1rem;
  color: #777;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tagline span {
  background-color: #00bfff;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
  margin-right: 5px;
}

.headline {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #2c3e50;
}

.description {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 28px;
  font-size: 1rem;
  background-color: #3498db;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #2980b9;
}



/* footer */

/* footer */
.site-footer {
  /* background-color: var(--navy); */
  color: var(--gray);
  padding: 60px 20px;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 200px;
  color:white;
}

.footer-column h4 {
  color: white;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  color: var(--color-gray-300);
}

.footer-column ul li a {
  color: var(--color-gray-300);
  text-decoration: none;
  transition: color 0.3s;
  text-decoration: none;
}

.footer-column ul li a:hover {
  color: orangered;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.logo span {
  color: orangered;
}

.tagline {
  margin-bottom: 20px;
  /* color: var(--navy-light); */
  /* color: white; */
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icons a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  font-size: 16px;
  transition: background 0.3s, transform 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--orange);
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 0px;
    padding-bottom: 0px;
  }

  .footer-column {
    text-align: center;
    max-height: 160px;
  }

  .social-icons {
    justify-content: center;
  }
}

/* footer */
/* footer */