/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spartan', sans-serif;
}

body {
    width: 100%;
}

html, body {
    height: 100%;
}

/* ===== TYPOGRAPHY ===== */
h1 {
    font-size: 50px;
    line-height: 64px;
    color: #222;
}

h2 {
    font-size: 46px;
    line-height: 60px;
    color: #222;
}

h3 {
    font-size: 50px;
    line-height: 64px;
    color: #222;
}

h4 {
    font-size: 20px;
    color: #222;
}

h6 {
    font-weight: 700;
    color: #463f3f;
}

p {
    font-size: 16px;
    color: #463f3f;
    margin: 15px 0 20px 0;
}

/* ===== HEADER & NAVIGATION ===== */
#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background-color: #e3e3f3;
    box-shadow: 0 5px 15px rgb(0, 0, 0, 0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li {
    padding: 0 20px;
    text-decoration: none;
    font-style: normal;
    list-style: none;
    position: relative;
}

#navbar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.5s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: rgb(30, 150, 150);
}

#navbar li a.active::after,
#navbar li a:hover:after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: -4px;
    width: 30%;
    height: 2px;
    background: rgb(30, 150, 150);
}

/* ===== HERO SECTION ===== */
#hero {
    background-image: url(productes/hero.jpg);
    background-repeat: no-repeat;
    background-position: top 5% right 150px;
    background-color: #e8e8f2;
    padding: 0 80px;
    height: 90vh;
    width: 100%;
    display: flex;
    background-size: contain;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: center;
}

#hero h4 {
    padding: 0 0 15px 0;
}

#hero h1 {
    color: #088178;
}

/* ===== BUTTON STYLES ===== */
/* Shiny CTA Button */
@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,500&display=swap");

:root {
    --shiny-cta-bg: #255051;
    --shiny-cta-bg-subtle: #0093cd;
    --shiny-cta-fg: #ffffff;
    --shiny-cta-highlight: rgb(105, 205, 224);
    --shiny-cta-highlight-subtle: #7aedff;
}

@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@property --gradient-angle-offset {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@property --gradient-percent {
    syntax: "<percentage>";
    initial-value: 5%;
    inherits: false;
}

@property --gradient-shine {
    syntax: "<color>";
    initial-value: white;
    inherits: false;
}

.shiny-cta {
    --animation: gradient-angle linear infinite;
    --duration: 3s;
    --shadow-size: 2px;
    isolation: isolate;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    outline-offset: 4px;
    padding: 1.25rem 2.5rem;
    font-family: inherit;
    font-size: 1.125rem;
    line-height: 1.2;
    border: 1px solid transparent;
    border-radius: 360px;
    color: var(--shiny-cta-fg);
    background: linear-gradient(var(--shiny-cta-bg), var(--shiny-cta-bg)) padding-box,
        conic-gradient(from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
            transparent,
            var(--shiny-cta-highlight) var(--gradient-percent),
            var(--gradient-shine) calc(var(--gradient-percent) * 2),
            var(--shiny-cta-highlight) calc(var(--gradient-percent) * 3),
            transparent calc(var(--gradient-percent) * 4)) border-box;
    box-shadow: inset 0 0 0 1px var(--shiny-cta-bg-subtle);
}

.shiny-cta::before,
.shiny-cta::after,
.shiny-cta span::before {
    content: "";
    pointer-events: none;
    position: absolute;
    inset-inline-start: 50%;
    inset-block-start: 50%;
    translate: -50% -50%;
    z-index: -1;
}

.shiny-cta:active {
    translate: 0 1px;
}

/* Dots pattern */
.shiny-cta::before {
    --size: calc(100% - var(--shadow-size) * 3);
    --position: 2px;
    --space: calc(var(--position) * 2);
    width: var(--size);
    height: var(--size);
    background: radial-gradient(circle at var(--position) var(--position),
            white calc(var(--position) / 4),
            transparent 0) padding-box;
    background-size: var(--space) var(--space);
    background-repeat: space;
    mask-image: conic-gradient(from calc(var(--gradient-angle) + 45deg),
            rgb(28, 58, 71),
            transparent 10% 90%,
            rgb(28, 58, 71));
    border-radius: inherit;
    opacity: 0.4;
    z-index: -1;
}

/* Inner shimmer */
.shiny-cta::after {
    --animation: shimmer linear infinite;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(-50deg,
            transparent,
            var(--shiny-cta-highlight),
            transparent);
    mask-image: radial-gradient(circle at bottom, transparent 40%, rgb(32, 45, 56));
    opacity: 0.6;
}

.shiny-cta span {
    z-index: 1;
}

.shiny-cta span::before {
    --size: calc(100% + 1rem);
    width: var(--size);
    height: var(--size);
    box-shadow: inset 0 -1ex 2rem 4px var(--shiny-cta-highlight);
    opacity: 0;
}

/* Animate */
.shiny-cta {
    --transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);
    transition: var(--transition);
    transition-property: --gradient-angle-offset, --gradient-percent,
        --gradient-shine;
}

