* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: 'Bahnschrift', sans-serif;
}


body {
    background: #EEEEEE;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
}

h1, h2 {
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    color: #000;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff1a1a;
}

p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
}

/* Header Section */
nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
    font-size: 14px;
    text-transform: uppercase;
  }
  
  #main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: background-color 0.3s ease;
    background-color: transparent;
    z-index: 1000;
  }
  
  #main-nav.scrolled {
      background: linear-gradient(to left, rgb(175, 141, 99) 30%, white 200%);
  }
  
  #main-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  #main-nav .logo {
    height: 40px;
  }
hr {
    border: none; /* Remove default border */
    border-top: 2px solid #ff1a1a; /* Set a custom border (line) */
    width: 100%; /* Full width */
    margin: 20px 0; /* Add some spacing above and below */
}
.banner {
    position: relative;
    width: 100%;
    height: auto;
}

.banner {
    animation: fadeIn 0.8s ease-in-out;
}


.banner img {
    width: 100%;
    height: auto;
    display: block;
}
.banner img {
    animation: fadeIn 0.8s ease-in-out;
}

.banner-text {
    position: absolute;
    bottom: 70%;
    right: 15%;
    transform: translateY(-50%);
    text-align: right;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);

}
.back-container {
    position: fixed; /* Keeps the button fixed even when scrolling */
    top: 50%;
    left: 30px; /* Back button stays on the left */
    transform: translateY(-50%);
    z-index: 1000;
}

/* From Uiverse.io by xopc333 */ 
.back-button {
    display: block;
    position: relative;
    width: 65px;
    height: 65px;
    margin: 0;
    overflow: hidden;
    outline: hidden;
    background-color: transparent;
    cursor: pointer;
    animation: pop-glow 2s infinite alternate ease-in-out;
}
  
  
  .back-button:after {
    border: 4px solid #000;
    transform: scale(1.3);
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
      transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
  }
  
  .back-button:hover:before,
  .back-button:focus:before {
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
      transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .back-button:hover:after,
  .back-button:focus:after {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
      transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
  }
  
  .button-box {
    display: flex;
    position: absolute;
    top: 5;
    left: 4;
  }
  
  .button-elem {
    display: block;
    width: 40px;
    height: 40px;
    margin: 17px 18px 0 18px;
    transform: rotate(180deg);
    fill: #ff1a1a;
  }
  
  .button:hover .button-box,
  .button:focus .button-box {
    transition: 0.4s;
    transform: translateX(-56px);
  }

/* Popping animation */
@keyframes pop-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(transparent);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 20px rgba(transparent);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(transparent);
    }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.banner-text {
    animation: fadeIn 0.8s ease-in-out;
}


.description {
    max-width: 1100px;
    margin: 40px auto;
    padding: 60px;
    height: 800px;
    text-align: justify;
    font-size: 1.8rem;
    color: #fff;
    line-height: 2.0;
    border-left: 5px solid rgb(175, 141, 99);
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    font-weight: bold;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.banner-text {
    animation: fadeIn 0.8s ease-in-out;
}

.description::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bg_desc.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3; /* Adjusted opacity for the background image */
    z-index: -1;
    border-radius: 5px;
}

.description p {
    top: 14%;
    margin-bottom: 2cm;
    margin-top: 2cm;
    margin-left: 2cm;
    margin-right: 2cm;
    position: relative;
    z-index: 1;
}

.description {
    opacity: 0; /* Nakatago sa simula */
    transform: translateY(50px); /* Bahagyang naka-offset pababa */
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
}

/* Lalabas kapag nakita sa viewport */
.description.show {
    opacity: 1;
    transform: translateY(0);
}

.available-colors {
    font-style: italic;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 40px;
    margin-left: 2cm;

}

.main-image-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(to bottom, #ffffff, #cccccc); /* Added background gradient */
}

.main-image-container img {
    width: 100%;
    display: block;
}

.color-description {
    position: absolute;
    bottom: 10px;
    right: 40px;
    color: rgb(175, 141, 99);
    font-style: italic;
    font-weight: bold;
    font-size: 18px;
    text-decoration: underline;
}

