* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "TCCC-UnityHeadline", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f6f3e4;
  overflow-x: hidden;
}

.wedding-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f6f3e4;
}

.slide-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slide-image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  max-width: 100%;
}

.content-section {
  flex: 0 0 auto;
  background: #f6f3e4;
  padding: 40px 240px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.content-center {
  text-align: center;
  flex: 1;
}
.content-center h2 {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
  letter-spacing: 1px;
  line-height: 1;
}
.content-center p {
  font-size: 16px;
  font-weight: 300;
  color: #000;
  line-height: 1.6;
  letter-spacing: 0.2px;
  text-align: center;
}

.section-kids {
  width: 100%;
  background: #f6f3e4;
  min-height: 756px;
}

.kids-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 100%;
  margin: 0 auto;
  align-items: end;
  padding: 0 10px;
}

.kids-left {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 756px;
}

.kids-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 400px;
}

.kids-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  justify-content: flex-end;
}
.kids-right h2 {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  letter-spacing: 1px;
  line-height: 1;
}
.kids-right p {
  font-size: 16px;
  font-weight: 300;
  color: #000;
  line-height: 1.7;
  letter-spacing: 0.3px;
  padding: 0px 25px;
  margin: 40px 0;
}
.kids-right p:first-of-type {
  margin-bottom: 20px;
}

.products-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 65px 0;
  height: 265px;
  perspective: 1000px;
  position: relative;
}

.product-card-lv1 {
  width: 290px;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  background: #f0f0f0;
  position: absolute;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.product-card-lv1:nth-child(2) {
  transform: translateY(20px) rotateZ(0deg);
  z-index: 21;
}
.product-card-lv1 .product-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.product-card {
  width: 260px;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a1a;
  position: absolute;
  transition: transform 0.3s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}
.product-card:nth-child(1) {
  background: #1a1a1a;
  transform: translateX(60px) translateY(50px) rotateZ(-12deg) rotateY(-8deg);
  z-index: 20;
}
.product-card:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 5;
}
.product-card:nth-child(3) {
  background: #1a1a1a;
  transform: translateX(-60px) translateY(50px) rotateZ(12deg) rotateY(8deg);
  z-index: 20;
}
.product-card:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 5;
}
.product-card .product-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.product-card:nth-child(1) .product-image,
.product-card:nth-child(3) .product-image {
  background: transparent;
}

.section-couple {
  width: 100%;
  background: #f6f3e4;
  min-height: 756px;
}

.couple-wrapper {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 10px;
  max-width: 100%;
  margin: 0 auto;
  align-items: end;
  padding: 40px 0;
}

.couple-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  justify-content: flex-end;
}
.couple-left h2 {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  letter-spacing: 1px;
  line-height: 1;
}
.couple-left p {
  font-size: 16px;
  font-weight: 300;
  color: #000;
  line-height: 1.6;
  letter-spacing: 0.3px;
  padding: 0px 25px;
  margin: 40px 0;
}
.couple-left p:first-of-type {
  margin-bottom: 20px;
}

.couple-right {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 756px;
}

.couple-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 400px;
}

.view-all-lv1 {
  font-size: 12px;
  font-weight: 300;
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  margin: 40px 0;
  border-bottom: 1px solid #999;
  padding-bottom: 8px;
  padding-top: 8px;
  display: block;
}

.section-women {
  width: 100%;
  background: #f6f3e4;
  padding: 40px 20px;
  position: relative;
}

.women-container {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.women-container h2 {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
  letter-spacing: 1px;
  line-height: 1.6;
}
.women-container p {
  font-size: 16px;
  font-weight: 300;
  color: #000;
  line-height: 1.6;
  letter-spacing: 0.2px;
  margin-bottom: 40px;
  padding: 0 240px;
}
.women-container p.view-all {
  margin-bottom: 0;
  margin-top: 40px;
  padding: 0;
  border-bottom: 1px solid #999;
  padding-bottom: 8px;
  padding-top: 8px;
  display: inline-block;
  background: transparent;
  font-size: 16px;
  position: static;
  cursor: pointer;
  z-index: auto;
  text-align: center;
}

.women-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  margin-bottom: 40px;
  max-height: none;
  overflow: visible;
  opacity: 1;
  transition: all 0.3s ease;
  padding: 20px;
}

.carousel-nav {
  width: 40px;
  height: 40px;
  border: none;
  background: #e8e6e2;
  color: #000;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-nav:hover {
  background: #d0ccc6;
}
.carousel-nav.carousel-nav-left {
  left: -20px;
}
.carousel-nav.carousel-nav-right {
  right: -20px;
}

.carousel-images {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex: 1;
  overflow-x: auto;
  padding: 0 20px;
}

.carousel-image {
  width: 309px;
  height: 540px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  display: block;
  flex-shrink: 0;
  max-width: 100%;
}

.section-contact {
  width: 100%;
  background: #f6f3e4;
  padding: 40px 0;
}