.shiny-cta,
.shiny-cta::before,
.shiny-cta::after {
    animation: var(--animation) var(--duration),
        var(--animation) calc(var(--duration) / 0.4) reverse paused;
    animation-composition: add;
}

.shiny-cta span::before {
    transition: opacity var(--transition);
    animation: calc(var(--duration) * 1.5) breathe linear infinite;
}

.shiny-cta:is(:hover, :focus-visible) {
    --gradient-percent: 20%;
    --gradient-angle-offset: 95deg;
    --gradient-shine: var(--shiny-cta-highlight-subtle);
}

.shiny-cta:is(:hover, :focus-visible),
.shiny-cta:is(:hover, :focus-visible)::before,
.shiny-cta:is(:hover, :focus-visible)::after {
    animation-play-state: running;
}

.shiny-cta:is(:hover, :focus-visible) span::before {
    opacity: 1;
}

@keyframes gradient-angle {
    to {
        --gradient-angle: 360deg;
    }
}

@keyframes shimmer {
    to {
        rotate: 360deg;
    }
}

@keyframes breathe {
    from,
    to {
        scale: 1;
    }
    50% {
        scale: 1.2;
    }
}

#shiny-cta a {
    text-decoration: none;
    font-style: normal;
}

/* General Button Styles */
.button2 {
    all: unset;
    width: 100px;
    height: 30px;
    font-size: 16px;
    background: transparent;
    border: none;
    position: relative;
    color: #f0f0f0;
    cursor: pointer;
    z-index: 1;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button2::after,
.button2::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -99999;
    transition: all .4s;
}

.button2::before {
    transform: translate(0%, 0%);
    width: 100%;
    height: 100%;
    background: #28282d;
    border-radius: 10px;
}

.button2::after {
    transform: translate(10px, 10px);
    width: 35px;
    height: 35px;
    background: #ffffff15;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50px;
}

.button2:hover::before {
    transform: translate(5%, 20%);
    width: 110%;
    height: 110%;
}

.button2:hover::after {
    border-radius: 10px;
    transform: translate(0, 0);
    width: 100%;
    height: 100%;
}

.button2:active::after {
    transition: 0s;
    transform: translate(0, 5%);
}

.button2 a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #f0f0f0;
    transition: 0.5s ease;
    cursor: pointer;
}

/* ===== FEATURE SECTION ===== */
#feature {
    padding: 40px 80px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: center;
    align-items: center;
}

#feature .fe-box {
    width: 180px;
    align-items: center;
    text-align: center;
    box-shadow: 0 0 77px rgb(0, 0, 0, 0.2);
    border: 2px solid rgb(255, 255, 255);
    border-radius: 30px;
    padding: 25px 15px;
    font-size: 20px;
    margin: 15px 15px;
    transition: transform 0.3s ease;
}

#feature .fe-box:hover {
    transform: scale(1.2);
}

#feature .fe-box h6 {
    line-height: 1;
    border-radius: 5px;
    color: #126585;
    background: rgb(236, 206, 237);
    padding: 5px 0;
}

