body {
    background-color: #000;
    color: #fff;
    font-family: 'Familjen Grotesk', sans-serif;
}

img {
    width: 100%;
    display: block;
}

.image-section {
    height: 125vh;
}

.product-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    height: auto;
    padding: 5%;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.product-wrapper {
    display: flex;
    background-color: #000;
    border-radius: 5px;
    overflow: hidden;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.product-left {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.image-container {
    margin-bottom: 10px;
}

.image-container img {
    min-height: 400px;
}

.thumbnails {
    display: flex;
    gap: 10px;
    overflow: hidden;
}

.thumbnails img {
    cursor: pointer;
    width: 100px;
    opacity: 0.6;
}

.thumbnails img:hover {
    opacity: 1;
}

.product-right {
    padding: 20px;
}

.product-info h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-info h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-info p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: justify;
    text-transform: none;
}

.price-info {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.price-option {
    flex: 1;
    text-align: center;
    margin: 20px 10px;
}

.price-option h4 {
    font-size: 24px;
}

.separator {
    width: 1px;
    height: 90px;
    background-color: #fff;
    margin: 0 10px;
}

.product-info-buttons {
    margin-top: 10px;
}

.btn-group {
    margin-top: 10px;
}

/*.btn_line a {
    width: 30%;
   height: 30%;

}*/

.btn_line {
    display: flex;
    justify-content: space-between;
    margin: 3px;
   
}

.product-info-buttons {
  display: flex;
  justify-content: center;
}

.btn_main_primary a {
    text-decoration: none;
    color: #ff9f00;
}

.btn_main_primary {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    min-width: 130px;
    padding: 15px 50px;
    margin-top: 10px;
    border: 2px solid #ff9f00;
    color: #ff9f00;
    text-transform: uppercase;
    font-weight: bold;
    overflow: hidden;
    z-index: 2;
}

.btn_main_primary:hover span {
    color: #000;
}

.btn_main_primary .hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ff9f00;
    color: #000;
    z-index: -1;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn_main_primary:hover .hover {
    transform: translateY(0);   
}

.btn_main_secondary {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    min-width: 130px;
    padding: 15px 50px;
    margin-top: 10px;
    border: 2px solid #ff9f00;
    text-transform: uppercase;
    font-weight: bold;
    overflow: hidden;
    z-index: 2;
    background-color: #ff9f00;
    color: #000;
    transition: color 0.6s ease-in-out, background-color 0.6s ease-in-out;
}

.btn_main_secondary:hover span {
    color: #ff9f00;
}

.btn_main_secondary .hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    color: #ff9f00;
    z-index: -1;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn_main_secondary:hover .hover {
    transform: translateY(0);
}

.additional-info {
    margin-top: 20px;
}

.additional-info a {
    display: block;
    font-size: 14px;
    text-decoration: underline;
    text-transform: none;
    color: white;
    margin-bottom: 10px;
    cursor: pointer;
}

.additional-info a:hover {
    color: #e5e5e5;
}

.arrow-container {
    position: absolute;
    top: 100%;
    right: 48%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow-down {
    width: 40px;
    height: 40px;
    fill: #ff9f00;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Shop Pricing section */

.shop-pricing-section {
    background-color: #000;
    color: #cccccc;
    font-family: 'Familjen Grotesk', sans-serif;
    width: 100%;
    height: auto;
    border-radius: 7px;
    padding: 5%;
    margin: 5% auto;
}

.shop-pricing .shop-pricing-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.shop-pricing .shop-pricing-column {
    padding: 5%;
    flex: 1;
    max-width: 400px;
}

.shop-pricing .shop-pricing-column:not(:last-child) {
    border-right: 1px solid #fff;
}

.shop-pricing h2 {
    font-weight: 600;
    font-size: 20px;
    text-transform: none;
}

.shop-pricing h4 {
    font-weight: 400;
    margin: 0;
    text-transform: none;
}

.shop-pricing span {
    font-weight: 200;
    text-transform: none;
}

.shop-pricing ul {
    padding-inline-start: 7%;
    margin: 20px 0;
    list-style-type: none;
}

.shop-pricing ul li {
    font-weight: 200;
    text-transform: lowercase;
}

.shop-pricing .btn {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    min-width: 130px;
    padding: 15px 50px;
    margin-top: 10px;
    border: 2px solid #fff;
    text-transform: uppercase;
    font-weight: bold;
    overflow: hidden;
    z-index: 2;
    color: #fff;
    font-size: 16px;
    transition: color 0.3s;
}

.shop-pricing .btn:hover span {
    color: #000;
}

.shop-pricing .btn .hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    color: #000;
    z-index: -1;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.shop-pricing .btn:hover .hover {
    transform: translateY(0);  
}

.shop-pricing .btn span {
    position: relative;
    z-index: 1;
}

.shop-pricing-section a {
    text-decoration: none;
}

.product-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.option-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
}

select {
    padding: 10px;
    background-color: #1e1e1e;
    color: #fff;
    border: 1px solid #ff9f00;
    border-radius: 5px;
    width: 100%;
}

/* Media Queries */

/* For max width 960px */
@media (max-width: 1024px) {
    .product-wrapper {
        flex-direction: column;
    }

    .product-content {
        grid-template-columns: 1fr;
    }

    .product-left,
    .product-right {
        padding: 10px;
    }

    .separator {
        width: 1px;
        height: 90px;
        background-color: #fff;
        margin: 0 10px;
    }

    .shop-pricing-column {
        max-width: 300px;
        flex: 1 1 calc(50% - 20px);
    }

}

@media screen and (1024px < width < 1600px) {
    .product-content {
        max-width: 1024px;
    }

    .product-left, .product-right {
        padding: 0;
    }
}
.shop-btn {
    padding-inline: 12px !important;
}
/* For max width 600px */
@media (max-width: 600px) {
    .product-left,
    .product-right {
        padding: 5px;
    }

    .product-info h2 {
        font-size: 20px;
    }

    .product-info h3 {
        font-size: 16px;
    }

    .product-info p {
        font-size: 14px;
    }

    .price-option h4 {
        font-size: 20px;
    }

    .btn_line {
        flex-direction: column;
        width: 45%;
        margin: 0 auto;
    }

    .separator {
        width: 1px;
        height: 90px;
        background-color: #fff;
        margin: 0 10px;
    }

    .shop-pricing-column {
        max-width: calc(50% - 20px);
        flex: 1 1 calc(50% - 20px);
    }
}

/* For max width 390px */
@media (max-width: 390px) {
    .additional-items-block {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .additional-items-block-content {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .shop-pricing-column {
        max-width: 100%;
        flex: 1 1 100%;
        box-shadow: none; 
        margin-bottom: 20px; 
    }
}

/* For min width 391px and max width 600px */
@media (min-width: 391px) and (max-width: 600px) {
    .additional-items-block-content {
        width: 48%;
        max-width: 48%;
    }

    .shop-pricing-column {
        max-width: calc(50% - 20px);
    }
}

/* For min width 601px and max width 960px */
@media (min-width: 601px) and (max-width: 960px) {
    .additional-items-block-content {
        width: 23%;
        max-width: 23%;
    }
}

/* Responsive Button Styles */
@media (max-width: 960px) {
    .btn_main {
        min-width: 80px; 
        padding: 8px 16px; 
    }
    .shop-pricing-column {
        border-right: none !important;
    }

    .shop-pricing-row {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .btn_main {
        min-width: 70px; 
        padding: 6px 12px; 
    }
    .product-left, .product-right {
        max-width: 82%;
    }
    .thumbnails {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .btn_line {
        flex-direction: column; 
        align-items: center; 
    }

    .btn_main {
        width: 100%; 
        max-width: 300px; 
        padding: 6px 12px; 
    }
}

@media (max-width: 390px) {
    .btn_main {
        padding: 4px 8px; 
        max-width: 250px; 
    }
}

.h-100 {
    height: 100px;
}

.shop-content {
    min-height: 100vh;
    height: auto;

}













/*iiiiiiiiiiiiiiiii*/

body {
    background-color: #000;
    color: #fff;
    font-family: 'Familjen Grotesk', sans-serif;
}

img {
    width: 100%;
    display: block;
}

.product-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    height: auto;
    padding: 5%;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.product-wrapper {
    display: flex;
    background-color: #000;
    border-radius: 5px;
    overflow: hidden;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.product-left {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.image-container {
    margin-bottom: 10px;
}

.image-container img {
    min-height: 400px;
}

.thumbnails {
    display: flex;
    gap: 10px;
    overflow: hidden;
}

.thumbnails img {
    cursor: pointer;
    width: 100px;
    opacity: 0.6;
}

.thumbnails img:hover {
    opacity: 1;
}

.product-right {
    padding: 20px;
}

.product-info h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-info h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-info p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: justify;
    text-transform: none;
}

.price-info {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.price-option {
    flex: 1;
    text-align: center;
    margin: 20px 10px;
}

.price-option h4 {
    font-size: 24px;
}

.separator {
    width: 1px;
    height: 90px;
    background-color: #fff;
    margin: 0 10px;
}

.product-info-buttons {
    margin-top: 10px;
}

.btn-group {
    margin-top: 10px;
}

/*.btn_line a {
    width: 30%;
   height: 30%;

}*/

.btn_line {
    display: flex;
    justify-content: space-between;
    margin: 3px;
   
}

.product-info-buttons {
  display: flex;
  justify-content: center;
}

.btn_main_primary a {
    text-decoration: none;
    color: #ff9f00;
}

.btn_main_primary {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    min-width: 130px;
    padding: 15px 50px;
    margin-top: 10px;
    border: 2px solid #ff9f00;
    color: #ff9f00;
    text-transform: uppercase;
    font-weight: bold;
    overflow: hidden;
    z-index: 2;
}

.btn_main_primary:hover span {
    color: #000;
}

.btn_main_primary .hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ff9f00;
    color: #000;
    z-index: -1;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn_main_primary:hover .hover {
    transform: translateY(0);   
}

.btn_main_secondary {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    min-width: 130px;
    padding: 15px 50px;
    margin-top: 10px;
    border: 2px solid #ff9f00;
    text-transform: uppercase;
    font-weight: bold;
    overflow: hidden;
    z-index: 2;
    background-color: #ff9f00;
    color: #000;
    transition: color 0.6s ease-in-out, background-color 0.6s ease-in-out;
}

.btn_main_secondary:hover span {
    color: #ff9f00;
}

.btn_main_secondary .hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    color: #ff9f00;
    z-index: -1;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn_main_secondary:hover .hover {
    transform: translateY(0);
}

.additional-info {
    margin-top: 20px;
}

.additional-info a {
    display: block;
    font-size: 14px;
    text-decoration: underline;
    text-transform: none;
    color: white;
    margin-bottom: 10px;
    cursor: pointer;
}

.additional-info a:hover {
    color: #e5e5e5;
}

.arrow-container {
    position: absolute;
    top: 100%;
    right: 48%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow-down {
    width: 40px;
    height: 40px;
    fill: #ff9f00;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Shop Pricing section */

.shop-pricing-section {
    background-color: #000;
    color: #cccccc;
    font-family: 'Familjen Grotesk', sans-serif;
    width: 100%;
    height: auto;
    border-radius: 7px;
    padding: 5%;
    margin: 5% auto;
}

.shop-pricing .shop-pricing-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.shop-pricing .shop-pricing-column {
    padding: 5%;
    flex: 1;
    max-width: 400px;
}

.shop-pricing .shop-pricing-column:not(:last-child) {
    border-right: 1px solid #fff;
}

.shop-pricing h2 {
    font-weight: 600;
    font-size: 20px;
    text-transform: none;
}

.shop-pricing h4 {
    font-weight: 400;
    margin: 0;
    text-transform: none;
}

.shop-pricing span {
    font-weight: 200;
    text-transform: none;
}

.shop-pricing ul {
    padding-inline-start: 7%;
    margin: 20px 0;
    list-style-type: none;
}

.shop-pricing ul li {
    font-weight: 200;
    text-transform: lowercase;
}

.shop-pricing .btn {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    min-width: 130px;
    padding: 15px 50px;
    margin-top: 10px;
    border: 2px solid #fff;
    text-transform: uppercase;
    font-weight: bold;
    overflow: hidden;
    z-index: 2;
    color: #fff;
    font-size: 16px;
    transition: color 0.3s;
}

.shop-pricing .btn:hover span {
    color: #000;
}

.shop-pricing .btn .hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    color: #000;
    z-index: -1;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.shop-pricing .btn:hover .hover {
    transform: translateY(0);  
}

.shop-pricing .btn span {
    position: relative;
    z-index: 1;
}

.shop-pricing-section a {
    text-decoration: none;
}

.product-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.option-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
}

select {
    padding: 10px;
    background-color: #1e1e1e;
    color: #fff;
    border: 1px solid #ff9f00;
    border-radius: 5px;
    width: 100%;
}

/* Media Queries */

/* For max width 960px */
@media (max-width: 1024px) {
    .product-content {
        width: 100%;
    }

    .product-wrapper {
        flex-direction: column;
    }

    .product-content {
        grid-template-columns: 1fr;
    }

    .product-left,
    .product-right {
        padding: 10px;
    }

    .separator {
        width: 1px;
        height: 90px;
        background-color: #fff;
        margin: 0 10px;
    }

    .shop-pricing-column {
        max-width: 300px;
        flex: 1 1 calc(50% - 20px);
    }

}

@media screen and (1024px < width < 1600px) {
    .product-content {
        max-width: 1024px;
    }

    .product-left, .product-right {
        padding: 0;
    }
}
.shop-btn {
    padding-inline: 12px !important;
}
/* For max width 600px */
@media (max-width: 600px) {
    .product-left,
    .product-right {
        padding: 5px;
    }

    .product-info h2 {
        font-size: 20px;
    }

    .product-info h3 {
        font-size: 16px;
    }

    .product-info p {
        font-size: 14px;
    }

    .price-option h4 {
        font-size: 20px;
    }

    .btn_line {
        flex-direction: column;
        width: 45%;
        margin: 0 auto;
    }

    .separator {
        width: 1px;
        height: 90px;
        background-color: #fff;
        margin: 0 10px;
    }

    .shop-pricing-column {
        max-width: calc(50% - 20px);
        flex: 1 1 calc(50% - 20px);
    }
}

/* For max width 390px */
@media (max-width: 390px) {
    .additional-items-block {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .additional-items-block-content {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .shop-pricing-column {
        max-width: 100%;
        flex: 1 1 100%;
        box-shadow: none; 
        margin-bottom: 20px; 
    }
}

/* For min width 391px and max width 600px */
@media (min-width: 391px) and (max-width: 600px) {
    .additional-items-block-content {
        width: 48%;
        max-width: 48%;
    }

    .shop-pricing-column {
        max-width: calc(50% - 20px);
    }
}

/* For min width 601px and max width 960px */
@media (min-width: 601px) and (max-width: 960px) {
    .additional-items-block-content {
        width: 23%;
        max-width: 23%;
    }
}

/* Responsive Button Styles */
@media (max-width: 960px) {
    .btn_main {
        min-width: 80px; 
        padding: 8px 16px; 
    }
    .shop-pricing-column {
        border-right: none !important;
    }

    .shop-pricing-row {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .btn_main {
        min-width: 70px; 
        padding: 6px 12px; 
    }
    .product-left, .product-right {
        max-width: 82%;
    }
    .thumbnails {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .btn_line {
        flex-direction: column; 
        align-items: center; 
    }

    .btn_main {
        width: 100%; 
        max-width: 300px; 
        padding: 6px 12px; 
    }
}

@media (max-width: 390px) {
    .btn_main {
        padding: 4px 8px; 
        max-width: 250px; 
    }
}

.h-100 {
    height: 100px;
}

.shop-content {
    min-height: 100vh;
    height: auto;

}













/*iiiiiiiiiiiiiiiii*/

/* Modal Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: #222;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #ff9f00;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  color: #fff;
}

.close {
  color: #ff9f00;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #e87b00;
}

/* Contact Form Styles */
.modal {
  margin: 0;
}

.modal .form-group {
  margin-bottom: 15px;
}

.modal label {
  color: #fff;
}

.modal input,
.modal textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 16px;
  border: 1px solid #ff9f00;
  border-radius: 5px;
  background-color: #333;
  color: #fff;
}

.modal button {
  background-color: #ff9f00;
  color: #000;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.modal button:hover {
  background-color: #e87b00;
}

.existing-section {
    max-width: 1200px; /* Match your section width */
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    background-color: #f4f4f4; /* Example background */
}

.image-section {
    max-width: 1200px; /* Match width with the above section */
    margin: 0 auto; /* Center the section horizontally */
    padding: 0; /* Remove default padding */
}

.image-section img {
    width: 100%; /* Ensure the image takes the full width of the section */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove any inline spacing issues */
}