.section-contact-popup {
  width: 100%;
  background: #f6f3e4;
  padding: 40px 0;
}

.contact-container {
  max-width: 775px;
  margin: 0 auto;
  text-align: center;
}
.contact-container h2 {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
  letter-spacing: 1px;
  line-height: 1.6;
}
.contact-container p {
  font-size: 13px;
  font-weight: 300;
  color: #000;
  line-height: 1.6;
  letter-spacing: 0.2px;
  margin-bottom: 30px;
  white-space: normal;
}

.contact-form-order {
  width: 370px;
  margin: 0 85px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form-order input[type=text],
.contact-form-order input[type=tel],
.contact-form-order textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-family: inherit;
  font-size: 13px;
  color: #666;
  background: #fff;
  transition: border-color 0.3s ease;
}
.contact-form-order input[type=text]:focus,
.contact-form-order input[type=tel]:focus,
.contact-form-order textarea:focus {
  outline: none;
  border-color: #999;
}
.contact-form-order input[type=text]::-moz-placeholder, .contact-form-order input[type=tel]::-moz-placeholder, .contact-form-order textarea::-moz-placeholder {
  color: #bbb;
}
.contact-form-order input[type=text]::placeholder,
.contact-form-order input[type=tel]::placeholder,
.contact-form-order textarea::placeholder {
  color: #bbb;
}
.contact-form-order textarea {
  resize: vertical;
  font-family: inherit;
}

.contact-form {
  width: 370px;
  margin-left: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form input[type=text],
.contact-form input[type=tel],
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-family: inherit;
  font-size: 13px;
  color: #666;
  background: #fff;
  transition: border-color 0.3s ease;
}
.contact-form input[type=text]:focus,
.contact-form input[type=tel]:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #999;
}
.contact-form input[type=text]::-moz-placeholder, .contact-form input[type=tel]::-moz-placeholder, .contact-form textarea::-moz-placeholder {
  color: #bbb;
}
.contact-form input[type=text]::placeholder,
.contact-form input[type=tel]::placeholder,
.contact-form textarea::placeholder {
  color: #bbb;
}
.contact-form textarea {
  resize: vertical;
  font-family: inherit;
}

.file-upload {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 3px;
  overflow: hidden;
}
.file-upload input[type=file] {
  display: none;
}

.file-upload-content {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0;
}
.file-upload-content label {
  flex: 1;
  padding: 10px 12px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  font-size: 13px;
  color: #999;
  margin: 0;
  border: none;
  border-radius: 0;
}

.btn-choose-file {
  padding: 10px 15px;
  background: #f5f5f5;
  color: #000;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-choose-file:hover {
  background: #eee;
}

.btn-order {
  padding: 12px 30px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}
.btn-order:hover {
  background: #333;
}

.btn-order-popup {
  padding: 12px 30px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}
.btn-order-popup:hover {
  background: #333;
}

