.gift-card-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #000000;
  position: relative;
  overflow: hidden;
}

.gift-card-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(0,0,0,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(0,0,0,0.02)"/><circle cx="25" cy="75" r="1" fill="rgba(0,0,0,0.02)"/><circle cx="75" cy="25" r="1" fill="rgba(0,0,0,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.gift-card-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.gift-card-text {
  order: 1;
}

.gift-card-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.title-highlight {
  display: block;
  font-size: 1.5rem;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.title-main {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #000000;
}

.title-decoration {
  width: 80px;
  height: 4px;
  background: #000000;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.gift-card-description {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 300;
  opacity: 0.95;
}

.gift-card-features {
  margin-bottom: 3rem;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: translateX(5px);
}

.feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #000000;
}

.feature-text {
  font-size: 1rem;
  font-weight: 500;
}

.gift-card-cta {
  text-align: left;
}

.btn-gift-card {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3rem;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-gift-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.btn-gift-card:hover::before {
  left: 100%;
}

.btn-gift-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  color: #333333;
}

.btn-gift-card .btn-icon {
  width: 24px;
  height: 24px;
}

.btn-gift-card .btn-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-gift-card:hover .btn-arrow {
  transform: translateX(3px);
}

.gift-card-visual {
  order: 2;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-container {
  position: relative;
}

.gift-card-mock {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  max-width: 100%;
}

.card-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.card-bg-image {
  width: 100%;
  height: auto;
  display: block;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.card-content-mock {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
}

.card-header {
  display: flex;
  justify-content: flex-start;
}

.card-logo {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
}

.card-body {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-title-mock {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-subtitle-mock {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 300;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-value {
  font-size: 1.5rem;
  font-weight: 700;
}

.card-code {
  font-size: 0.75rem;
  opacity: 0.8;
  font-family: 'Courier New', monospace;
}

.card-decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.decorative-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.circle-1 {
  width: 80px;
  height: 80px;
  top: -40px;
  right: -40px;
}

.circle-2 {
  width: 60px;
  height: 60px;
  bottom: -30px;
  left: -30px;
}

.circle-3 {
  width: 40px;
  height: 40px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.card-shadow {
  position: absolute;
  top: 20px;
  left: 10px;
  right: -10px;
  bottom: -20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  filter: blur(20px);
  z-index: -1;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  color: rgba(255, 255, 255, 0.3);
  animation: float 6s ease-in-out infinite;
}

.floating-element svg {
  width: 20px;
  height: 20px;
}

.element-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.element-2 {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.element-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@media (max-width: 767px) {
  .gift-card-section {
    padding: 3rem 0;
  }

  .gift-card-content {
    gap: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .gift-card-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .gift-card-title {
    font-size: 2rem;
    text-align: center;
  }

  .title-highlight {
    font-size: 1.25rem;
  }

  .title-main {
    font-size: 2.5rem;
  }

  .title-decoration {
    margin-left: auto;
    margin-right: auto;
  }

  .gift-card-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
  }

  .gift-card-cta {
    text-align: center;
  }

  .gift-card-visual {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .card-container {
    display: flex;
    justify-content: center;
  }

  .gift-card-features {
    margin-bottom: 2rem;
  }

  .feature-item {
    padding: 0.75rem;
  }

  .feature-text {
    font-size: 0.95rem;
  }

  .btn-gift-card {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
  }

  .gift-card-mock {
    max-width: 90%;
  }

  .card-content-mock {
    padding: 1.25rem;
  }

  .card-logo {
    height: 25px;
  }

  .card-title-mock {
    font-size: 1.25rem;
  }

  .card-subtitle-mock {
    font-size: 0.8rem;
  }

  .card-value {
    font-size: 1.25rem;
  }

  .floating-element svg {
    width: 16px;
    height: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .gift-card-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .gift-card-text {
    order: 1;
  }

  .gift-card-visual {
    order: 2;
  }

  .gift-card-title {
    font-size: 2.25rem;
  }

  .title-main {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .gift-card-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .gift-card-text {
    order: 1;
  }

  .gift-card-visual {
    order: 2;
  }

  .gift-card-title {
    font-size: 2.75rem;
  }

  .title-main {
    font-size: 3.5rem;
  }

  .gift-card-description {
    font-size: 1.3rem;
  }

  .feature-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .feature-item {
    padding: 1.25rem;
  }

  .feature-text {
    font-size: 1.05rem;
  }

  .gift-card-mock {
    max-width: 500px;
  }

  .card-content-mock {
    padding: 2rem;
  }

  .card-logo {
    height: 35px;
  }

  .card-title-mock {
    font-size: 1.75rem;
  }

  .card-subtitle-mock {
    font-size: 1rem;
  }

  .card-value {
    font-size: 1.75rem;
  }

  .floating-element svg {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 1200px) {
  .gift-card-section {
    padding: 6rem 0;
  }

  .gift-card-title {
    font-size: 3rem;
  }

  .title-main {
    font-size: 4rem;
  }

  .gift-card-description {
    font-size: 1.4rem;
  }
}