.color-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    text-align: right;
    
}

.color-thumbnails img {
    width: 100px;
    height: auto;
    margin-left: 16px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    background: linear-gradient(to bottom, #f0f0f0, #dcdcdc); /* Gradient background for each thumbnail */
    object-fit: contain; /* Para hindi maputol ang image */
    aspect-ratio: 1 / 1; /* Para siguradong square at pantay-pantay */
}

.color-thumbnails img:hover {
    border-color: #000;
    background: linear-gradient(to bottom, #ffffff, #cccccc); /* Hover gradient effect */
}


.features{
    font-style: italic;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 40px;
    margin-left: 2cm;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px;
}
.feature-item {
    text-align: center;
    width: 250px;
    
}
.feature-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 2px solid #ccc;
    border-radius: 5px;
}
.feature-item a {
    display: block;
    margin-top: 10px;
    font-style: italic;
    text-decoration: none;
    color: #000;
}
.feature-item a:hover {
    text-decoration: underline;
}

/* Main Container */
.specs-container {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    margin-top: 0.81%;
    width: 250px;
    flex-shrink: 0; /* Prevent shrinking */
    background: #d1d1d1;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.sidebar button {
    background: #ffffff;
    height: 45px;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.sidebar button:hover {
    background: linear-gradient(to left, rgb(175, 141, 99) 30%, white 200%);
    transform: scale(1.05);
}

/* Main Content */
.specs-section {
    flex-grow: 1;
    min-width: 0;
}

.spec-section {
    display: none;
    background: #e0e0e0;
    padding: 20px;
    border-radius: 10px;
    margin: 10px 0;
    color: #2F3D2F;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-left: 5px solid rgb(175, 141, 99);
}

.spec-section h3 {
    color: rgb(175, 141, 99);
    margin-bottom: 10px;
    text-align: center;
}

/* Table Styling */
.spec-section table {
    text-align: center;
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.spec-section th, .spec-section td {
    width: 50%;
    padding: 10px;
    text-align: left;
    border: 1px solid #ccc;
}

.spec-section th {
    background: rgb(175, 141, 99);
    color: white;
    text-align: left;
}

tr:nth-child(even) {
    background-color: rgb(236, 213, 184);
}


/* Heading */
.specs {
    font-style: italic;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 1.5cm;
    margin-top: 3.5cm;
    text-align: center;
    text-decoration: underline;
    color: rgb(175, 141, 99);
}
/* Footer */
.footer {
    background: linear-gradient(to left, rgb(175, 141, 99) 30%, white 200%);
    color: #dbe7ff;
    padding: 80px 5% 30px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 15px;
  }
  
  .footer-brand img {
    max-width: 120px;
    margin-bottom: 20px;
  }
  
  .footer-brand p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ffffff;
  }
  
  .footer-links ul,
  .footer-contact ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin: 8px 0;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #ffffff;
  }
  
  .footer-contact li {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
  
  .footer-contact i {
    margin-right: 8px;
    color: #ffffff;
  }
  
  .footer-social .social-icons a {
    font-size: 1.3rem;
    margin-right: 14px;
    color: #ffffff;
    transition: color 0.3s, transform 0.3s;
  }
  
  .footer-social .social-icons a:hover {
    color: #ffffff;
    transform: scale(1.1);
  }
  
  .footer-bottom {
    border-top: 1px solid #ffffff;
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #ffffff;
  }

  /***************************************************************************Mobile Responsive********************************************************************************/
    @media (max-width: 1024px){
}
@media (max-width: 540px) and (orientation: portrait) {
    body {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: 'Bahnschrift', sans-serif;
}


body {
    background: #EEEEEE;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 2.5px;
    object-fit: cover;
}

h1, h2 {
    font-weight: 600;
}

h1 {
    font-size: .24rem;
    color: #000;
}

h2 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #ff1a1a;
}

p {
    font-size: .6rem;
    color: #333;
    line-height: 1.6;
}

/* Header Section */
nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    font-size: 7px;
    text-transform: uppercase;
  }
  
  #main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: background-color 0.3s ease;
    background-color: transparent;
    z-index: 1000;
  }
  
  #main-nav.scrolled {
      background: linear-gradient(to left, rgb(175, 141, 99) 30%, white 200%);
  }
  
  #main-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  #main-nav .logo {
    height: 20px;
  }