@media (max-width: 1200px) {
  .header {
    padding: 30px 40px;
  }
  .content-section {
    padding: 30px 40px;
  }
  .content-wrapper {
    gap: 40px;
  }
  .header-text {
    gap: 30px;
  }
  .sixdo-text {
    font-size: 36px;
  }
  .vietnam-text {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .main-container {
    height: auto;
  }
  .slide-image {
    height: auto;
  }
  .header {
    padding: 20px 20px;
    flex: 0 0 auto;
  }
  .header-text {
    flex-direction: column;
    gap: 15px;
  }
  .vietnam-text {
    font-size: 12px;
    line-height: 1.4;
  }
  .sixdo-text {
    font-size: 28px;
  }
  .slide-container {
    padding: 0 15px;
    min-height: 400px;
  }
  .slide-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
  }
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }
  .nav-left,
  .nav-right {
    display: none;
  }
  .content-center h2 {
    font-size: 22px;
  }
  .content-center p {
    font-size: 14px;
  }
  .content-section {
    padding: 25px 20px;
  }
  .slide-container {
    min-height: unset;
    padding: 0;
  }
  .kids-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0;
  }
  .kids-wrapper .kids-right h2 {
    font-size: 22px;
  }
  .kids-left {
    height: auto;
    min-height: 300px;
  }
  .kids-right p {
    font-size: 14px;
  }
  .kids-right p:first-of-type {
    margin: 0;
  }
  .kids-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-card {
        width: 180px;
        max-width: 350px;
        height: 280px;
  }
  .product-card:nth-child(1) {
    background: #1a1a1a;
    transform: translateX(35px) translateY(40px) rotateZ(-12deg) rotateY(-8deg);
    z-index: 20;
  }
  .product-card:nth-child(3) {
  background: #1a1a1a;
  transform: translateX(-35px) translateY(40px) rotateZ(12deg) rotateY(8deg);
  z-index: 20;
  }
  .product-card-lv1 {
        width: 100%;
        height: 320px;
        max-width: 500px;
  }
  .product-image {
    width: 100%;
    height: 100%;
    display: block;
  }
  .products-gallery {
    height: 320px;
    margin: 0;
  }
  .section-women {
    padding: 30px 10px;
  }
  .women-container h2 {
    font-size: 22px;
  }
  .women-container p {
    font-size: 14px;
    padding: 0;
  }
  .women-carousel {
    grid-template-columns: repeat(1, 1fr);
    padding: 0;
  }
  .carousel-nav {
    display: none;
  }
  .carousel-images {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    padding: 0 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  .carousel-images .carousel-image {
    width: calc(50% - 6px);
    height: auto;
    max-width: 100%;
    display: block;
    aspect-ratio: 3/5;
    flex-shrink: 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .couple-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px 0;
  }
  .couple-wrapper .couple-left h2 {
    font-size: 22px;
  }
  .couple-wrapper .couple-left h2 p {
    font-size: 14px;
    padding: 0 15px;
  }
  .couple-left p {
    font-size: 14px;
    margin: 30px 0;
  }
  .couple-left p:first-of-type {
    margin: 0;
  }
  .couple-right {
    height: auto;
    min-height: 300px;
  }
  .couple-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .contact-container h2 {
    font-size: 22px;
  }
  .contact-container p {
    font-size: 14px;
  }
  .contact-form {
    width: 100%;
    margin-left: 0;
  }
  .product-item {
    width: 100%;
  }
  .product-item img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
  }
}
@keyframes slideFromRight {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
.product-image {
  display: block;
  overflow: hidden;
}
.product-image.slide-animate {
  animation: slideFromRight 0.8s ease-in-out forwards;
}

.product-card,
.product-card-lv1 {
  position: relative;
  cursor: pointer;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9;
}

.product-card:hover .product-overlay,
.product-card-lv1:hover .product-overlay {
  opacity: 1;
}

.btn-detail {
  background: #fff;
  color: #000;
  border: none;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.btn-detail:hover {
  background: #f0f0f0;
}
    .container.row-item {
        max-width: 100%;
    }

    .main {
        max-width: 86%;
        display: block;
        margin: 0 auto;
    }

    .women-carousel {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 24px;
    }

    .product-item {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
    }

    .product-item img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        transition: transform .3s ease;
    }

    .product-item:hover img {
        transform: scale(1.05);
    }

    /* Ẩn item */
    .product-item.is-hidden {
        display: none;
    }

    .product-item {
        position: relative;
        cursor: pointer;
    }

    .product-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .45);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: .3s ease;
    }

    .product-item:hover .product-overlay {
        opacity: 1;
    }

    .file-upload-popup {
        display: flex;
        background: #fff;
    }

    /* Button xem thêm */
    .view-all {
        text-align: center;
        cursor: pointer;
        font-weight: 600;
        letter-spacing: 1px;
        color: #111;
        margin-top: 10px;
    }

    .view-all:hover {
        text-decoration: underline;
    }

    /* Responsive */
    @media (max-width: 991px) {
        .women-carousel {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 575px) {
        .women-carousel {
            grid-template-columns: repeat(1, 1fr);
        }
    }

    .order-popup {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 9999;
    }

    .order-popup.active {
        display: block;
    }

    .popup-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .6);
    }

    .popup-content {
        position: relative;
        background: #f6f3e4;
        width: 900px;
        max-width: 95%;
        margin: 5% auto;
        display: flex;
    }

    .popup-left {
        width: 33%;
    }

    .popup-left img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .popup-right {
        width: 67%;
        padding: 30px;
        background: #f6f3e4;
    }

    .popup-close {
        position: absolute;
        top: 10px;
        right: 14px;
        font-size: 28px;
        cursor: pointer;
    }

    @media (max-width: 768px) {
        .main {
            max-width: 100%;
        }

        .popup-content {
            width: 100%;
            max-height: 100vh;
            overflow-y: auto;
            display: flex;
            flex-direction: column !important;
            left: 2%;
            top: 1%;
            margin: 0;
            position: relative;
            
        }

        .popup-close {
            position: absolute;
            top: 5px;
            right: 5px;
            font-size: 40px;
            cursor: pointer;
        }

        .popup-left {
            width: 79%;
            height: auto;
            margin: 0 auto;
        }

        .popup-right {
            width: 79%;
            padding: 0;
            margin: 0 auto;
        }

        .section-contact-popup {
            width: 100%;
            background: #f6f3e4;
            padding: 0;
        }

        .contact-container h2 {
            padding-top: 20px;
            font-size: 22px;
        }

        .contact-form-order {
            width: 100% !important;
            padding: 0 20px;
            margin: 0 auto !important;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .btn-order-popup {
            padding: 12px 30px;
            background: #000;
            color: #fff;
            border: none;
            border-radius: 2px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.3s ease;
            margin: 10px 0;
        }

    }
/*# sourceMappingURL=wedding.css.map */