/* ===== PRODUCTS SECTION ===== */
#products {
    padding: 40px 80px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#products h2 {
    text-shadow: 0 0 20 black;
}

#products p {
    font-size: large;
}

/* Football Collection */
#products .football {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-bottom: #088178 solid 4px;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

#products .footballtshirt {
    width: 335px;
    box-shadow: 0 0 77px rgb(0, 0, 0, 0.2);
    border: 2px solid rgb(255, 255, 255);
    border-radius: 30px;
    padding: 40px 15px;
    font-size: 20px;
    margin: 15px 15px;
    transition: transform 0.3s ease;
}

#products .footballtshirt:hover {
    transform: scale(1.1);
}

#products .footballtshirt img {
    border-radius: 30px;
}

.footballtshirt p {
    color: #088178;
    font-size: medium;
    font-weight: 400;
}

.footballtshirt h6 {
    font-size: large;
}

.footballtshirt a {
    text-decoration: none;
    font-size: 30px;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.5s ease;
    cursor: pointer;
}

.footballtshirt a:hover,
.footballtshirt a.active {
    color: rgb(30, 150, 150);
}

.footballtshirt a.active::after,
.footballtshirt a:hover:after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: -4px;
    width: 30%;
    height: 2px;
    background: rgb(30, 150, 150);
}

/* Basketball Collection */
#products .basketball {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-bottom: #088178 solid 4px;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

#products .basketballtshirt {
    width: 335px;
    box-shadow: 0 0 77px rgb(0, 0, 0, 0.2);
    border: 2px solid rgb(255, 255, 255);
    border-radius: 30px;
    padding: 25px 15px;
    font-size: 20px;
    margin: 15px 15px;
    transition: transform 0.3s ease;
}

#products .basketballtshirt:hover {
    transform: scale(1.1);
}

#products .basketballtshirt img {
    border-radius: 30px;
    width: 300px;
    height: 300px;
}

.basketballtshirt p {
    color: #088178;
    font-size: medium;
    font-weight: 400;
}

.basketballtshirt h6 {
    font-size: large;
}

.basketballtshirt a {
    text-decoration: none;
    font-size: 30px;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.5s ease;
    cursor: pointer;
}

.basketballtshirt a:hover,
.basketballtshirt a.active {
    color: rgb(30, 150, 150);
}

.basketballtshirt a.active::after,
.basketballtshirt a:hover:after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: -4px;
    width: 30%;
    height: 2px;
    background: rgb(30, 150, 150);
}

/* Rating System */
.rating {
    direction: rtl;
    display: inline-flex;
    gap: 0px;
}

.rating input {
    display: none;
}

.rating label {
    font-size: 30px;
    color: #8e8e8e;
    cursor: pointer;
    transition: color 0.5s;
}

.rating input:checked~label,
.rating label:hover,
.rating label:hover~label {
    color: gold;
}

/* Pagination */
#pagination {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
    border-bottom: #088178 solid 4px;
    padding: 0 0 50px 0px;
}

#pagination a {
    text-decoration: none;
    background-color: #088178;
    padding: 15px 20px;
    border-radius: 4px;
    font-weight: 600;
    color: #ffffff;
}

/* ===== COLLECTIONS SECTION ===== */
#collections {
    padding: 30px 70px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

/* Collection 1 */
#collections .collection1 {
    padding: 40px 80px;
    background-image: url(./productes/c8.jpg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    width: 53%;
    margin: 10px;
    border-radius: 30px;
    border: #088178 solid 6px;
}

#collections .collection1 h2 {
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 0 20px black;
}

#collections .collection1 p {
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 0 20px black;
    font-size: large;
}

/* Collection 2 */
#collections .collection2 {
    padding: 40px 80px;
    background-image: url(./productes/c1.jpg);
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    width: 42%;
    border-radius: 30px;
    border: #088178 solid 6px;
}

#collections .collection2 h2 {
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 0 20px black;
}

#collections .collection2 p {
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 0 20px black;
    font-size: large;
}