hr {
    border: none; /* Remove default border */
    border-top: 1px solid #ff1a1a; /* Set a custom border (line) */
    width: 100%; /* Full width */
    margin: 10px 0; /* Add some spacing above and below */
}
.banner {
    position: relative;
    width: 100%;
    height: auto;
}

.banner {
    animation: fadeIn 0.8s ease-in-out;
}


.banner img {
    width: 100%;
    height: auto;
    display: block;
}
.banner img {
    animation: fadeIn 0.8s ease-in-out;
}

.banner-text {
    position: absolute;
    bottom: 70%;
    right: 15%;
    transform: translateY(-50%);
    text-align: right;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);

}
.back-container {
    position: fixed; /* Keeps the button fixed even when scrolling */
    top: 50%;
    left: 15px; /* Back button stays on the left */
    transform: translateY(-50%);
    z-index: 1000;
}

/* From Uiverse.io by xopc333 */ 
.back-button {
    display: block;
    position: relative;
    width: 32.5px;
    height: 32.5px;
    margin: 0;
    overflow: hidden;
    outline: hidden;
    background-color: transparent;
    cursor: pointer;
    animation: pop-glow 2s infinite alternate ease-in-out;
}
  
  
  .back-button:after {
    border: 2px solid #000;
    transform: scale(1.3);
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
      transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
  }
  
  .back-button:hover:before,
  .back-button:focus:before {
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
      transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .back-button:hover:after,
  .back-button:focus:after {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
      transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
  }
  
  .button-box {
    display: flex;
    position: absolute;
    top: 3;
    left: 4;
  }
  
  .button-elem {
    display: block;
    width: 20px;
    height: 20px;
    margin: 8.5px 9px 0 9px;
    transform: rotate(180deg);
    fill: #ff1a1a;
  }
  
  .button:hover .button-box,
  .button:focus .button-box {
    transition: 0.4s;
    transform: translateX(-56px);
  }

/* Popping animation */
@keyframes pop-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(transparent);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 20px rgba(transparent);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(transparent);
    }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.banner-text {
    animation: fadeIn 0.8s ease-in-out;
}


.description {
    max-width: 550px;
    margin: 20px auto;
    padding: 30px;
    height: 400px;
    text-align: justify;
    font-size: .9rem;
    color: #fff;
    line-height: 2.0;
    border-left: 2.5px solid rgb(175, 141, 99);
    border-radius: 2.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    font-weight: bold;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.banner-text {
    animation: fadeIn 0.8s ease-in-out;
}

.description::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bg_desc.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3; /* Adjusted opacity for the background image */
    z-index: -1;
    border-radius: 2.5px;
}

.description p {
    top: 14%;
    margin: 10px;
    position: relative;
    z-index: 1;
    line-height: 1.6; 
    margin: 10px;


}

.description {
    opacity: 0; /* Nakatago sa simula */
    transform: translateY(25px); /* Bahagyang naka-offset pababa */
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
}

/* Lalabas kapag nakita sa viewport */
.description.show {
    opacity: 1;
    transform: translateY(0);
}

.available-colors {
    font-style: italic;
    font-size: 17.5px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 20px;
    margin-left: 2cm;

}

.main-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 5px;
    overflow: hidden;
    background: linear-gradient(to bottom, #ffffff, #cccccc); /* Added background gradient */
}

.main-image-container img {
    width: 100%;
    display: block;
}

.color-description {
    position: absolute;
    bottom: 5px;
    right: 20px;
    color: rgb(175, 141, 99);
    font-style: italic;
    font-weight: bold;
    font-size: 9px;
    text-decoration: underline;
}

.color-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    text-align: right;
    
}

