
@font-face {
  font-family: 'Vazirmatn';
  src: url('/static/fonts/Vazirmatn-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0e0e0e;
    /* padding: 1.5rem 3rem; */
    padding: 10px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid #444;
    top: 0;
    z-index: 1000;
    direction: rtl;
     position: sticky;
}

.header-logo h1 {
  font-size: 1.8rem;
  color: #c68600;
  margin: 0;
}

.header-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.header-nav li a {
  text-decoration: none;
  font-weight: bold;
  color: #bbb;
  transition: color 0.3s;
}

.header-nav li a:hover {
  color: #f3d27a;
}

.header-login .login-btn {
  background-color: #e5b84a;
  color: black;
  border: none;
  padding: 0.2rem 1.2rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  font-family: 'Vazirmatn';
  text-decoration: none;
}

.header-login .login-btn:hover {
  background-color: #ffa000;
}


.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}



header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    border-bottom: 1px solid #444;
    background-color: #0e0e0e;
    position: sticky;
    top: 0;
    z-index: 1000;
    direction: ltr;
}
header h1 {
    color: #e5b84a;
    font-size: 2.5rem;
    letter-spacing: 3px;
    font-weight: 900;
    cursor: default;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}
nav ul li {
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}
nav ul li:hover {
    color: #e5b84a;
}


.hero {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    gap: 2rem;
}
.hero-text {
    max-width: 600px;
    text-align: center;
    width: 50%;
}
.hero-text h2 {
    font-size: 2rem;
    color: #e5b84a;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-align: right;
}
.hero-text p {
    font-size: 1.2rem;
    color: #bbb;
    margin-bottom: 2rem;
    line-height: 1.5;
}
.btn-primary {
    background: #e5b84a;
    color: #1a1a1a;
    padding: 1rem 3rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 0 10px #e5b84aaa;
    font-family: 'Vazirmatn';
}
.btn-primary:hover {
    background: #d4a83d;
    box-shadow: 0 0 20px #d4a83daa;
}
.hero img {
    max-width: 350px;
    border-radius: 20px;
    box-shadow: 0 0 25px #e5b84a99;
    transition: transform 0.4s ease;
}
.hero img:hover {
    transform: scale(1.05);
}


.products {
    padding: 4rem 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 2.5rem;
    background-color: #181818;
    border-top: 2px solid #e5b84a;
    border-bottom: 2px solid #e5b84a;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.product-card {
    background: #222;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px #000000cc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 35px #e5b84aee;
}
.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 3px solid #e5b84a;
    transition: transform 0.3s ease;
}
.product-card img:hover {
    transform: scale(1.1);
}
.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #f3d27a;
    text-align: center;
}
.product-info p {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e5b84a;
    margin-bottom: 1rem;
}


.detail {
    padding: 4rem 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 2.5rem;
    background-color: #181818;
 
    border-bottom: 2px solid #e5b84a;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.detail-card {
    background: #222;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px #000000cc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 35px #e5b84aee;
}
.detail-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 3px solid #e5b84a;
    transition: transform 0.3s ease;
}
.detail-card img:hover {
    transform: scale(1.1);
}
.detail-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.detail-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #f3d27a;
    text-align: center;
}
.detail-info p {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e5b84a;
    margin-bottom: 1rem;
}


.btn-buy {
    background: transparent;
    border: 2px solid #e5b84a;
    color: #e5b84a;
    padding: 0.6rem 0;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}
.btn-buy:hover {
    background: #e5b84a;
    color: #1a1a1a;
}

footer {
    text-align: center;
    padding: 1.5rem;
    color: #777;
    font-size: 0.9rem;
    margin-top: auto;
    border-top: 1px solid #444;
}

.tab-box {
  background-color: #1e1e1e;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 0 25px #e5b84a55;
  max-width: 500px;
  width: 100%;
  animation: fadeIn 0.7s ease;
}

.tab-header {
  display: flex;
  justify-content: space-around;
  margin-bottom: 2rem;
  border-bottom: 2px solid #444;
}

.tab-btn {
  flex: 1;
  background: none;
  border: none;
  padding: 1rem;
  font-size: 1.2rem;
  color: #aaa;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 3px solid transparent;
  font-family: 'Vazirmatn';

}

.tab-btn:hover {
  color: #aaa;
}

.tab-btn.active {
  color: #e5b84a;
  border-bottom: 3px solid #e5b84a;
  font-family: 'Vazirmatn';

}