/* Collection 3 */
#collections .collection3 {
    padding: 40px 80px;
    background-image: url(./productes/c3.jpg);
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    width: 42%;
    border-radius: 30px;
    border: #088178 solid 6px;
}

#collections .collection3 h2 {
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 0 20px black;
}

#collections .collection3 p {
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 0 20px black;
    font-size: large;
}

/* Collection 4 */
#collections .collection4 {
    padding: 40px 80px;
    background-image: url(./productes/c5.jpg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    width: 53%;
    margin: 10px;
    border-radius: 30px;
    border: #088178 solid 6px;
}

#collections .collection4 h2 {
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 0 20px black;
}

#collections .collection4 p {
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 0 20px black;
    font-size: large;
}

/* ===== SIGNUP SECTION ===== */
#signup {
    background-image: url(./bannar/b1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    flex-wrap: wrap;
}

#signup h4 {
    color: #ffffff;
    font-weight: 500;
    font-size: 30px;
    text-shadow: 0 0 20px rgb(255, 255, 255);
    padding: 40px 0 0 80px;
}

#signup p {
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 0 20px rgb(255, 255, 255);
    font-size: large;
    padding: 5px 80px;
}

#signup span {
    color: rgb(216, 172, 52);
    font-weight: 500;
    text-shadow: 0 0 20px rgb(255, 255, 255);
    font-size: large;
}

.form {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    margin: 0px 10% 0 0px;
}

#signup .form input {
    height: 3.125rem;
    padding: 0 1.25rem;
    width: 100%;
    font-size: 15px;
    border-radius: 4px;
    border: 1px solid #36cec6 transparent;
    background-color: #f5f5f5;
    box-shadow: rgba(255, 255, 255, 0.1) 1px 2px 4px;
    outline: none;
}

.form button {
    height: 3.125rem;
    width: 37%;
    background: #36cec6;
    border: 1px solid #36cec6;
    border-radius: 5px;
    box-shadow: rgba(255, 255, 255, 0.1) 1px 2px 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: nunito, roboto, proxima-nova, "proxima nova", sans-serif;
    font-size: 16px;
    font-weight: 100;
    line-height: 12px;
    min-height: 50px;
    outline: 0;
    padding: 12px 14px;
    text-align: center;
    text-rendering: geometricprecision;
    text-transform: none;
    touch-action: manipulation;
    vertical-align: middle;
}

.form button:hover,
.form button:active {
    background-color: initial;
    background-position: 0 0;
    color: #36cec6;
}

.form button:active {
    opacity: .5;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #e3e3f3;
    padding: 80px 80px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
    align-items: flex-start;
    justify-content: flex-start;
}

#contact {
    margin: 5px 0;
}

#contact p {
    color: #414145;
    padding: 7px 0 0 0;
    margin: 0;
}

#followus {
    padding: 0 45px 0px 0px;
}

#followuslist {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
    align-items: flex-start;
    justify-content: flex-start;
}

#followuslist li a {
    padding: 0px 20px 0px 0;
    font-style: normal;
    list-style: none;
    position: relative;
    text-decoration: none;
    font-size: 30px;
    font-weight: 600;
    color: #414145;
    transition: 0.5s ease;
}

#followuslist li a:hover,
#followuslist li a.active {
    color: rgb(30, 150, 150);
}

#contactfollowus {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 0 80px 0 70px;
}

#about {
    padding: 0 80px 0 70px;
}

#myaccount {
    padding: 0 80px 0 70px;
}

#aboutlist li {
    list-style: none;
    padding: 5px 0 0 0;
}

#aboutlist li a {
    padding: 5px 20px 0px 0;
    font-style: normal;
    list-style: none;
    position: relative;
    text-decoration: none;
    color: #414145;
    transition: 0.5s ease;
}

#aboutlist li a:hover,
#aboutlist li a.active {
    color: rgb(30, 150, 150);
}

#Myaccountlist li {
    list-style: none;
    padding: 5px 0 0 0;
}

