/* Resets */

/* Modern CSS Reset 2025 */

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
    padding: 0;
   
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  margin: 0;
 padding: 0;
   scroll-behavior: smooth;
}

/* Remove default margin in favour of better control in authored CSS */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  /* background: #ebeae13d !important;

  background-image: none !important; */

  
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4, h5, h6,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* Remove animations for people who've turned them off */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Modern focus styles */
:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* Remove outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* Smooth scrolling for users who don't prefer reduced motion */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Smooth scrolling for all links */
a[href^="#"] {
  scroll-behavior: smooth;
}

/* Remove default button styles */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Improve table styling */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Modern form styling */
input,
textarea,
select {
  border: none;
  outline: none;
}

/* Hide scrollbars but maintain functionality for webkit browsers */
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Container query support */
@supports (container-type: inline-size) {
  .container {
    container-type: inline-size;
  }
}

/* Logical properties for better internationalization */
.flow > * + * {
  margin-block-start: var(--flow-space, 1em);
}

a{
  text-decoration: none;
}


.header {
    height: 8vh; 
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 10;
    animation: fade-down 1s ease-out;
   
}

@keyframes fade-down {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}

.nav-container{
    z-index:3 ;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 2rem 2rem;
    margin:0 auto;
    line-height: 1;
    position: relative;
    gap: 2rem;
} 

.logo-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap:0.9rem;

}



.logo-text{
    font-size: clamp(0.75rem, 4vw, 1.5rem);
    font-family:'Audiowide' , sans-serif ;
    font-weight: 500;
    line-height:1 ;
}

.logo-span-1{
  color:#13265C;
}
.logo-span-2{
  color:#FF6700 ;
}



.both-navigations {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; 
    gap: 10px;
    position: fixed;
    top: 40px; /* Sub header-ul tau */
    left: 50%;
    transform: translateX(-50%); /* Centreaza orizontal */
    
}

.navigation-box {
    
    position: relative; 
    width: 20vw;
    height: 3rem;
    margin-inline: 0.5em;
    padding: 1rem;
    border-radius: 10px;
    background:#3333333b ;
    border: 1px solid rgba(255, 255, 255, 0.233);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    flex-wrap: wrap;
}

.second-nav {
    position: relative;
    width: 20rem;
    height: 22rem;
    margin-inline: 0.5em;
    padding: 1rem;
    border-radius: 10px;
    background: #3333333b;
    border: 1px solid rgba(255, 255, 255, 0.233);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    gap:3rem;
    align-self:start;
   transition: opacity 0.5s ease, transform 0.5s ease;
    
}

.second-nav.open {
    
    display: flex;
    pointer-events: auto;
    transform: translateY(0);
}

.main-ul {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}


.main-ul-li{
    color:#fff;
     font-size: 2rem;
     font-family: 'Inter',sans-serif;
     font-weight: 400;
}

.bar{
    content: '';
    background: #333;
    align-self: start;
    width:18rem;
    height: 1px;
    
}

.btn-contact-nav{
    padding:1rem 2rem;
    border: 1px solid #fff  ;
    border-radius: 10px;
}

.contact-button{
    font-size: 1rem;
    color:#333;
    font-family: 'Inter' , sans-serif;
    font-weight: 500;
}


.nav-text{
   font-size: 1rem;
   color:#000000f8;
   font-family: 'Inter' ,sans-serif;
   line-height: 1;
   font-weight: 400;
}

.span-icon-btn{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:0.5rem;
    position: relative;
    cursor: pointer;
    transition: gap 0.1s ease;
}

.span-icon-btn:hover,
.span-icon-btn.active{
    gap:0.7rem;
}

.span-icon{
    content:'';
    width:30px;
    height:1px;
    background: black;
    transition: all 0.3s ease;
    transform-origin: center;
   
   
}  
.span-icon:nth-child(1) {
   top: calc(50% - 8px);
 }

.span-icon:nth-child(2) {
    top: calc(50% + 8px);
 }

.span-icon-btn.active .span-icon:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
 }

.span-icon-btn.active .span-icon:nth-child(2) {
    transform: translateY(-8px) rotate(-45deg);
 }


.circle {
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    height: 50px;
    width: 50px;
    float: left;
    margin: 0 5px;
    background: #fff;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
}

.art-circle{
     display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    height: 50px;
    width: 50px;
    float: left;
    margin: 0 5px;
    background: #fff;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
}



  @media screen and (max-width:700px){
  .nav-container{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 1rem 2rem;
    height: 6rem;
    margin: 0;
  }

  .navigation-box {
    position: relative; 
    width: 4rem;
    height: 3rem;
    right: -18rem;
    top: -1rem;
    border-radius: 10px;
    background: #3333333b;
    border: 1px solid rgba(255, 255, 255, 0.233);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .logo-text{
    font-size: 1rem;
  }

  .nav-text{
    display: none;
  }
  .socials{
    display: none;
  }
}

@media screen and (max-width:644px){
  .navigation-box {
    right: -15rem;
  }
}

@media screen and (max-width:546px){
  .navigation-box {
    right: -12rem;
  }
}

@media screen and (max-width:450px){
  .navigation-box {
    right: -11rem;
  }
}


@media screen and (max-width:414px){
  .navigation-box {
    right: -10rem;
  }
}

/* Cart */
.cart-area{
   position: relative;
    min-height: 100vh;
    width: 100%;
    padding:2rem 2rem;
    margin-top: 10rem;
}

.cart-row{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}


  .shoppingCart h1{
    font-family: var(--SourceSerifPro);
    font-size: 22px;
margin-bottom: 10px;
margin-left: 10px;
  }
  
  .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
   
  }
  .shoppingCart {
    
    padding: 1rem;
    
  }

  .removed{
    display: none;
  }

  .imageTitle{
    display: flex;
    align-items: center;
    gap: 2rem;
  }

    

    .div-text p{
     font-size: clamp(0.6rem, 1vw, 1rem);
      font-family: 'Inter' ,sans-serif ;
      font-weight: 400;
    }

     /* .shoppingCart {
    width: 73%;
  } */