.tab-btn:focus {

  outline: none;
  box-shadow: none;
}

.tab-content {
  width: 100%;
}

.tab-form {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  animation: fadeIn 0.5s ease;
}

.tab-form.active {
  display: flex;
}

.form-group label {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #ccc;
  display: block;
}

.input-select {
  display: flex;
  gap: 0.5rem;
}

.input-select input,
.input-select select {
  padding: 0.7rem 1rem;
  border: 1px solid #333;
  border-radius: 10px;
  background-color: #2a2a2a;
  color: #eee;
  flex: 1;
    font-family: 'Vazirmatn';

}

.submit-btn {
  background-color: rgb(243, 210, 122);
  color: #1e1e1e;
  padding: 1rem;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  margin-top: 1rem;
  font-family: 'Vazirmatn';
}

.submit-btn:hover {
  background-color: #d4a63a;
  box-shadow: 0 0 15px #e5b84a88;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonials {
  background: linear-gradient(to right, #181818, #181818);
   border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 2px solid #e5b84a;
}

.testimonials h2 {
  font-size: 26px;
  margin-bottom: 40px;
  color: white;
  font-weight: bold;
  position: relative;
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: #222;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.testimonial-card img {
  width: 25%;
  height: 60%;
  border-radius: 2%;
  object-fit: cover;
  border: 3px solid #FFD700;
  margin-bottom: 15px;
}

.testimonial-card h3 {
  font-size: 18px;
  color: white;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 14px;
  color: #f3d27a;
  line-height: 1.8;
}

.icon-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: white;
  font-size: 18px;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.5);
}


.faq {
  background: #181818;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 2rem;
  margin-top: 2rem;
  border-bottom: 2px solid #e5b84a;
  text-align: center;
}

.faq h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #f3d27a;
  display: inline-block;
  margin-bottom: 40px;
}

.faq-item {
  margin: 1rem 0;
  text-align: center;
      display: grid
;
    place-items: center;
}

.faq-question {
  background-color: #f3d27a;
  color: #181818;
  padding: 0.7rem 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 40%;
  text-align: right;
  font-weight: bold;
  font-family: 'Vazirmatn';
}

.faq-answer {
  display: none;
  background-color: #fff4d6;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 0.5rem;
  line-height: 1.7;
  color: black;
  border-right: 4px solid #ffb300;
  width: 40%;

}

 .blog-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    background-size: cover;      
    background-position: center; 
    background-repeat: no-repeat;
    border-radius: 20px;
    overflow: hidden;
    color: white; 
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 70%;
    right: 15%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  border-bottom: 2px solid #f3d27a;
  background: linear-gradient(45deg, #fff, #fff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: inline-block;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { filter: drop-shadow(0 0 20px rgba(255,255,255,0.3)); }
    to { filter: drop-shadow(0 0 30px rgba(255,255,255,0.6)); }
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
}

.all-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
}