#Myaccountlist li a {
    padding: 5px 20px 0px 0;
    font-style: normal;
    list-style: none;
    position: relative;
    text-decoration: none;
    color: #414145;
    transition: 0.5s ease;
}

#Myaccountlist li a:hover,
#Myaccountlist li a.active {
    color: rgb(30, 150, 150);
}

#securedp img {
    padding-top: 10px;
}

/* ===== SHOP PAGE ===== */
#shophead {
    padding: 40px 80px;
    background-image: url("./bannar/b1.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    align-items: center;
    text-align: center;
    justify-content: center;
    align-content: center;
}

#shophead h1 {
    color: #ffffff;
    font-weight: 800;
    text-shadow: 0 0 20px rgb(187, 187, 187);
}

/* ===== PRODUCT PAGE ===== */
#main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 100px;
    margin-top: 20px;
}

.promain #mainimg,
.smallimg {
    border: #0093cd solid 2px;
    border-radius: 10px;
}

.promain {
    width: 35%;
    margin-right: 50px;
}

.smallimg-group {
    display: flex;
    justify-content: space-between;
}

.smallimgcoll {
    flex-basis: 33%;
    cursor: pointer;
}

.productdetail {
    width: 50%;
    padding-top: 20px;
}

.productdetail h2 {
    color: #088178;
    font-size: 27px;
}

.productdetail h4 {
    color: #088178;
    padding: 40px 0 20px 0;
    font-size: 12px;
}

.productdetail select {
    display: block;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #088178;
    margin-bottom: 10px;
}

.productdetail input,
#cart table input {
    width: 50px;
    height: 46px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;
    border: 1px solid #088178;
    border-radius: 5px;
}

.productdetail p {
    color: #000000;
}

.productdetail span {
    color: #088178;
    font-size: 20px;
}

.productdetail button {
    background-color: #088178;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.productdetail button:hover {
    background-color: #ffffff;
    color: #088178;
    border: 1px solid #088178;
}

.productdetail button:active {
    background-color: #088178;
    color: #ffffff;
    border: none;
}

.productdetail button:focus {
    outline: none;
}

.productdetail button:active {
    transform: translateY(2px);
}

/* ===== ABOUT PAGE ===== */
#abouthead {
    padding: 40px 80px;
    background-image: url("./bannar/banner.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    align-items: center;
    text-align: center;
    justify-content: center;
    align-content: center;
}

#abouthead h1 {
    color: #ffffff;
    font-weight: 800;
    text-shadow: 0 0 20px rgb(187, 187, 187);
}

#abouthead p {
    color: #ffffff;
    text-shadow: 0 0 20px rgb(187, 187, 187);
}

#mainabout {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 90px 100px;
    margin-top: 20px;
    align-items: flex-start;
}

.aboutimg {
    width: 50%;
    margin-right: 50px;
}

.abouttext {
    width: 45%;
    padding-top: 20px;
}

/* ===== CONTACT PAGE ===== */
#contacthead {
    padding: 40px 80px;
    background-image: url("./bannar/banner.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    align-items: center;
    text-align: center;
    justify-content: center;
    align-content: center;
    border-bottom: #088178 solid 4px;
}

#contacthead h1 {
    color: #ffffff;
    font-weight: 800;
    text-shadow: 0 0 20px rgb(187, 187, 187);
}

#contacthead p {
    color: #ffffff;
    text-shadow: 0 0 20px rgb(187, 187, 187);
}

#maincontact {
    padding: 90px 100px;
}

.contactinfo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.contactinfo p {
    color: #839494;
    font-size: 15px;
    padding: 3px 3px;
}

.contacti {
    padding-right: 50px;
}

.contactinfo h4,
#contactform form h4 {
    color: #000000;
    font-size: 25px;
    padding: 3px 3px;
}

.contactinfo h5 {
    color: #839494;
    font-size: 20px;
    padding: 3px 3px;
}

.contactlist {
    list-style: none;
    padding: 0 150px 0 0px
}

.contactelement p {
    font-size: 15px;
}

.contactelement i {
    color: #088178;
    font-size: 15px;
}