.div-text{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap:1rem;
  margin-top: 2rem;
    

}

.table-body{
  display:flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap:4rem;
   padding: 4rem;
  border-bottom: 1px solid #13275c2f;
}


  .table {
    width: 100%;
   
  }


   .subtotal {
    font-size: clamp(0.8rem, 1vw, 1rem);
    text-align: right;
  }

  
 .qty{
  display: flex;
  align-items: center;
  justify-content: center;
  gap:1rem;
 }
 

 .price-details{
  font: 400 1.2rem;
 }

 .border{
  
  height: 25rem;
  border:2px solid #13265C;
 }


 .checkout-box{
  display:flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  gap:2rem
 }

  .checkout-box h1{
    font:400 1.8rem 'Inter' , sans-serif;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
     padding-right: 10rem; 
     color:#13265C;
  }

  .price-box{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap:1rem;
   padding-bottom: 1rem;
   padding-right: 10rem; 
   min-width: 20rem;
    border-bottom: 2px solid #333;;
  }
  .price-box p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap:1rem;

    font: 400 1.2rem 'Inter',sans-serif;
    color: #626262;
  }

  .checkout-button{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:1rem
  }


  .btn-check{
    padding: 1rem 5rem;
    background-color:#FF6700;
    color:#fff;
    
    font: 400 1rem 'Inter',sans-serif;
    text-transform: uppercase;
   
  }

   .continue{
   

    font: 300 0.6rem ;
    color: #626262e5;
    
   }

   .continue:hover{
    color:#091430;
   }

.phases-box{
  display: none;
  margin-top: 10rem;
}

   .phases-box.active{
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  
   }


   .phase-row{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:1rem;
   }





   

   .phase{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:0.5rem

 
   }

  

.phase-line{
  width:5rem;
  height: 3px;
  background: #111;        
  /* margin-left: 8px; */
  
}

.phase-number{
     padding:0.5rem 0.9rem;
    border:1px solid #33333341;
    border-radius: 50%;
    font:300 1rem 'Inter',sans-serif;
    cursor: pointer;
}

  .phase-number.done{
      background-color: #d6d6d6ab;
      color: #111;
    }

.phase-line.done {
  background: #111;        
}

.phase-line.pending {
 background: #FF6700;
 
}

.phase-label{
  text-align: center;
  font:400 1rem 'Inter',sans-serif;
}

.adress-section{
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content:center ;
  flex-direction: column;
  gap: 1rem;
  padding: 4rem;
  margin-top: 5rem;
}

.adress-section.removed{
  display: none;
}


.adress-content{
  display: flex;
  align-items:flex-start;
  justify-content: center;
  gap:1rem;
}

.adress-delivery-box{
  width: 30rem;
  display: flex;
  align-items: flex-start;
  justify-content: center; 
  flex-direction: column;
  gap:1rem;
  
}

.adress-title{
  display: flex;
  align-items: center;
  justify-content:center;
  gap:2rem;
}

.adress-title h1{
  font:400 1.5rem 'Inter',sans-serif;
}

.modify-btn{
  font:400 1rem 'Inter',sans-serif;
  text-decoration: underline;
  color: #091430;
}



.adress-details-box{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap:0.5rem
}

.name{
 font:500 1.2rem 'Inter',sans-serif;
}


.adress-detail{
  font:400 1rem 'Inter',sans-serif;
}

.input-phone.error {
  border: 2px solid red;
}
    

.contatact-details{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap:1rem
}

.contatact-details p{
   font:500 1.2rem 'Inter',sans-serif;
}


.contatact-details blockquote{
   font:400 1rem 'Inter',sans-serif;
}

#phone{
  padding: 0.5rem 1rem;
}

.billing-adress-box{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap:2rem;
  height:100%;
  padding-left: 2rem;
}

.group {
  display: flex;
  line-height: 30px;
  align-items: center;
  position: relative;
  max-width: 200px;
}

.input {
 
  width: 100%;
  height: 45px;
  line-height: 30px;
  padding: 0 1rem;
  padding-left: 3rem;
  border: 2px solid #13265C;
  border-radius: 10px;
  outline: none;
  background-color: #f8fafc;
  color: #0d0c22;
  transition: .5s ease;
}

.input::placeholder {
  color: #94a3b8;
}

.input:focus, input:hover {
  outline: none;
  border-color: rgba(129, 140, 248);
  background-color: #fff;
  box-shadow: 0 0 0 5px rgb(129 140 248 / 30%);
}