.color-thumbnails img {
    width: 50px;
    height: auto;
    margin-left: 8px;
    cursor: pointer;
    border: .5px solid #ccc;
    border-radius: 2.5px;
    padding: 2.5px;
    background: linear-gradient(to bottom, #f0f0f0, #dcdcdc); /* Gradient background for each thumbnail */
    object-fit: contain; /* Para hindi maputol ang image */
    aspect-ratio: 1 / 1; /* Para siguradong square at pantay-pantay */
}

.color-thumbnails img:hover {
    border-color: #000;
    background: linear-gradient(to bottom, #ffffff, #cccccc); /* Hover gradient effect */
}


.features{
    font-style: italic;
    font-size: 17.5px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 20px;
    margin-left: 2cm;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 10px;
}
.feature-item {
    text-align: center;
    width: 125px;
    
}
.feature-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border: 1px solid #ccc;
    border-radius: 2.5px;
}
.feature-item a {
    display: block;
    margin-top: 5px;
    font-style: italic;
    text-decoration: none;
    color: #000;
}
.feature-item a:hover {
    text-decoration: underline;
}

/* Main Container */
.specs-container {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 550px;
    margin: 20px auto;
    padding: 10px;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 50px;
    margin-top: 0.81%;
    width: 125px;
    flex-shrink: 0; /* Prevent shrinking */
    background: #d1d1d1;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar button {
    background: #ffffff;
    height: 22.5px;
    color: black;
    border: none;
    border-radius: 2.5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 9px;
    transition: 0.3s;
}

.sidebar button:hover {
    background: linear-gradient(to left, rgb(175, 141, 99) 30%, white 200%);
    transform: scale(1.05);
}

/* Main Content */
.specs-section {
    flex-grow: 1;
    min-width: 0;
}

.spec-section {
    display: none;
    background: #e0e0e0;
    padding: 10px;
    border-radius: 5px;
    margin: 5px 0;
    color: #2F3D2F;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 2.5px solid rgb(175, 141, 99);
}

.spec-section h3 {
    color: rgb(175, 141, 99);
    margin-bottom: 5px;
    text-align: center;
}

/* Table Styling */
.spec-section table {
    text-align: center;
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.spec-section th, .spec-section td {
    width: 50%;
    padding: 5px;
    text-align: left;
    border: .5px solid #ccc;
}

.spec-section th {
    background: rgb(175, 141, 99);
    color: white;
    text-align: left;
}

tr:nth-child(even) {
    background-color: rgb(236, 213, 184);
}


/* Heading */
.specs {
    font-style: italic;
    font-size: 17.5px;
    font-weight: bold;
    margin-bottom: 1.5cm;
    margin-top: 3.5cm;
    text-align: center;
    text-decoration: underline;
    color: rgb(175, 141, 99);
}
/* Footer */
.footer {
    background: linear-gradient(to left, rgb(175, 141, 99) 30%, white 200%);
    color: #dbe7ff;
    padding: 40px 5% 15px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: auto;
  }
  
  .footer h3 {
    font-size: .6rem;
    color: #ffffff;
    margin-bottom: 7.5px;
  }
  
  .footer-brand img {
    max-width: 60px;
    margin-bottom: 10px;
  }
  
  .footer-brand p {
    font-size: .46rem;
    line-height: .7;
    color: #ffffff;
  }
  
  .footer-links ul,
  .footer-contact ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin: 4px 0;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #ffffff;
  }
  
  .footer-contact li {
    font-size: .46rem;
    margin-bottom: 5px;
  }
  
  .footer-contact i {
    margin-right: 4px;
    color: #ffffff;
  }
  
  .footer-social .social-icons a {
    font-size: .6rem;
    margin-right: 7px;
    color: #ffffff;
    transition: color 0.3s, transform 0.3s;
  }
  
  .footer-social .social-icons a:hover {
    color: #ffffff;
    transform: scale(1.1);
  }
  
  .footer-bottom {
    border-top: .5px solid #ffffff;
    text-align: center;
    margin-top: 25px;
    padding-top: 10px;
    font-size: .42rem;
    color: #ffffff;
  }
}
.footer-links{
    display: none;
}
@media screen and (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