#contactform {
    padding: 40px 100px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border: #088178 solid 2px;
    border-radius: 10px;
    margin: 7px;
}

#contactform form {
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#contactform form span {
    font-size: 12px;
}

#contactform form input {
    width: 100%;
    padding: 12px 15px;
    outline: none;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #088178;
}

#contactform form textarea {
    width: 100%;
    padding: 12px 15px;
    outline: none;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #088178;
}

#contactform form button {
    background-color: #088178;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

#contactform form button:hover {
    background-color: #ffffff;
    color: #088178;
    border: 1px solid #088178;
}

#contactform form button:active {
    background-color: #088178;
    color: #ffffff;
    border: none;
}

#contactform form button:focus {
    outline: none;
}

#contactform form button:active {
    transform: translateY(2px);
}

.callcenterimg {
    width: 30%;
    margin-right: 50px;
}

/* ===== CART PAGE ===== */
#cart {
    padding: 50px 100px;
}

#cart table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    white-space: nowrap;
    border: 1px solid #088178;
    border-left: none;
    border-right: none;
}

#cart table td:nth-child(1) {
    width: 100px;
    text-align: center;
}

#cart table td:nth-child(2) {
    width: 150px;
    text-align: center;
}

#cart table td:nth-child(3) {
    width: 250px;
    text-align: center;
}

#cart table td:nth-child(4),
#cart table td:nth-child(5),
#cart table td:nth-child(6) {
    width: 150px;
    text-align: center;
}

#cart table thead {
    border: 1px solid #088178;
    border-left: none;
    border-right: none;
    padding: 10px;
}

#cart table thead td {
    padding: 10px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
}

#cart table tbody td {
    border: 1px solid #088178;
    border-left: none;
    border-right: none;
    padding-top: 10px;
    box-shadow: 0 0 100px rgb(0, 0, 0, 0.1);
}

#cart-add {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

#coupon {
    padding: 20px;
    border: 1px solid #088178;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    align-content: center;
}

#coupon h3 {
    font-size: 25px;
    padding: 0 40px 0 0px;
}

#coupon form {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    margin: 0px 10% 0 0px;
}

#coupon form input {
    height: 3.125rem;
    padding: 0 1.25rem;
    width: 100%;
    font-size: 15px;
    border-radius: 4px;
    border: 1px solid #36cec6 transparent;
    background-color: #f5f5f5;
    box-shadow: rgba(255, 255, 255, 0.1) 1px 2px 4px;
    outline: none;
}

#coupon form button {
    height: 3.125rem;
    width: 37%;
    background: #36cec6;
    border: 1px solid #36cec6;
    border-radius: 5px;
    box-shadow: rgba(255, 255, 255, 0.1) 1px 2px 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: nunito, roboto, proxima-nova, "proxima nova", sans-serif;
    font-size: 16px;
    font-weight: 100;
    line-height: 12px;
    min-height: 50px;
    outline: 0;
    padding: 12px 14px;
    text-align: center;
    text-rendering: geometricprecision;
    text-transform: none;
    touch-action: manipulation;
    vertical-align: middle;
}

#coupon button:hover,
#coupon button:active {
    background-color: initial;
    background-position: 0 0;
    color: #36cec6;
}

#coupon button:active {
    opacity: .5;
}

#subtotal {
    padding: 20px;
    border: 1px solid #088178;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    padding-top: 30px;
    margin: 20px;
}

#subtotal h3 {
    font-size: 25px;
    padding: 0 40px 0 0px;
}

#subtotal table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

#subtotal table td {
    padding: 10px;
    width: 50%;
    border: 1px solid #088178;
    text-transform: uppercase;
    font-size: 15px;
}

#subtotal button {
    background-color: #088178;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

#subtotal button:hover {
    background-color: #ffffff;
    color: #088178;
    border: 1px solid #088178;
}

#subtotal button:active {
    background-color: #088178;
    color: #ffffff;
    border: none;
}

#subtotal button:focus {
    outline: none;
}

#subtotal button:active {
    transform: translateY(2px);
}