.icon {
  position: absolute;
  left: 1rem;
  fill: none;
  width: 1rem;
  height: 1rem;
}

.btn-phase{
  padding: 1rem 2rem;
  background-color: #13265C;
  border-radius: 22px;
}

.next-phase{
  color:#fff;
  font:400 1rem 'Inter' ,sans-serif;

}
.adress-modify{
  display: none;
}

.adress-modify.active{
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content:center ;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  margin-top: 5rem;
}

/* New Adress form */

.address-list {
      display: flex;
      
      flex-direction: column;
      gap: 12px;
    }

    .address-card {
      /* border: 2px solid #e0e0e0; */
      border-radius: 4px;
      padding: 20px 24px;
      cursor: pointer;
      /* background: #fff; */
      transition: border-color 0.15s;
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .address-card:hover { border-color: #bbb; }
    .address-card.selected { border-color: #1a1a1a; }

    .radio-dot {
      width: 1.5rem;
      height: 1.5rem;
      border-radius: 50%;
      border: 2px solid #aaa;
      flex-shrink: 0;
      margin-top: 2px;
      transition: border 0.15s;
      background: #fff;
    }
    .address-card.selected .radio-dot { border: 6px solid #1a1a1a; }
    .new-option.selected .radio-dot   { border: 6px solid #1a1a1a; }

    .card-body { flex: 1; }
    .card-name {
      font:500 1.8rem 'Inter' ,sans-serif;
      text-transform: uppercase;
      color: #13265C;
      margin-bottom: 4px;
    }
    .card-address {
      font: 400 1.2rem  'Inter' ,sans-serif;
      color: #333;
      line-height: 1.6;
    }
  
    .badge-selected {
      font-size: 12px;
      color: #fff;
      background: #1a1a1a;
      border-radius: 3px;
      padding: 2px 10px;
      font-weight: 600;
      white-space: nowrap;
      align-self: flex-start;
      display: none;
    }
    .address-card.selected .badge-selected { display: block; }

    .new-option {
   
      border-radius: 4px;
      padding: 20px 24px;
      cursor: pointer;
    
      transition: border-color 0.15s;
      display: flex;
      gap: 16px;
      align-items: center;
    }
    .new-option:hover { border-color: #bbb; }
    .new-option.selected { border-color: #1a1a1a; }

   
    .new-option.selected .plus-icon {
      background: #1a1a1a;
      color: #fff;
    }
    .new-label {
      font:400 1.8rem 'Inter',sans-serif;
      font-size: 15px;
      font-weight: 600;
      color: #1a1a1a;
    }

    .new-form {
      border-radius: 4px;
      padding: 28px 24px;
      display: none;
      flex-direction: column;
      animation: slideDown 0.2s ease;
    }
    .new-form.visible { display: flex; }

    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-8px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .form-title {
      font:400 1.8rem 'Inter',sans-serif;
      color: #111;
      margin-bottom: 24px;
    }

    .form-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 28px;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 6px;
      flex: 1 1 100%;
    }
    .field.half { flex: 1 1 calc(50% - 8px); min-width: 120px; }

    .field label {
      font-size: 12px;
      font-weight: 600;
      color: #555;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .field input {
      padding: 12px 14px;
      border: 2px solid #e0e0e0;
      border-radius: 4px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      color: #111;
      background: #fff;
      outline: none;
      transition: border-color 0.15s;
    }
    .field input:focus { border-color: #1a1a1a; }
    .field input.error { border-color: #e53935; }

    .field .err-msg {
      font-size: 12px;
      color: #e53935;
      display: none;
    }
    .field.has-error .err-msg { display: block; }

    .form-actions {
      display: flex;
      gap: 12px;
    }

    .btn-save {
      padding: 14px 32px;
      background: #1a1a1a;
      color: #fff;
      border: none;
      border-radius: 4px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.04em;
      cursor: pointer;
      text-transform: uppercase;
      transition: background 0.15s;
    }
    .btn-save:hover { background: #333; }

    .btn-cancel {
      padding: 14px 24px;
      background: transparent;
      color: #555;
      border: 2px solid #ccc;
      border-radius: 4px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: border-color 0.15s;
    }
    .btn-cancel:hover { border-color: #999; }

    .btn-confirm {
      margin-top: 28px;
      width: 100%;
      padding: 16px;
      background: #1a1a1a;
      color: #fff;
      border: none;
      border-radius: 4px;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.05em;
      cursor: pointer;
      text-transform: uppercase;
      transition: background 0.15s;
    }
    .btn-confirm:hover { background: #333; }
    .btn-confirm.hidden { display: none; }

   /* Payment Methods Container */
.payment-methods {
  max-width: 500px;
  margin: 2rem auto;
}
@media (max-width: 740px) {
  /* Containerul principal al adresei */
  .adress-section, .adress-modify.active {
    padding: 1.5rem !important;
    margin-top: 2rem !important;
    width: 100%;
    box-sizing: border-box;
  }

  /* Aranjăm conținutul pe verticală */
  .adress-content {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }

  /* Box-ul care avea 30rem - acum e flexibil */
  .adress-delivery-box, .billing-adress-box {
    width: 100% !important;
    padding-left: 0 !important;
    gap:1rem
  }

  /* Titluri și Font-uri */
  .adress-title {
    justify-content: space-between;
    width: 100%;
  }

  .adress-title h1 {
    font-size: 1.2rem !important;
  }

  .card-name, .new-label, .form-title {
    font-size: 1.1rem !important;
  }

  .card-address, .adress-detail {
    font-size: 1rem !important;
  }

  /* Cardurile de adresă (cele cu radio button) */
  .address-card, .new-option {
    padding: 15px !important;
    gap: 10px !important;
  }

  /* Formularul de adresă nouă (Grid-ul) */
  .form-grid {
    display: flex;
    flex-direction: column; /* Forțăm input-urile unul sub altul */
    gap: 12px !important;
  }

  .field.half {
    flex: 1 1 100% !important; /* Half devine Full pe mobil */
  }

  /* Butoane */
  .btn-confirm, .btn-save, .btn-phase {
    width: 50% !important;
    padding: 12px !important;
    font-size: 0.9rem !important;
  }

      .phase-line {
        width: 1rem;
        height: 3px;
        background: #111;
        /* margin-left: 8px; */
    }

    .modify-btn{
      margin-left:-10rem;
    }
    .phase-row{
      display: none;
    }
}
/* Payment Option - Selectie metoda */
.payment-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 1.2rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
  background-color: #fff;
}

.payment-option:hover {
  border-color: #FF6700;
  background-color: rgba(255, 103, 0, 0.03);
}

.payment-option.selected {
  border-color: #FF6700;
  background-color: rgba(255, 103, 0, 0.1);
}

.radio-dot {
  width: 24px;
  height: 24px;
  border: 2px solid #ccc;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
  background-color: #fff;
}

.payment-option.selected .radio-dot {
  background-color: #FF6700;
  border-color: #FF6700;
  box-shadow: inset 0 0 0 4px #fff;
}

.payment-label {
  font-weight: 500;
  font-size: 1rem;
  color: #333;
}

/* Payment Form - Card */
.payment-form {
  display: none;
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  animation: slideDown 0.3s ease-out;
}

.payment-form.visible {
  display: block;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: 'Courier New', monospace;
}

.form-input:focus {
  outline: none;
  border-color: #FF6700;
  box-shadow: 0 0 0 3px rgba(255, 103, 0, 0.1);
}

.form-input.error {
  border-color: #e74c3c;
}

.error-msg {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 0.3rem;
  display: none;
}

.error-msg.show {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.date-inputs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.date-inputs input {
  flex: 1;
  text-align: center;
}

.separator {
  color: #999;
  font-weight: bold;
}



/* Confirm Button */
.btn-confirm {
  width: 100%;
  padding: 1rem;
  background-color: #FF6700;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
}

.btn-confirm:hover {
  background-color: #e55a00;
}

.btn-confirm:active {
  transform: scale(0.98);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .payment-methods {
    margin: 1rem;
  }
}

/* Confirmare */

/* Confirmation Page */
.confirmation-container {
   display: flex;
  justify-content: center;
  padding: 2rem;
  margin-top: 2rem;
  border-top: 2px solid #e0e0e0;
  width: 100%;
}

.confirmation-products {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
}

.confirmation-products h2 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #333;
  border-bottom: 2px solid #FF6700;
  padding-bottom: 0.5rem;
}

.confirmation-product-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.confirmation-product-item:last-of-type {
  border-bottom: none;
}

.confirmation-product-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

.confirmation-product-info {
  flex: 1;
}

.confirmation-product-info p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
  color: #555;
}

.confirmation-product-info .product-name {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

.confirmation-product-info .product-size {
  color: #999;
  font-size: 0.9rem;
}

.confirmation-product-info .product-price {
  font-weight: 600;
  color: #FF6700;
}

.confirmation-totals {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #FF6700;
}

.confirmation-totals p {
  display: flex;
  justify-content: space-between;
  margin: 0.8rem 0;
  font-size: 0.95rem;
}

.confirmation-totals .total-confirm {
  font-weight: 700;
  font-size: 1.2rem;
  color: #FF6700;
  margin-top: 1rem;
}

/* Details Section */
.confirmation-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.confirmation-section {
  background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.2rem;
  transition: all 0.3s ease;
}

.confirmation-section:hover {
  border-color: #FF6700;
  box-shadow: 0 2px 8px rgba(255, 103, 0, 0.1);
}

.confirmation-section h3 {
  font-size: 1.1rem;
  margin: 0 0 0.8rem 0;
  color: #333;
  border-bottom: 2px solid #FF6700;
  padding-bottom: 0.5rem;
}

.address-box, .payment-box {
  background-color: #f9f9f9;
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.address-box p, .payment-box p {
  margin: 0.4rem 0;
}

.address-placeholder, .payment-placeholder {
  color: #999;
  font-style: italic;
}

.address-box .address-name {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

.address-box .address-street {
  color: #666;
}

.payment-box .payment-method-name {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

/* Email Section in Pay */
.email-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid #e0e0e0;
}

.email-section label {
  display: block;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.email-section .form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.email-section .form-input:focus {
  outline: none;
  border-color: #FF6700;
  box-shadow: 0 0 0 3px rgba(255, 103, 0, 0.1);
}

.email-section .form-input.error {
  border-color: #e74c3c;
}

.email-section .error-msg {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 0.3rem;
  display: none;
}

.email-section .error-msg.show {
  display: block;
}

/* Email Confirmation Box */
.email-confirmation-box {
  background-color: #f9f9f9;
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #555;
}

.email-confirmation-box p {
  margin: 0;
}

.email-placeholder {
  color: #999;
  font-style: italic;
}

.email-confirmation-box .email-value {
  font-weight: 600;
  color: #333;
  word-break: break-all;
}

/* Confirmation Button Container */
.confirmation-button-container {
  display: flex;
  justify-content: center;
  padding: 2rem;
  margin-top: 2rem;
  border-top: 2px solid #e0e0e0;
}

.btn-place-order {
  padding: 1.2rem 2rem;
  background-color: #FF6700;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 103, 0, 0.3);
}

.btn-place-order:hover {
  background-color: #e55a00;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 103, 0, 0.4);
}

.btn-place-order:active {
  transform: translateY(0);
}

@media (max-width: 600px) {
  .confirmation-button-container {
    padding: 1rem;
  }

  .btn-place-order {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .confirmation-container {
    grid-template-columns: 1fr;
  }

  .confirmation-product-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .confirmation-product-item img {
    width: 100%;
    height: auto;
  }
}

/* ═══════════════════════════════════════════════════════════ */
/* RESPONSIVE DESIGN - MEDIA QUERIES ONLY */
/* ═══════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────────────
   TABLET (768px and down)
   ─────────────────────────────────────────────────────────── */
@media (max-width: 910px) {
  .cart-row{
           gap: 2rem;
  }
  /* PHASE ROW */
  .phase-row {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .phase-item {
    gap: 0.8rem;
  }

  .phase-circle {
    width: 50px;
    height: 50px;
  }

  .phase-number {
    font-size: 1.3rem;
  }

  .phase-label h3 {
    font-size: 1rem;
  }

  .phase-label p {
    font-size: 0.8rem;
  }

  .phase-connector {
    height: 70px;
    margin: 0 0.5rem;
  }

  .summary-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-change-address {
    width: 100%;
  }

  /* ADDRESS SECTION */
  .address-section-modern {
    margin: 1rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .step-indicator {
    margin-bottom: 2rem;
  }

  .step-connector {
    width: 30px;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn-save,
  .btn-cancel {
    width: 100%;
  }
 

  /* PAYMENT SECTION */
  .payment-section-modern {
    margin: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .payment-actions {
    flex-direction: column;
  }

  .btn-back,
  .btn-continue {
    width: 100%;
  }

  /* CONFIRMATION SECTION */
  .confirmation-section-modern {
    margin: 1rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .confirmation-actions {
    flex-direction: column;
  }

  .btn-back,
  .btn-place-order {
    width: 100%;
  }

  .confirmation-product {
    flex-direction: column;
  }

  .confirmation-product img {
    width: 100%;
    height: auto;
  }
  .phase-line {
    width: 3rem;
    height: 3px;
    background: #111;
    /* margin-left: 8px; */
}
}
@media (max-width:715px) {
  
      .btn-confirm  {  
        width: 100% !important;
        padding: 4rem;
        background-color: #FF6700;
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease;
        margin-top: 1rem;
    }

}
@media (max-width: 600px) {

  .table-body{
    padding: 1rem;
  }
    .cart-row {
        flex-wrap: wrap;
        position: relative;
        padding-bottom: 15px;
    }

    .imageTitle {
        flex: 0 0 100%; /* Ocupă tot rândul de sus */
    }
    .div-text p {
      font-size:0.8rem   ;
    }

    .qty {
        flex: 0 0 100%; /* Ocupă tot rândul de jos */
        justify-content: space-between;
        background: #fbfbfb;
        /* padding: 8px 12px; */
        margin-left: 7rem;
        border-radius: 6px;
    }

    .remove-btn { 
        position: absolute;
        top: 15px;
        right: 0;
    }
}

.qty-box{
  display: flex;
  align-items: center;
  justify-content: center;
  gap:1rem;
}

@media screen and (min-width: 403px) and (max-width: 430px) {

  .table-body{
    margin-bottom: -1rem;
  }


  .cart-row {
    display: flex;
    flex-direction: column;
    padding: 12px;
    
    position: relative;
    gap: 10px;
    margin-left: -5rem;
  }

      .cart-area {
        padding: 1rem;
    }

  /* Header cu Imagine si Titlu */
  .imageTitle {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .cart-row img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
  }

  .div-text {
    flex: 1;
  }

  .div-text p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
    line-height: 1.2;
    max-width: 180px; /* Previne suprapunerea cu butonul de ștergere */
  }

  .div-text .price {
    font-size: 0.8rem;
    color: #666;
    margin-top: 2px;
  }

  /* Bara de jos cu Cantitate si Pret */
  .qty {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Impinge pretul in dreapta */
    background: #f9f9f9;
    padding: 6px 10px;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
  }

  /* Containerul nou cerut */
  .qty-box {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .qty-box button {
   
    
    border-radius: 4px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .qty-box span {
    font-weight: bold;
    font-size: 0.9rem;
    min-width: 20px;
    text-align: center;
  }

  /* Subtotalul - Acum garantat vizibil */
  .subtotal {
    font-size: 0.95rem;
    font-weight: 700;
    color: #000;
    white-space: nowrap; /* Impiedica pretul sa sara pe randul doi */
  }

  /* Pozitionare Buton X */
  .imageTitle > div:first-child {
    position: absolute;
    top: 10px;
    right: 10px;
  }

   .modify-btn{
      margin-left:-6rem;
    }
}
/* ───────────────────────────────────────────────────────────
   MOBILE (480px and down)
   ─────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  
  /* PHASE ROW */
  .phase-row {
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
  }

  .phase-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .phase-circle {
    width: 45px;
    height: 45px;
  }

  .phase-number {
    font-size: 1.2rem;
  }

  .phase-label h3 {
    font-size: 0.95rem;
  }

  .phase-label p {
    font-size: 0.75rem;
  }

  .phase-connector {
    width: 2px;
    height: 30px;
    margin: 0;
  }

  .summary-box {
    flex-direction: column;
    padding: 0.8rem;
  }

  .summary-box p {
    font-size: 0.9rem;
  }

  .btn-change-address {
    width: 100%;
    padding: 0.7rem 1rem;
  }

  /* GENERAL */
  .section-header h2 {
    font-size: 1.3rem;
  }

  /* ADDRESS SECTION */
  .address-card {
    flex-direction: column;
  }

  .new-address-form {
    padding: 1rem;
  }

  .btn-continue {
    width: 100%;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .form-input {
    padding: 0.7rem 0.9rem;
    font-size: 0.95rem;
  }

  /* PAYMENT SECTION */
  .payment-method-card {
    flex-direction: column;
    text-align: center;
  }

  .payment-method-info {
    order: 2;
  }

  .payment-radio {
    order: 1;
  }

  .card-form-wrapper {
    padding: 1rem;
  }

  .security-badge {
    font-size: 0.9rem;
    padding: 0.8rem;
  }

  /* CONFIRMATION SECTION */
  .order-summary-box,
  .email-confirmation-box,
  .terms-box {
    padding: 1rem;
  }

  .confirmation-section-modern {
    margin: 0.5rem;
  }

  .total-row {
    font-size: 0.9rem;
  }

  .total-final {
    font-size: 1.1rem;
  }

  .confirmation-product {
    padding: 0.8rem;
  }

  .confirmation-product img {
    width: 70px;
    height: 70px;
  }

  .confirmation-product-name {
    font-size: 0.9rem;
  }

  .confirmation-product-meta {
    font-size: 0.8rem;
  }

  .order-summary-box h3 {
    font-size: 1.1rem;
    padding-bottom: 0.4rem;
  }

  .checkbox-label {
    font-size: 0.9rem;
  }

  .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
  }
}

/* ───────────────────────────────────────────────────────────
   EXTRA SMALL (320px and down)
   ─────────────────────────────────────────────────────────── */
@media (max-width: 320px) {
  
  /* PHASE ROW */
  .phase-row {
    padding: 0.8rem;
  }

  .phase-circle {
    width: 40px;
    height: 40px;
  }

  .phase-number {
    font-size: 1rem;
  }

  .phase-label h3 {
    font-size: 0.9rem;
  }

  .phase-label p {
    font-size: 0.7rem;
  }

  .summary-box {
    padding: 0.6rem;
  }

  .summary-box p {
    font-size: 0.85rem;
  }

  /* GENERAL */
  .section-header h2 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  /* ADDRESS SECTION */
  .btn-add-address {
    font-size: 0.9rem;
    padding: 0.8rem;
    gap: 0.3rem;
  }

  .plus-icon {
    font-size: 1.1rem;
  }

  .address-name {
    font-size: 1rem;
  }

  .address-detail {
    font-size: 0.9rem;
  }

  .new-address-form {
    padding: 0.8rem;
  }

  .new-address-form h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  /* STEP INDICATOR */
  .step-connector {
    display: none;
  }

  .step-indicator {
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .step-label {
    font-size: 0.8rem;
  }

  /* FORM */
  .form-input {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }

  .form-group label {
    font-size: 0.8rem;
  }

  .error-msg.show {
    font-size: 0.75rem;
  }

  .btn-save,
  .btn-cancel {
    padding: 0.65rem 1.2rem;
    font-size: 0.9rem;
    min-width: 130px;
  }

  /* PAYMENT SECTION */
  .payment-method-card {
    padding: 1.2rem;
    gap: 0.8rem;
  }

  .payment-method-title {
    font-size: 1rem;
  }

  .payment-method-desc {
    font-size: 0.8rem;
  }

  .payment-icon {
    font-size: 1.8rem;
  }

  .card-form-wrapper {
    padding: 0.8rem;
  }

  .form-row {
    gap: 0.8rem;
  }

  /* CONFIRMATION SECTION */
  .confirmation-product {
    gap: 0.8rem;
  }

  .confirmation-product img {
    width: 60px;
    height: 60px;
  }

  .confirmation-product-name {
    font-size: 0.85rem;
  }

  .confirmation-product-meta {
    font-size: 0.75rem;
  }

  .order-summary-box h3 {
    font-size: 1rem;
  }

  .info-card-header h4 {
    font-size: 0.95rem;
  }

  .info-card-content p {
    font-size: 0.9rem;
  }

  .email-confirmation-box h4 {
    font-size: 0.95rem;
  }

  .btn-back,
  .btn-continue,
  .btn-place-order {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* ───────────────────────────────────────────────────────────
   LANDSCAPE MODE (phones in landscape)
   ─────────────────────────────────────────────────────────── */
@media (max-height: 500px) and (orientation: landscape) {
  
  .phase-row {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .phase-circle {
    width: 40px;
    height: 40px;
  }

  .phase-number {
    font-size: 1.1rem;
  }

  .phase-label h3 {
    font-size: 0.9rem;
  }

  .phase-label p {
    font-size: 0.7rem;
  }

  .phase-connector {
    height: 50px;
  }

  .step-indicator {
    margin-bottom: 1.5rem;
  }

  .section-header {
    margin-bottom: 1rem;
  }

  .section-header h2 {
    font-size: 1.3rem;
  }

  .form-grid {
    gap: 0.8rem;
  }

  .form-actions,
  .payment-actions,
  .confirmation-actions {
    gap: 0.8rem;
  }

  .new-address-form,
  .card-form-wrapper,
  .order-summary-box {
    padding: 1rem;
    margin-bottom: 1rem;
  }
}

/* ───────────────────────────────────────────────────────────
   PRINT STYLES
   ─────────────────────────────────────────────────────────── */
@media print {
  
  .phase-row,
  .step-indicator,
  .btn-add-address,
  .form-actions,
  .payment-actions,
  .confirmation-actions {
    display: none;
  }

  .address-section-modern,
  .payment-section-modern,
  .confirmation-section-modern {
    max-width: 100%;
    margin: 0;
  }

  .address-card,
  .payment-method-card,
  .info-card {
    border: 1px solid #000;
    page-break-inside: avoid;
  }

  .order-summary-box {
    page-break-inside: avoid;
  }
}

/* ───────────────────────────────────────────────────────────
   HIGH DPI SCREENS (Retina displays)
   ─────────────────────────────────────────────────────────── */
@media (min-resolution: 2dppx) {
  
  .address-card,
  .payment-method-card,
  .info-card,
  .btn-add-address,
  .phase-row {
    border-width: 1px;
  }

  .confirmation-product img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* ───────────────────────────────────────────────────────────
   DARK MODE (prefers-color-scheme)
   ─────────────────────────────────────────────────────────── */


/* ───────────────────────────────────────────────────────────
   REDUCED MOTION (accessibility)
   ─────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========f========================================================Media Query for Medium Screens============================================================= */
@media screen and (min-width: 650px) and (max-width: 1350px) {
  .container {
    flex-direction: column;
    margin-top: 6rem;
  }

  .border{
    display:none;
  }

  .shoppingCart {
    width: 100%;
    margin-bottom: 20px;
  }

  .orderSummary {
    width: 100%;
  }
  

  .table th, .table td {
    padding: 4px;
    
  }

  .giftCards button, .discountCode button {
    padding: 10px;
    font-size: 12px;
    min-width: 120px;
  }

  .orderSummary h2 {
    font-size: 16px;
  }

  .orderSummary select, .shippingOptions input {
    padding: 8px;
    font-size: 12px;
  }

  .orderSummary button {
    font-size: 12px;
    padding: 10px 0;
  }

  .proceed_section span {
    font-size: 10px;
  }

  .totalPrice p {
    font-size: 14px;
  }
  .navBarSpace{
    height: 62px;
  }
}

/* ==================================================================Media Query for Mobile Screens============================================================= */
@media screen and (max-width: 716px) {
    
  .cart-area{
    padding: 1rem 2rem;
  }


  .container {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 2rem;
    margin-top: 6rem;
  }

  .shoppingCart, .orderSummary {
    width: 100%;
    padding: 15px;
  }

  .shoppingCart h1 {
    font-size: 18px;
  }

     .size{
      display: none;
     }

  .cant{
      display: none;
     }

  .table th, .table td {
    
    padding: 3px;
    gap: 5px;
  }

  .imageTitle {
    display: block;
    text-align: center;
  }

  .imageTitle img {
    margin-bottom: 10px;
  }

  .price, .subtotal {
    text-align: left;
    padding-left: 10px;
  }

  .qty input {
    width: 40px;
  }

  .giftOptions h3, .giftCardsWrapper h3, .discountCodeWrapper h3 {
    font-size: 14px;
  }

  .giftOptions, .giftCards, .discountCode {
    margin-bottom: 10px;
  }

  .giftCards, .discountCode {
    flex-direction: column;
    width: 100%;
  }

  .giftCards input, .discountCode input {
    padding: 8px;
    font-size: 12px;
    width: 100%;
  }

  .giftCards button, .discountCode button {
    font-size: 12px;
    padding: 10px;
    margin-top: 10px;
    width: 100%;
  }

  .orderSummary h2 {
    font-size: 16px;
    text-align: center;
  }

  .shippingOptions {
    flex-direction: column;
  }

  .shippingOptions label, .shippingOptions select, .shippingOptions input {
    font-size: 12px;
  }

  .flatRate, .bestWay {
    font-size: 12px;
  }

  .totalPrice {
    font-size: 14px;
    gap: 5px;
  }

  .totalPrice p {
    font-size: 14px;
  }

  .orderSummary button {
    font-size: 12px;
    padding: 12px;
  }

  .proceed_section span {
    font-size: 10px;
  }

  .orderSummary .amount_wrapper {
    font-size: 12px;
  }
  .subtotal{
    display: none;
  }
  .imageTitle{
    display: flex;
  }
  .imageTitle img{
    width: 80px;
    vertical-align: middle;
    margin-right: 0px
  }
  .hide {
    display: none;
  }
  .navBarSpace{
    height: 62px;
  }

  .shippingContainer{
    font-family: var(--Mulish);
    display: flex;
    height: 120px;
    width: 100%;
    background: #F6F5F0;
    text-align: center;
    justify-content: space-evenly;
    align-items: center;
  }
  .shippingContainer p{
    color: #626262;
    font-weight: 400;
    font-size: 10px;
  }
  .shippingContainer img{
    width: 35px;

  }}

  @media screen and (max-width: 414px){
  
    .table tbody {
      display: flex;
      flex-direction: column;
    }
  }
  
/* Footer */

.footer {
  height: auto;
  width: 100%;
  padding: 2rem;
  margin: 0 auto;
  background: #091430  !important;
  background-image: none !important;
  background-size: auto !important;
  background-repeat: no-repeat !important;
  position: relative;
}

.footer-content {
  display: flex;
  padding: 1rem;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
  width: 90%;
  flex-wrap: wrap;
}

.logo {
  color: #fff;
  font-size: 1.4rem;
  font-family: 'Audiowide', sans-serif;
  font-weight: 400;
  min-width: 150px;
  padding: 2rem 1rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  width: auto;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
  min-width: 150px;
}

.footer-title {
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #fff;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}

.footer-a {
  font-size: 0.8rem;
  font-weight: 400;
  color: #fff;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s ease;
}

.footer-a:hover {
  color: #74c0fc;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 90%;
  display: flex;
  padding: 1rem;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
}

.copyright {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  min-width: 200px;
}

.copyright p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #7a7a7a;
  margin: 0;
}

.design-credit a {
  color: #74c0fc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.design-credit a:hover {
  color: #ffffff;
}

.legal-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  flex: 1;
  min-width: 200px;
}

.legal-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #7a7a7a;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.legal-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #74c0fc;
  transition: width 0.3s ease;
}

.legal-link:hover {
  color: #ffffff;
}

.legal-link:hover::after {
  width: 100%;
}

/* MEDIA QUERIES */

/* Tablet - 768px și mai mic */
@media (max-width: 814px) {
  .footer {
    padding: 2rem 1rem;

  }

  .footer-content {
    width: 95%;
    padding: 1rem;
    gap: 1.5rem;
    
  }

  .footer-column {
    min-width: 120px;
    gap: 1.5rem;
  }

  .logo {
    font-size: 1.2rem;
    min-width: 120px;
  }

  .footer-title {
    font-size: 0.85rem;
  }

  .footer-a {
    font-size: 0.75rem;
  }

  .footer-bottom {
    width: 95%;
    padding: 0.5rem;
    gap: 1rem;
  }



  .footer-bottom-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 0 auto;
    text-align: center;
  }

  .copyright {
    min-width: 100%;
  
  }

  .legal-links {
    flex-direction: column;
    gap: 0.8rem;
  }

  .legal-link {
    font-size: 0.75rem;
  }
}

/* Mobile - 480px și mai mic */
@media (max-width: 625px) {
  .footer {
    padding: 2rem;
    overflow-x: hidden;
  }

  .footer-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin: 0;
  }

  .logo {
    font-size: 1rem;
    text-align: center;
    width: 100%;
    margin: 0;
  }
/* 
  .footer-column {
    width: 100%;

    align-items: center;
    justify-content: center;
    text-align: center;
  }

   .footer-list {
    align-items: center;
    justify-content: center;
    width: 100%;
  }  */

  .footer-title {
    font-size: 0.8rem;
  }

  .footer-a {
    font-size: 0.7rem;
  }

  .footer-bottom {
    width: 100%;
    max-width: 100%;
    padding: 0;
    gap: 1rem;
    margin: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .copyright {
    min-width: 100%;
    align-items: center;
    text-align: center;
  }

  .copyright p {
    font-size: 0.8rem;
  }

  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
    min-width: 100%;
    align-items: center;
  }

  .legal-link {
    font-size: 0.7rem;
  }

  .socials-footer{
    display:flex;
    align-items: center;
    justify-content: center;
    margin:0 auto;
    padding:1rem;
  }

  .circle {
    display:flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    height: 40px;
    width: 40px;
    margin: 0 5px;
    background: #fff;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  }

  /* REMOVE BORDERS */
  .border {
    display: none;
  }

  .checkout-box h1 {
    border-bottom: none;
  }

  .price-box {
    border-bottom: 1px solid #ddd;
  }
}

@media (max-width: 550px){
  .footer{
    width: 100vw;
  }
 .footer-content{
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  
 }


   .footer-column {
    width: 100%;
    padding: 1rem;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
  }

  
  .footer-title {
    font-size: 1rem;
  }

  .footer-a {
    font-size: 0.rem;
  }
}