.blog-card {
    
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-height: 400px; 
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e1e1e, #f3d27a, #f3d27a, #1e1e1e);
    background-size: 300% 100%;
    animation: gradientShift 3s ease infinite;
    z-index: 1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.blog-image {
    width: 100%;
    height: 150px;
    position: relative;
    overflow: hidden;
    background-size: cover;   
    background-position: center center; 
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.blog-content {
    padding: 15px 20px;
    position: relative;
    flex:1;
}

.blog-category {
    display: inline-block;
    background: linear-gradient(45deg, #f1f1f1, #f3d27a);
    color: #1e1e1e;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: white;
}

.blog-excerpt {
    color: #f3d27a;
    font-size: 0.9rem; 
    line-height: 1.4; 
    margin-bottom: 10px;
    height: 100px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 30px;
}

.blog-date {
    color: #999;
    font-size: 0.85rem;
}

.blog-card:nth-child(n+4) {
    display: none;
}

body.all_blogs .blog-card {
    display: flex !important;
}

.read-more {
    background: linear-gradient(45deg, #ffffff, #f3d27a);
    color: black;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.read-more:hover::before {
    left: 100%;
}

.read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgb(219 231 56 / 40%);
    color: black;
}

.load-more {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    background: #f3d27a;
    color: #1e1e1e;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.load-more-btn:hover {
    background: #f3d27a;
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-section {
        padding: 60px 15px;
    }
    .detail{
      padding: 4rem 1rem;
    }
    .hero-text{
        width: auto;
    }
}

.loading-animation {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
  background-color: #333;
  color: #fff;
  padding: 2rem 1rem;
  margin-top: 3rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-section h3 {
  color: #f3d27a;
  margin-bottom: 0.5rem;
}

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.social-icons i {
  font-size: 1.5rem;
  margin: 0 0.5rem;
  cursor: pointer;
  transition: color 0.3s;
}

.social-icons i:hover {
  color: #ffb400;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer p {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid #444;
  padding-top: 1rem;
  color: #bbb;
}

#gold-buy-rate{
    text-align: center;
    color:#f3d27a;
}


.quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 4%;
}

.quick-links li {
  margin-bottom: 8px;
}

.quick-links li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.quick-links li a:hover {
  color: #f3d27a;
}

.custom-hr {
  border: none;
  height: 1px;
  background-color: #444;
  margin-top: 2rem;

}

.gold-price-box {
    background: linear-gradient(135deg, #ffd700c9, #ffa50094);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    padding: 25px;
    width: 320px;
    text-align: center;
    color: #333;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse 2s infinite alternate;
}

.gold-price-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.gold-price-box::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: rotate(30deg);
    pointer-events: none;
}

.gold-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.price-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: black;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    margin: 15px 0;
    color: black;
    direction: ltr;
    display: inline-block;
}

.price-change {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-top: 10px;
}

.up {
    background-color: rgba(0, 200, 83, 0.2);
    color: #045500;
}

.down {
    background-color: rgba(255, 53, 71, 0.2);
    color: #aa000f;
}

.last-update {
    font-size: 12px;
    color: rgb(0 0 0 / 80%);
    margin-top: 15px;
}

.wave {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="rgba(255,255,255,0.2)" /><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="rgba(255,255,255,0.3)" /></svg>');
    background-size: cover;
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    }
    100% {
        box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
    }
}

/* Container */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    font-family: 'Vazir', sans-serif;
}

/* Page buttons */
.pagination button {
    background-color: #181818;
    color: #f3d27a;
    border: 2px solid white;
    padding: 0.5rem 0.9rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    min-width: 40px;
    min-height: 40px;
}

/* Hover effect */
.pagination button:hover {
    background: linear-gradient(45deg, #ffffff, #f3d27a);
    color: black;
    border-color: white;
    transform: scale(1.1);
}

/* Active page */
.pagination button.active {
    background: linear-gradient(45deg, #ffffff, #f3d27a);
    color: black;
    border-color: white;
    transform: scale(1.1);
}

/* Ellipsis (dots) */
.pagination .dots {
    color: #999;
    padding: 0 0.5rem;
    user-select: none;
}

/* Responsive */
@media (max-width: 480px) {
    .pagination button {
        padding: 0.4rem 0.7rem;
        min-width: 35px;
        min-height: 35px;
    }
}


@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        padding: 6rem 6rem;
    }
    .hero-text {
        text-align: right;
    }
}

.price-row{
  color:black;
}





/* 
@media (max-width: 768px) {
  
}

@media (max-width: 768px) {
  

} */



@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
  }
  .header-nav.active {
    display: block;
  }
  .header-nav ul {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    background: #3f3f3f;
  }
  .hamburger {
    display: block;
    color: white;
  }
  .faq-question,
  .faq-answer {
    width: 90%;   
    font-size: 0.95rem;
  }
  .testimonial-card img {
        width: auto;  
        height: 200px; 
 }
 .tab-box {
    width: 100%;
    margin: 10px;
  }

  .tab-btn {
    font-size: 14px;
    padding: 8px;
  }

  .tab-content {
    padding: 10px;
  }

  .input-select {
    flex-direction: column;
  }
  .input-select input,
  .input-select select {
    width: 100%;
  }

  .tab-form > div {
    flex-direction: column;
    align-items: flex-start;
  }

  .submit-btn {
    font-size: 14px;
  }

  .hero-text h2 {
    font-size: 18px;
    text-align: center;
  }
  
    .hero-text h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .gold-price-box {
    padding: 10px;
    max-width: 100%;
    border-radius: 8px;
  }

  .price-title {
    font-size: 16px;
  }

  .price-row span {
    font-size: 14px;
  }

  .last-update {
    font-size: 12px;
  }

}

.goldmap{
    width: 80%;
    height: fit-content;
    border-radius: 10px;
    transform: translateY(-8px);
    box-shadow: rgba(255, 215, 0, 0.4) 0px 12px 35px;
    border-width: 3px !important;
    border-style: solid !important;
    border-color: #f3d27a !important;
}

