/* Shipping Policy Page Styles */

/* Shipping Information Section */
.shipping-info-section {
  padding: 80px 40px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
}

.shipping-info-container {
  max-width: 1400px;
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 0;
  border: 2px solid #000;
  border-radius: 300px;
  overflow: hidden;
  background: #ffffff;
}

.shipping-info-header {
  background-color: #ffffff;
  border-right: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.shipping-info-header h2 {
  font-family: "Helvetica", "Arial", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #000;
  text-transform: uppercase;
  writing-mode: horizontal-tb;
  margin: 0;
}

.shipping-info-content {
  background-color: #ffffff;
  padding: 40px 60px;
  display: flex;
  align-items: center;
}

.shipping-info-text {
  width: 100%;
}

.shipping-info-text p {
  font-family: "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #000;
  margin: 0 0 8px 0;
}

.shipping-info-text p:last-child {
  margin-bottom: 0;
}

.shipping-info-text strong {
  font-weight: 700;
}

.shipping-info-text a {
  color: #000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.shipping-info-text a:hover {
  color: #0066cc;
}

.shipping-info-text u {
  text-decoration: underline;
}

/* Responsive Design for Shipping Info */
@media screen and (max-width: 1024px) {
  .shipping-info-container {
    grid-template-columns: 220px 1fr;
    border-radius: 250px;
  }

  .shipping-info-content {
    padding: 30px 40px;
  }

  .shipping-info-text p {
    font-size: 13px;
  }

  .shipping-info-header h2 {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .shipping-info-section {
    padding: 60px 20px;
  }

  .shipping-info-container {
    grid-template-columns: 1fr;
    border-radius: 40px;
  }

  .shipping-info-header {
    border-right: none;
    border-bottom: 2px solid #000;
    padding: 20px;
  }

  .shipping-info-content {
    padding: 30px 25px;
  }

  .shipping-info-text p {
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .shipping-info-section {
    padding: 40px 15px;
  }

  .shipping-info-container {
    border-radius: 30px;
  }

  .shipping-info-content {
    padding: 25px 20px;
  }

  .shipping-info-text p {
    font-size: 12px;
  }

  .shipping-info-header h2 {
    font-size: 13px;
  }
}

/* Content Section */
.shipping-content {
  background-color: #cac5bc;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 80px;
}

.shipping-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* Policy Text */
.shipping-text {
  max-width: 900px;
  margin: 0 auto;
}

.shipping-title {
  font-family: "Cinzel", serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #1a1a1a;
  margin: 0 0 50px 0;
  line-height: 1.2;
  text-align: left;
}

/* Policy Sections */
.policy-section {
  margin-bottom: 30px;
}

.policy-section p {
  font-family: "Crimson Text", serif;
  font-size: 17px;
  line-height: 1.8;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  font-weight: 400;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section strong {
  font-weight: 600;
  color: #1a1a1a;
}

/* Inline Email Link */
.inline-email {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  border-bottom: 1px solid #1a1a1a;
}

.inline-email:hover {
  color: #6a6560;
  border-bottom-color: #6a6560;
}

/* Policy Lists */
.policy-list {
  font-family: "Crimson Text", serif;
  font-size: 17px;
  line-height: 1.8;
  color: #1a1a1a;
  margin: 16px 0 0 0;
  padding-left: 24px;
  list-style-type: disc;
}

.policy-list li {
  margin-bottom: 16px;
  padding-left: 8px;
}

.policy-list li:last-child {
  margin-bottom: 0;
}

.policy-list strong {
  font-weight: 600;
}

/* Responsive Design */
@media screen and (max-width: 1400px) {
  .shipping-content {
    padding: 80px 60px;
  }

  .shipping-title {
    font-size: 44px;
    margin-bottom: 45px;
  }

  .policy-section p,
  .policy-list {
    font-size: 16px;
  }
}

@media screen and (max-width: 1200px) {
  .shipping-content {
    padding: 70px 50px;
  }

  .shipping-title {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .shipping-container {
    max-width: 1000px;
  }

  .shipping-text {
    max-width: 800px;
  }
}

@media screen and (max-width: 1024px) {
  .shipping-content {
    padding: 60px 40px;
    min-height: calc(100vh - 60px);
  }

  .shipping-title {
    font-size: 36px;
    letter-spacing: 1.5px;
    margin-bottom: 35px;
  }

  .shipping-text {
    max-width: 700px;
  }

  .policy-section p,
  .policy-list {
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  .shipping-content {
    padding: 50px 30px;
  }

  .shipping-title {
    font-size: 32px;
    letter-spacing: 1px;
    margin-bottom: 30px;
  }

  .shipping-text {
    max-width: 100%;
  }

  .policy-section {
    margin-bottom: 25px;
  }

  .policy-section p,
  .policy-list {
    font-size: 14px;
    line-height: 1.7;
  }

  .policy-list li {
    margin-bottom: 14px;
  }
}

@media screen and (max-width: 480px) {
  .shipping-content {
    padding: 40px 24px;
  }

  .shipping-title {
    font-size: 28px;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
  }

  .policy-section {
    margin-bottom: 20px;
  }

  .policy-section p,
  .policy-list {
    font-size: 13px;
    line-height: 1.6;
  }

  .policy-list {
    padding-left: 20px;
  }

  .policy-list li {
    margin-bottom: 12px;
  }
}

/* Animation for page load */
.shipping-content {
  animation: fadeIn 0.8s ease-out;
}

.shipping-title {
  animation: fadeInDown 0.8s ease-out 0.1s both;
}

.policy-section {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.policy-section:nth-child(2) {
  animation-delay: 0.3s;
}

.policy-section:nth-child(3) {
  animation-delay: 0.4s;
}

.policy-section:nth-child(4) {
  animation-delay: 0.5s;
}

.policy-section:nth-child(5) {
  animation-delay: 0.6s;
}

.policy-section:nth-child(6) {
  animation-delay: 0.7s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Selection styling */
::selection {
  background-color: #8a8175;
  color: #ffffff;
}

::-moz-selection {
  background-color: #8a8175;
  color: #ffffff;
}

/* Print styles */
@media print {
  .shipping-content {
    padding: 20px;
    background-color: white;
  }

  .policy-section p,
  .policy-list {
    color: black;
  }

  .inline-email {
    color: black;
    border-bottom: none;
    text-decoration: underline;
  }
}